@playbasis-ai/qwikcard-sdk 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +142 -0
- package/LICENSE +21 -0
- package/README.md +267 -0
- package/SDK_HANDOVER_GUIDE.md +129 -0
- package/dist/PlaybasisProvider.d.ts +19 -0
- package/dist/PlaybasisProvider.d.ts.map +1 -0
- package/dist/PlaybasisProvider.js +24 -0
- package/dist/QwikCardApp.d.ts +9 -0
- package/dist/QwikCardApp.d.ts.map +1 -0
- package/dist/QwikCardApp.js +210 -0
- package/dist/api/client.d.ts +66 -0
- package/dist/api/client.d.ts.map +1 -0
- package/dist/api/client.js +196 -0
- package/dist/components/Badge.d.ts +8 -0
- package/dist/components/Badge.d.ts.map +1 -0
- package/dist/components/Badge.js +34 -0
- package/dist/components/BadgeIcon.d.ts +10 -0
- package/dist/components/BadgeIcon.d.ts.map +1 -0
- package/dist/components/BadgeIcon.js +51 -0
- package/dist/components/Button.d.ts +10 -0
- package/dist/components/Button.d.ts.map +1 -0
- package/dist/components/Button.js +40 -0
- package/dist/components/GradientCard.d.ts +9 -0
- package/dist/components/GradientCard.d.ts.map +1 -0
- package/dist/components/GradientCard.js +28 -0
- package/dist/components/PointsBalance.d.ts +8 -0
- package/dist/components/PointsBalance.d.ts.map +1 -0
- package/dist/components/PointsBalance.js +85 -0
- package/dist/components/ProgressBar.d.ts +8 -0
- package/dist/components/ProgressBar.d.ts.map +1 -0
- package/dist/components/ProgressBar.js +41 -0
- package/dist/components/QuestProgress.d.ts +10 -0
- package/dist/components/QuestProgress.d.ts.map +1 -0
- package/dist/components/QuestProgress.js +94 -0
- package/dist/components/RadialGauge.d.ts +8 -0
- package/dist/components/RadialGauge.d.ts.map +1 -0
- package/dist/components/RadialGauge.js +53 -0
- package/dist/components/RewardCard.d.ts +10 -0
- package/dist/components/RewardCard.d.ts.map +1 -0
- package/dist/components/RewardCard.js +64 -0
- package/dist/components/RulesModal.d.ts +7 -0
- package/dist/components/RulesModal.d.ts.map +1 -0
- package/dist/components/RulesModal.js +106 -0
- package/dist/hooks/useBadges.d.ts +12 -0
- package/dist/hooks/useBadges.d.ts.map +1 -0
- package/dist/hooks/useBadges.js +42 -0
- package/dist/hooks/usePoints.d.ts +13 -0
- package/dist/hooks/usePoints.d.ts.map +1 -0
- package/dist/hooks/usePoints.js +70 -0
- package/dist/hooks/useQuests.d.ts +12 -0
- package/dist/hooks/useQuests.d.ts.map +1 -0
- package/dist/hooks/useQuests.js +41 -0
- package/dist/hooks/useQwikApp.d.ts +16 -0
- package/dist/hooks/useQwikApp.d.ts.map +1 -0
- package/dist/hooks/useQwikApp.js +42 -0
- package/dist/hooks/useRewards.d.ts +12 -0
- package/dist/hooks/useRewards.d.ts.map +1 -0
- package/dist/hooks/useRewards.js +56 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +29 -0
- package/dist/theme/context.d.ts +8 -0
- package/dist/theme/context.d.ts.map +1 -0
- package/dist/theme/context.js +8 -0
- package/dist/theme/tokens.d.ts +35 -0
- package/dist/theme/tokens.d.ts.map +1 -0
- package/dist/theme/tokens.js +33 -0
- package/dist/types/index.d.ts +119 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +4 -0
- package/dist/web/widgetAssets.d.ts +4 -0
- package/dist/web/widgetAssets.d.ts.map +1 -0
- package/dist/web/widgetAssets.js +5 -0
- package/dist/web/widgetHtml.d.ts +2 -0
- package/dist/web/widgetHtml.d.ts.map +1 -0
- package/dist/web/widgetHtml.js +299 -0
- package/dist/web/widgetTypes.d.ts +128 -0
- package/dist/web/widgetTypes.d.ts.map +1 -0
- package/dist/web/widgetTypes.js +1 -0
- package/package.json +86 -0
- package/src/PlaybasisProvider.tsx +72 -0
- package/src/QwikCardApp.tsx +302 -0
- package/src/api/client.ts +307 -0
- package/src/components/Badge.tsx +51 -0
- package/src/components/BadgeIcon.tsx +97 -0
- package/src/components/Button.tsx +70 -0
- package/src/components/GradientCard.tsx +49 -0
- package/src/components/PointsBalance.tsx +122 -0
- package/src/components/ProgressBar.tsx +65 -0
- package/src/components/QuestProgress.tsx +153 -0
- package/src/components/RadialGauge.tsx +101 -0
- package/src/components/RewardCard.tsx +123 -0
- package/src/components/RulesModal.tsx +171 -0
- package/src/hooks/useBadges.ts +59 -0
- package/src/hooks/usePoints.ts +91 -0
- package/src/hooks/useQuests.ts +60 -0
- package/src/hooks/useQwikApp.ts +49 -0
- package/src/hooks/useRewards.ts +74 -0
- package/src/index.ts +34 -0
- package/src/theme/context.tsx +17 -0
- package/src/theme/tokens.ts +68 -0
- package/src/types/index.ts +176 -0
- package/src/web/widgetAssets.d.ts +3 -0
- package/src/web/widgetAssets.ts +6 -0
- package/src/web/widgetHtml.ts +302 -0
- package/src/web/widgetTypes.ts +146 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const WIDGET_SDK_VERSION = "0.0.14";
|
|
2
|
+
export declare const WIDGET_UMD_JS = "(function(Tt,dn){typeof exports==\"object\"&&typeof module!=\"undefined\"?dn(exports):typeof define==\"function\"&&define.amd?define([\"exports\"],dn):(Tt=typeof globalThis!=\"undefined\"?globalThis:Tt||self,dn(Tt.PlaybasisWidget={}))})(this,function(Tt){\"use strict\";var NV=Object.defineProperty,wV=Object.defineProperties;var EV=Object.getOwnPropertyDescriptors;var pv=Object.getOwnPropertySymbols;var Wk=Object.prototype.hasOwnProperty,Jk=Object.prototype.propertyIsEnumerable;var hx=Math.pow,mx=(Tt,dn,Tn)=>dn in Tt?NV(Tt,dn,{enumerable:!0,configurable:!0,writable:!0,value:Tn}):Tt[dn]=Tn,ve=(Tt,dn)=>{for(var Tn in dn||(dn={}))Wk.call(dn,Tn)&&mx(Tt,Tn,dn[Tn]);if(pv)for(var Tn of pv(dn))Jk.call(dn,Tn)&&mx(Tt,Tn,dn[Tn]);return Tt},it=(Tt,dn)=>wV(Tt,EV(dn));var Wr=(Tt,dn)=>{var Tn={};for(var mt in Tt)Wk.call(Tt,mt)&&dn.indexOf(mt)<0&&(Tn[mt]=Tt[mt]);if(Tt!=null&&pv)for(var mt of pv(Tt))dn.indexOf(mt)<0&&Jk.call(Tt,mt)&&(Tn[mt]=Tt[mt]);return Tn};var Es=(Tt,dn,Tn)=>mx(Tt,typeof dn!=\"symbol\"?dn+\"\":dn,Tn);var Ms=(Tt,dn,Tn)=>new Promise((mt,hf)=>{var fv=kl=>{try{ud(Tn.next(kl))}catch(Q){hf(Q)}},Vu=kl=>{try{ud(Tn.throw(kl))}catch(Q){hf(Q)}},ud=kl=>kl.done?mt(kl.value):Promise.resolve(kl.value).then(fv,Vu);ud((Tn=Tn.apply(Tt,dn)).next())});function dn(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,\"default\")?i.default:i}var Tn={exports:{}},mt={};/**\n * @license React\n * react.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var hf;function fv(){if(hf)return mt;hf=1;var i=Symbol.for(\"react.element\"),o=Symbol.for(\"react.portal\"),u=Symbol.for(\"react.fragment\"),p=Symbol.for(\"react.strict_mode\"),A=Symbol.for(\"react.profiler\"),U=Symbol.for(\"react.provider\"),m=Symbol.for(\"react.context\"),y=Symbol.for(\"react.forward_ref\"),K=Symbol.for(\"react.suspense\"),F=Symbol.for(\"react.memo\"),R=Symbol.for(\"react.lazy\"),b=Symbol.iterator;function N(j){return j===null||typeof j!=\"object\"?null:(j=b&&j[b]||j[\"@@iterator\"],typeof j==\"function\"?j:null)}var E={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},O=Object.assign,B={};function L(j,le,$e){this.props=j,this.context=le,this.refs=B,this.updater=$e||E}L.prototype.isReactComponent={},L.prototype.setState=function(j,le){if(typeof j!=\"object\"&&typeof j!=\"function\"&&j!=null)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,j,le,\"setState\")},L.prototype.forceUpdate=function(j){this.updater.enqueueForceUpdate(this,j,\"forceUpdate\")};function q(){}q.prototype=L.prototype;function W(j,le,$e){this.props=j,this.context=le,this.refs=B,this.updater=$e||E}var Y=W.prototype=new q;Y.constructor=W,O(Y,L.prototype),Y.isPureReactComponent=!0;var P=Array.isArray,te=Object.prototype.hasOwnProperty,me={current:null},ye={key:!0,ref:!0,__self:!0,__source:!0};function be(j,le,$e){var Ve,nt={},Ye=null,Ze=null;if(le!=null)for(Ve in le.ref!==void 0&&(Ze=le.ref),le.key!==void 0&&(Ye=\"\"+le.key),le)te.call(le,Ve)&&!ye.hasOwnProperty(Ve)&&(nt[Ve]=le[Ve]);var Kt=arguments.length-2;if(Kt===1)nt.children=$e;else if(1<Kt){for(var Ct=Array(Kt),Wt=0;Wt<Kt;Wt++)Ct[Wt]=arguments[Wt+2];nt.children=Ct}if(j&&j.defaultProps)for(Ve in Kt=j.defaultProps,Kt)nt[Ve]===void 0&&(nt[Ve]=Kt[Ve]);return{$$typeof:i,type:j,key:Ye,ref:Ze,props:nt,_owner:me.current}}function Pe(j,le){return{$$typeof:i,type:j.type,key:le,ref:j.ref,props:j.props,_owner:j._owner}}function ut(j){return typeof j==\"object\"&&j!==null&&j.$$typeof===i}function gt(j){var le={\"=\":\"=0\",\":\":\"=2\"};return\"$\"+j.replace(/[=:]/g,function($e){return le[$e]})}var Ce=/\\/+/g;function qe(j,le){return typeof j==\"object\"&&j!==null&&j.key!=null?gt(\"\"+j.key):le.toString(36)}function dt(j,le,$e,Ve,nt){var Ye=typeof j;(Ye===\"undefined\"||Ye===\"boolean\")&&(j=null);var Ze=!1;if(j===null)Ze=!0;else switch(Ye){case\"string\":case\"number\":Ze=!0;break;case\"object\":switch(j.$$typeof){case i:case o:Ze=!0}}if(Ze)return Ze=j,nt=nt(Ze),j=Ve===\"\"?\".\"+qe(Ze,0):Ve,P(nt)?($e=\"\",j!=null&&($e=j.replace(Ce,\"$&/\")+\"/\"),dt(nt,le,$e,\"\",function(Wt){return Wt})):nt!=null&&(ut(nt)&&(nt=Pe(nt,$e+(!nt.key||Ze&&Ze.key===nt.key?\"\":(\"\"+nt.key).replace(Ce,\"$&/\")+\"/\")+j)),le.push(nt)),1;if(Ze=0,Ve=Ve===\"\"?\".\":Ve+\":\",P(j))for(var Kt=0;Kt<j.length;Kt++){Ye=j[Kt];var Ct=Ve+qe(Ye,Kt);Ze+=dt(Ye,le,$e,Ct,nt)}else if(Ct=N(j),typeof Ct==\"function\")for(j=Ct.call(j),Kt=0;!(Ye=j.next()).done;)Ye=Ye.value,Ct=Ve+qe(Ye,Kt++),Ze+=dt(Ye,le,$e,Ct,nt);else if(Ye===\"object\")throw le=String(j),Error(\"Objects are not valid as a React child (found: \"+(le===\"[object Object]\"?\"object with keys {\"+Object.keys(j).join(\", \")+\"}\":le)+\"). If you meant to render a collection of children, use an array instead.\");return Ze}function ke(j,le,$e){if(j==null)return j;var Ve=[],nt=0;return dt(j,Ve,\"\",\"\",function(Ye){return le.call($e,Ye,nt++)}),Ve}function pt(j){if(j._status===-1){var le=j._result;le=le(),le.then(function($e){(j._status===0||j._status===-1)&&(j._status=1,j._result=$e)},function($e){(j._status===0||j._status===-1)&&(j._status=2,j._result=$e)}),j._status===-1&&(j._status=0,j._result=le)}if(j._status===1)return j._result.default;throw j._result}var Ke={current:null},de={transition:null},ee={ReactCurrentDispatcher:Ke,ReactCurrentBatchConfig:de,ReactCurrentOwner:me};function fe(){throw Error(\"act(...) is not supported in production builds of React.\")}return mt.Children={map:ke,forEach:function(j,le,$e){ke(j,function(){le.apply(this,arguments)},$e)},count:function(j){var le=0;return ke(j,function(){le++}),le},toArray:function(j){return ke(j,function(le){return le})||[]},only:function(j){if(!ut(j))throw Error(\"React.Children.only expected to receive a single React element child.\");return j}},mt.Component=L,mt.Fragment=u,mt.Profiler=A,mt.PureComponent=W,mt.StrictMode=p,mt.Suspense=K,mt.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ee,mt.act=fe,mt.cloneElement=function(j,le,$e){if(j==null)throw Error(\"React.cloneElement(...): The argument must be a React element, but you passed \"+j+\".\");var Ve=O({},j.props),nt=j.key,Ye=j.ref,Ze=j._owner;if(le!=null){if(le.ref!==void 0&&(Ye=le.ref,Ze=me.current),le.key!==void 0&&(nt=\"\"+le.key),j.type&&j.type.defaultProps)var Kt=j.type.defaultProps;for(Ct in le)te.call(le,Ct)&&!ye.hasOwnProperty(Ct)&&(Ve[Ct]=le[Ct]===void 0&&Kt!==void 0?Kt[Ct]:le[Ct])}var Ct=arguments.length-2;if(Ct===1)Ve.children=$e;else if(1<Ct){Kt=Array(Ct);for(var Wt=0;Wt<Ct;Wt++)Kt[Wt]=arguments[Wt+2];Ve.children=Kt}return{$$typeof:i,type:j.type,key:nt,ref:Ye,props:Ve,_owner:Ze}},mt.createContext=function(j){return j={$$typeof:m,_currentValue:j,_currentValue2:j,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},j.Provider={$$typeof:U,_context:j},j.Consumer=j},mt.createElement=be,mt.createFactory=function(j){var le=be.bind(null,j);return le.type=j,le},mt.createRef=function(){return{current:null}},mt.forwardRef=function(j){return{$$typeof:y,render:j}},mt.isValidElement=ut,mt.lazy=function(j){return{$$typeof:R,_payload:{_status:-1,_result:j},_init:pt}},mt.memo=function(j,le){return{$$typeof:F,type:j,compare:le===void 0?null:le}},mt.startTransition=function(j){var le=de.transition;de.transition={};try{j()}finally{de.transition=le}},mt.unstable_act=fe,mt.useCallback=function(j,le){return Ke.current.useCallback(j,le)},mt.useContext=function(j){return Ke.current.useContext(j)},mt.useDebugValue=function(){},mt.useDeferredValue=function(j){return Ke.current.useDeferredValue(j)},mt.useEffect=function(j,le){return Ke.current.useEffect(j,le)},mt.useId=function(){return Ke.current.useId()},mt.useImperativeHandle=function(j,le,$e){return Ke.current.useImperativeHandle(j,le,$e)},mt.useInsertionEffect=function(j,le){return Ke.current.useInsertionEffect(j,le)},mt.useLayoutEffect=function(j,le){return Ke.current.useLayoutEffect(j,le)},mt.useMemo=function(j,le){return Ke.current.useMemo(j,le)},mt.useReducer=function(j,le,$e){return Ke.current.useReducer(j,le,$e)},mt.useRef=function(j){return Ke.current.useRef(j)},mt.useState=function(j){return Ke.current.useState(j)},mt.useSyncExternalStore=function(j,le,$e){return Ke.current.useSyncExternalStore(j,le,$e)},mt.useTransition=function(){return Ke.current.useTransition()},mt.version=\"18.3.1\",mt}var Vu={exports:{}};/**\n * @license React\n * react.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */Vu.exports;var ud;function kl(){return ud||(ud=1,function(i,o){process.env.NODE_ENV!==\"production\"&&function(){typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error);var u=\"18.3.1\",p=Symbol.for(\"react.element\"),A=Symbol.for(\"react.portal\"),U=Symbol.for(\"react.fragment\"),m=Symbol.for(\"react.strict_mode\"),y=Symbol.for(\"react.profiler\"),K=Symbol.for(\"react.provider\"),F=Symbol.for(\"react.context\"),R=Symbol.for(\"react.forward_ref\"),b=Symbol.for(\"react.suspense\"),N=Symbol.for(\"react.suspense_list\"),E=Symbol.for(\"react.memo\"),O=Symbol.for(\"react.lazy\"),B=Symbol.for(\"react.offscreen\"),L=Symbol.iterator,q=\"@@iterator\";function W(C){if(C===null||typeof C!=\"object\")return null;var V=L&&C[L]||C[q];return typeof V==\"function\"?V:null}var Y={current:null},P={transition:null},te={current:null,isBatchingLegacy:!1,didScheduleLegacyUpdate:!1},me={current:null},ye={},be=null;function Pe(C){be=C}ye.setExtraStackFrame=function(C){be=C},ye.getCurrentStack=null,ye.getStackAddendum=function(){var C=\"\";be&&(C+=be);var V=ye.getCurrentStack;return V&&(C+=V()||\"\"),C};var ut=!1,gt=!1,Ce=!1,qe=!1,dt=!1,ke={ReactCurrentDispatcher:Y,ReactCurrentBatchConfig:P,ReactCurrentOwner:me};ke.ReactDebugCurrentFrame=ye,ke.ReactCurrentActQueue=te;function pt(C){{for(var V=arguments.length,ae=new Array(V>1?V-1:0),oe=1;oe<V;oe++)ae[oe-1]=arguments[oe];de(\"warn\",C,ae)}}function Ke(C){{for(var V=arguments.length,ae=new Array(V>1?V-1:0),oe=1;oe<V;oe++)ae[oe-1]=arguments[oe];de(\"error\",C,ae)}}function de(C,V,ae){{var oe=ke.ReactDebugCurrentFrame,Te=oe.getStackAddendum();Te!==\"\"&&(V+=\"%s\",ae=ae.concat([Te]));var at=ae.map(function(we){return String(we)});at.unshift(\"Warning: \"+V),Function.prototype.apply.call(console[C],console,at)}}var ee={};function fe(C,V){{var ae=C.constructor,oe=ae&&(ae.displayName||ae.name)||\"ReactClass\",Te=oe+\".\"+V;if(ee[Te])return;Ke(\"Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.\",V,oe),ee[Te]=!0}}var j={isMounted:function(C){return!1},enqueueForceUpdate:function(C,V,ae){fe(C,\"forceUpdate\")},enqueueReplaceState:function(C,V,ae,oe){fe(C,\"replaceState\")},enqueueSetState:function(C,V,ae,oe){fe(C,\"setState\")}},le=Object.assign,$e={};Object.freeze($e);function Ve(C,V,ae){this.props=C,this.context=V,this.refs=$e,this.updater=ae||j}Ve.prototype.isReactComponent={},Ve.prototype.setState=function(C,V){if(typeof C!=\"object\"&&typeof C!=\"function\"&&C!=null)throw new Error(\"setState(...): takes an object of state variables to update or a function which returns an object of state variables.\");this.updater.enqueueSetState(this,C,V,\"setState\")},Ve.prototype.forceUpdate=function(C){this.updater.enqueueForceUpdate(this,C,\"forceUpdate\")};{var nt={isMounted:[\"isMounted\",\"Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks.\"],replaceState:[\"replaceState\",\"Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236).\"]},Ye=function(C,V){Object.defineProperty(Ve.prototype,C,{get:function(){pt(\"%s(...) is deprecated in plain JavaScript React classes. %s\",V[0],V[1])}})};for(var Ze in nt)nt.hasOwnProperty(Ze)&&Ye(Ze,nt[Ze])}function Kt(){}Kt.prototype=Ve.prototype;function Ct(C,V,ae){this.props=C,this.context=V,this.refs=$e,this.updater=ae||j}var Wt=Ct.prototype=new Kt;Wt.constructor=Ct,le(Wt,Ve.prototype),Wt.isPureReactComponent=!0;function Rn(){var C={current:null};return Object.seal(C),C}var ma=Array.isArray;function yn(C){return ma(C)}function Zn(C){{var V=typeof Symbol==\"function\"&&Symbol.toStringTag,ae=V&&C[Symbol.toStringTag]||C.constructor.name||\"Object\";return ae}}function Dn(C){try{return jn(C),!1}catch(V){return!0}}function jn(C){return\"\"+C}function ya(C){if(Dn(C))return Ke(\"The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.\",Zn(C)),jn(C)}function Nr(C,V,ae){var oe=C.displayName;if(oe)return oe;var Te=V.displayName||V.name||\"\";return Te!==\"\"?ae+\"(\"+Te+\")\":ae}function ja(C){return C.displayName||\"Context\"}function qn(C){if(C==null)return null;if(typeof C.tag==\"number\"&&Ke(\"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"),typeof C==\"function\")return C.displayName||C.name||null;if(typeof C==\"string\")return C;switch(C){case U:return\"Fragment\";case A:return\"Portal\";case y:return\"Profiler\";case m:return\"StrictMode\";case b:return\"Suspense\";case N:return\"SuspenseList\"}if(typeof C==\"object\")switch(C.$$typeof){case F:var V=C;return ja(V)+\".Consumer\";case K:var ae=C;return ja(ae._context)+\".Provider\";case R:return Nr(C,C.render,\"ForwardRef\");case E:var oe=C.displayName||null;return oe!==null?oe:qn(C.type)||\"Memo\";case O:{var Te=C,at=Te._payload,we=Te._init;try{return qn(we(at))}catch(lt){return null}}}return null}var Kn=Object.prototype.hasOwnProperty,Ln={key:!0,ref:!0,__self:!0,__source:!0},la,dr,kn;kn={};function sa(C){if(Kn.call(C,\"ref\")){var V=Object.getOwnPropertyDescriptor(C,\"ref\").get;if(V&&V.isReactWarning)return!1}return C.ref!==void 0}function La(C){if(Kn.call(C,\"key\")){var V=Object.getOwnPropertyDescriptor(C,\"key\").get;if(V&&V.isReactWarning)return!1}return C.key!==void 0}function pr(C,V){var ae=function(){la||(la=!0,Ke(\"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\",V))};ae.isReactWarning=!0,Object.defineProperty(C,\"key\",{get:ae,configurable:!0})}function wr(C,V){var ae=function(){dr||(dr=!0,Ke(\"%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\",V))};ae.isReactWarning=!0,Object.defineProperty(C,\"ref\",{get:ae,configurable:!0})}function Re(C){if(typeof C.ref==\"string\"&&me.current&&C.__self&&me.current.stateNode!==C.__self){var V=qn(me.current.type);kn[V]||(Ke('Component \"%s\" contains the string ref \"%s\". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref',V,C.ref),kn[V]=!0)}}var ze=function(C,V,ae,oe,Te,at,we){var lt={$$typeof:p,type:C,key:V,ref:ae,props:we,_owner:at};return lt._store={},Object.defineProperty(lt._store,\"validated\",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(lt,\"_self\",{configurable:!1,enumerable:!1,writable:!1,value:oe}),Object.defineProperty(lt,\"_source\",{configurable:!1,enumerable:!1,writable:!1,value:Te}),Object.freeze&&(Object.freeze(lt.props),Object.freeze(lt)),lt};function kt(C,V,ae){var oe,Te={},at=null,we=null,lt=null,Qt=null;if(V!=null){sa(V)&&(we=V.ref,Re(V)),La(V)&&(ya(V.key),at=\"\"+V.key),lt=V.__self===void 0?null:V.__self,Qt=V.__source===void 0?null:V.__source;for(oe in V)Kn.call(V,oe)&&!Ln.hasOwnProperty(oe)&&(Te[oe]=V[oe])}var Yt=arguments.length-2;if(Yt===1)Te.children=ae;else if(Yt>1){for(var hn=Array(Yt),rn=0;rn<Yt;rn++)hn[rn]=arguments[rn+2];Object.freeze&&Object.freeze(hn),Te.children=hn}if(C&&C.defaultProps){var Nt=C.defaultProps;for(oe in Nt)Te[oe]===void 0&&(Te[oe]=Nt[oe])}if(at||we){var on=typeof C==\"function\"?C.displayName||C.name||\"Unknown\":C;at&&pr(Te,on),we&&wr(Te,on)}return ze(C,at,we,lt,Qt,me.current,Te)}function _t(C,V){var ae=ze(C.type,V,C.ref,C._self,C._source,C._owner,C.props);return ae}function pn(C,V,ae){if(C==null)throw new Error(\"React.cloneElement(...): The argument must be a React element, but you passed \"+C+\".\");var oe,Te=le({},C.props),at=C.key,we=C.ref,lt=C._self,Qt=C._source,Yt=C._owner;if(V!=null){sa(V)&&(we=V.ref,Yt=me.current),La(V)&&(ya(V.key),at=\"\"+V.key);var hn;C.type&&C.type.defaultProps&&(hn=C.type.defaultProps);for(oe in V)Kn.call(V,oe)&&!Ln.hasOwnProperty(oe)&&(V[oe]===void 0&&hn!==void 0?Te[oe]=hn[oe]:Te[oe]=V[oe])}var rn=arguments.length-2;if(rn===1)Te.children=ae;else if(rn>1){for(var Nt=Array(rn),on=0;on<rn;on++)Nt[on]=arguments[on+2];Te.children=Nt}return ze(C.type,at,we,lt,Qt,Yt,Te)}function Nn(C){return typeof C==\"object\"&&C!==null&&C.$$typeof===p}var gn=\".\",ha=\":\";function fn(C){var V=/[=:]/g,ae={\"=\":\"=0\",\":\":\"=2\"},oe=C.replace(V,function(Te){return ae[Te]});return\"$\"+oe}var tn=!1,nn=/\\/+/g;function Er(C){return C.replace(nn,\"$&/\")}function Oa(C,V){return typeof C==\"object\"&&C!==null&&C.key!=null?(ya(C.key),fn(\"\"+C.key)):V.toString(36)}function Zr(C,V,ae,oe,Te){var at=typeof C;(at===\"undefined\"||at===\"boolean\")&&(C=null);var we=!1;if(C===null)we=!0;else switch(at){case\"string\":case\"number\":we=!0;break;case\"object\":switch(C.$$typeof){case p:case A:we=!0}}if(we){var lt=C,Qt=Te(lt),Yt=oe===\"\"?gn+Oa(lt,0):oe;if(yn(Qt)){var hn=\"\";Yt!=null&&(hn=Er(Yt)+\"/\"),Zr(Qt,V,hn,\"\",function(qf){return qf})}else Qt!=null&&(Nn(Qt)&&(Qt.key&&(!lt||lt.key!==Qt.key)&&ya(Qt.key),Qt=_t(Qt,ae+(Qt.key&&(!lt||lt.key!==Qt.key)?Er(\"\"+Qt.key)+\"/\":\"\")+Yt)),V.push(Qt));return 1}var rn,Nt,on=0,wn=oe===\"\"?gn:oe+ha;if(yn(C))for(var _o=0;_o<C.length;_o++)rn=C[_o],Nt=wn+Oa(rn,_o),on+=Zr(rn,V,ae,Nt,Te);else{var _u=W(C);if(typeof _u==\"function\"){var ho=C;_u===ho.entries&&(tn||pt(\"Using Maps as children is not supported. Use an array of keyed ReactElements instead.\"),tn=!0);for(var $u=_u.call(ho),zl,If=0;!(zl=$u.next()).done;)rn=zl.value,Nt=wn+Oa(rn,If++),on+=Zr(rn,V,ae,Nt,Te)}else if(at===\"object\"){var wd=String(C);throw new Error(\"Objects are not valid as a React child (found: \"+(wd===\"[object Object]\"?\"object with keys {\"+Object.keys(C).join(\", \")+\"}\":wd)+\"). If you meant to render a collection of children, use an array instead.\")}}return on}function po(C,V,ae){if(C==null)return C;var oe=[],Te=0;return Zr(C,oe,\"\",\"\",function(at){return V.call(ae,at,Te++)}),oe}function Ll(C){var V=0;return po(C,function(){V++}),V}function Ol(C,V,ae){po(C,function(){V.apply(this,arguments)},ae)}function Yo(C){return po(C,function(V){return V})||[]}function Go(C){if(!Nn(C))throw new Error(\"React.Children.only expected to receive a single React element child.\");return C}function Vl(C){var V={$$typeof:F,_currentValue:C,_currentValue2:C,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null};V.Provider={$$typeof:K,_context:V};var ae=!1,oe=!1,Te=!1;{var at={$$typeof:F,_context:V};Object.defineProperties(at,{Provider:{get:function(){return oe||(oe=!0,Ke(\"Rendering <Context.Consumer.Provider> is not supported and will be removed in a future major release. Did you mean to render <Context.Provider> instead?\")),V.Provider},set:function(we){V.Provider=we}},_currentValue:{get:function(){return V._currentValue},set:function(we){V._currentValue=we}},_currentValue2:{get:function(){return V._currentValue2},set:function(we){V._currentValue2=we}},_threadCount:{get:function(){return V._threadCount},set:function(we){V._threadCount=we}},Consumer:{get:function(){return ae||(ae=!0,Ke(\"Rendering <Context.Consumer.Consumer> is not supported and will be removed in a future major release. Did you mean to render <Context.Consumer> instead?\")),V.Consumer}},displayName:{get:function(){return V.displayName},set:function(we){Te||(pt(\"Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.displayName = '%s'.\",we),Te=!0)}}}),V.Consumer=at}return V._currentRenderer=null,V._currentRenderer2=null,V}var Wa=-1,Ja=0,Ka=1,Di=2;function gi(C){if(C._status===Wa){var V=C._result,ae=V();if(ae.then(function(at){if(C._status===Ja||C._status===Wa){var we=C;we._status=Ka,we._result=at}},function(at){if(C._status===Ja||C._status===Wa){var we=C;we._status=Di,we._result=at}}),C._status===Wa){var oe=C;oe._status=Ja,oe._result=ae}}if(C._status===Ka){var Te=C._result;return Te===void 0&&Ke(`lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?`,Te),\"default\"in Te||Ke(`lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))`,Te),Te.default}else throw C._result}function ji(C){var V={_status:Wa,_result:C},ae={$$typeof:O,_payload:V,_init:gi};{var oe,Te;Object.defineProperties(ae,{defaultProps:{configurable:!0,get:function(){return oe},set:function(at){Ke(\"React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.\"),oe=at,Object.defineProperty(ae,\"defaultProps\",{enumerable:!0})}},propTypes:{configurable:!0,get:function(){return Te},set:function(at){Ke(\"React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the component is defined, or create a wrapping component around it.\"),Te=at,Object.defineProperty(ae,\"propTypes\",{enumerable:!0})}}})}return ae}function Li(C){C!=null&&C.$$typeof===E?Ke(\"forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...)).\"):typeof C!=\"function\"?Ke(\"forwardRef requires a render function but was given %s.\",C===null?\"null\":typeof C):C.length!==0&&C.length!==2&&Ke(\"forwardRef render functions accept exactly two parameters: props and ref. %s\",C.length===1?\"Did you forget to use the ref parameter?\":\"Any additional parameter will be undefined.\"),C!=null&&(C.defaultProps!=null||C.propTypes!=null)&&Ke(\"forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React component?\");var V={$$typeof:R,render:C};{var ae;Object.defineProperty(V,\"displayName\",{enumerable:!1,configurable:!0,get:function(){return ae},set:function(oe){ae=oe,!C.name&&!C.displayName&&(C.displayName=oe)}})}return V}var I;I=Symbol.for(\"react.module.reference\");function he(C){return!!(typeof C==\"string\"||typeof C==\"function\"||C===U||C===y||dt||C===m||C===b||C===N||qe||C===B||ut||gt||Ce||typeof C==\"object\"&&C!==null&&(C.$$typeof===O||C.$$typeof===E||C.$$typeof===K||C.$$typeof===F||C.$$typeof===R||C.$$typeof===I||C.getModuleId!==void 0))}function Ee(C,V){he(C)||Ke(\"memo: The first argument must be a component. Instead received: %s\",C===null?\"null\":typeof C);var ae={$$typeof:E,type:C,compare:V===void 0?null:V};{var oe;Object.defineProperty(ae,\"displayName\",{enumerable:!1,configurable:!0,get:function(){return oe},set:function(Te){oe=Te,!C.name&&!C.displayName&&(C.displayName=Te)}})}return ae}function Ie(){var C=Y.current;return C===null&&Ke(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.`),C}function xt(C){var V=Ie();if(C._context!==void 0){var ae=C._context;ae.Consumer===C?Ke(\"Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major release. Did you mean to call useContext(Context) instead?\"):ae.Provider===C&&Ke(\"Calling useContext(Context.Provider) is not supported. Did you mean to call useContext(Context) instead?\")}return V.useContext(C)}function Ut(C){var V=Ie();return V.useState(C)}function Bt(C,V,ae){var oe=Ie();return oe.useReducer(C,V,ae)}function wt(C){var V=Ie();return V.useRef(C)}function Yn(C,V){var ae=Ie();return ae.useEffect(C,V)}function mn(C,V){var ae=Ie();return ae.useInsertionEffect(C,V)}function vn(C,V){var ae=Ie();return ae.useLayoutEffect(C,V)}function xa(C,V){var ae=Ie();return ae.useCallback(C,V)}function vi(C,V){var ae=Ie();return ae.useMemo(C,V)}function Ui(C,V,ae){var oe=Ie();return oe.useImperativeHandle(C,V,ae)}function Ft(C,V){{var ae=Ie();return ae.useDebugValue(C,V)}}function Rt(){var C=Ie();return C.useTransition()}function Si(C){var V=Ie();return V.useDeferredValue(C)}function Il(){var C=Ie();return C.useId()}function ql(C,V,ae){var oe=Ie();return oe.useSyncExternalStore(C,V,ae)}var Wo=0,Ys,Jo,fr,Hu,za,kd,Nd;function Gs(){}Gs.__reactDisabledLog=!0;function zo(){{if(Wo===0){Ys=console.log,Jo=console.info,fr=console.warn,Hu=console.error,za=console.group,kd=console.groupCollapsed,Nd=console.groupEnd;var C={configurable:!0,enumerable:!0,value:Gs,writable:!0};Object.defineProperties(console,{info:C,log:C,warn:C,error:C,group:C,groupCollapsed:C,groupEnd:C})}Wo++}}function Mr(){{if(Wo--,Wo===0){var C={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:le({},C,{value:Ys}),info:le({},C,{value:Jo}),warn:le({},C,{value:fr}),error:le({},C,{value:Hu}),group:le({},C,{value:za}),groupCollapsed:le({},C,{value:kd}),groupEnd:le({},C,{value:Nd})})}Wo<0&&Ke(\"disabledDepth fell below zero. This is a bug in React. Please file an issue.\")}}var yi=ke.ReactCurrentDispatcher,Ki;function Ws(C,V,ae){{if(Ki===void 0)try{throw Error()}catch(Te){var oe=Te.stack.trim().match(/\\n( *(at )?)/);Ki=oe&&oe[1]||\"\"}return`\n`+Ki+C}}var Yl=!1,Ho;{var Js=typeof WeakMap==\"function\"?WeakMap:Map;Ho=new Js}function zs(C,V){if(!C||Yl)return\"\";{var ae=Ho.get(C);if(ae!==void 0)return ae}var oe;Yl=!0;var Te=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var at;at=yi.current,yi.current=null,zo();try{if(V){var we=function(){throw Error()};if(Object.defineProperty(we.prototype,\"props\",{set:function(){throw Error()}}),typeof Reflect==\"object\"&&Reflect.construct){try{Reflect.construct(we,[])}catch(wn){oe=wn}Reflect.construct(C,[],we)}else{try{we.call()}catch(wn){oe=wn}C.call(we.prototype)}}else{try{throw Error()}catch(wn){oe=wn}C()}}catch(wn){if(wn&&oe&&typeof wn.stack==\"string\"){for(var lt=wn.stack.split(`\n`),Qt=oe.stack.split(`\n`),Yt=lt.length-1,hn=Qt.length-1;Yt>=1&&hn>=0&<[Yt]!==Qt[hn];)hn--;for(;Yt>=1&&hn>=0;Yt--,hn--)if(lt[Yt]!==Qt[hn]){if(Yt!==1||hn!==1)do if(Yt--,hn--,hn<0||lt[Yt]!==Qt[hn]){var rn=`\n`+lt[Yt].replace(\" at new \",\" at \");return C.displayName&&rn.includes(\"<anonymous>\")&&(rn=rn.replace(\"<anonymous>\",C.displayName)),typeof C==\"function\"&&Ho.set(C,rn),rn}while(Yt>=1&&hn>=0);break}}}finally{Yl=!1,yi.current=at,Mr(),Error.prepareStackTrace=Te}var Nt=C?C.displayName||C.name:\"\",on=Nt?Ws(Nt):\"\";return typeof C==\"function\"&&Ho.set(C,on),on}function fo(C,V,ae){return zs(C,!1)}function Of(C){var V=C.prototype;return!!(V&&V.isReactComponent)}function mo(C,V,ae){if(C==null)return\"\";if(typeof C==\"function\")return zs(C,Of(C));if(typeof C==\"string\")return Ws(C);switch(C){case b:return Ws(\"Suspense\");case N:return Ws(\"SuspenseList\")}if(typeof C==\"object\")switch(C.$$typeof){case R:return fo(C.render);case E:return mo(C.type,V,ae);case O:{var oe=C,Te=oe._payload,at=oe._init;try{return mo(at(Te),V,ae)}catch(we){}}}return\"\"}var Jt={},Hs=ke.ReactDebugCurrentFrame;function qt(C){if(C){var V=C._owner,ae=mo(C.type,C._source,V?V.type:null);Hs.setExtraStackFrame(ae)}else Hs.setExtraStackFrame(null)}function Pu(C,V,ae,oe,Te){{var at=Function.call.bind(Kn);for(var we in C)if(at(C,we)){var lt=void 0;try{if(typeof C[we]!=\"function\"){var Qt=Error((oe||\"React class\")+\": \"+ae+\" type `\"+we+\"` is invalid; it must be a function, usually from the `prop-types` package, but received `\"+typeof C[we]+\"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.\");throw Qt.name=\"Invariant Violation\",Qt}lt=C[we](V,we,oe,ae,null,\"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\")}catch(Yt){lt=Yt}lt&&!(lt instanceof Error)&&(qt(Te),Ke(\"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).\",oe||\"React class\",ae,we,typeof lt),qt(null)),lt instanceof Error&&!(lt.message in Jt)&&(Jt[lt.message]=!0,qt(Te),Ke(\"Failed %s type: %s\",ae,lt.message),qt(null))}}}function Oi(C){if(C){var V=C._owner,ae=mo(C.type,C._source,V?V.type:null);Pe(ae)}else Pe(null)}var vt;vt=!1;function Ps(){if(me.current){var C=qn(me.current.type);if(C)return`\n\nCheck the render method of \\``+C+\"`.\"}return\"\"}function Fa(C){if(C!==void 0){var V=C.fileName.replace(/^.*[\\\\\\/]/,\"\"),ae=C.lineNumber;return`\n\nCheck your code at `+V+\":\"+ae+\".\"}return\"\"}function Vi(C){return C!=null?Fa(C.__source):\"\"}var Ha={};function Ii(C){var V=Ps();if(!V){var ae=typeof C==\"string\"?C:C.displayName||C.name;ae&&(V=`\n\nCheck the top-level render call using <`+ae+\">.\")}return V}function Un(C,V){if(!(!C._store||C._store.validated||C.key!=null)){C._store.validated=!0;var ae=Ii(V);if(!Ha[ae]){Ha[ae]=!0;var oe=\"\";C&&C._owner&&C._owner!==me.current&&(oe=\" It was passed a child from \"+qn(C._owner.type)+\".\"),Oi(C),Ke('Each child in a list should have a unique \"key\" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',ae,oe),Oi(null)}}}function an(C,V){if(typeof C==\"object\"){if(yn(C))for(var ae=0;ae<C.length;ae++){var oe=C[ae];Nn(oe)&&Un(oe,V)}else if(Nn(C))C._store&&(C._store.validated=!0);else if(C){var Te=W(C);if(typeof Te==\"function\"&&Te!==C.entries)for(var at=Te.call(C),we;!(we=at.next()).done;)Nn(we.value)&&Un(we.value,V)}}}function Po(C){{var V=C.type;if(V==null||typeof V==\"string\")return;var ae;if(typeof V==\"function\")ae=V.propTypes;else if(typeof V==\"object\"&&(V.$$typeof===R||V.$$typeof===E))ae=V.propTypes;else return;if(ae){var oe=qn(V);Pu(ae,C.props,\"prop\",oe,C)}else if(V.PropTypes!==void 0&&!vt){vt=!0;var Te=qn(V);Ke(\"Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?\",Te||\"Unknown\")}typeof V.getDefaultProps==\"function\"&&!V.getDefaultProps.isReactClassApproved&&Ke(\"getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.\")}}function ua(C){{for(var V=Object.keys(C.props),ae=0;ae<V.length;ae++){var oe=V[ae];if(oe!==\"children\"&&oe!==\"key\"){Oi(C),Ke(\"Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.\",oe),Oi(null);break}}C.ref!==null&&(Oi(C),Ke(\"Invalid attribute `ref` supplied to `React.Fragment`.\"),Oi(null))}}function Pa(C,V,ae){var oe=he(C);if(!oe){var Te=\"\";(C===void 0||typeof C==\"object\"&&C!==null&&Object.keys(C).length===0)&&(Te+=\" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\");var at=Vi(V);at?Te+=at:Te+=Ps();var we;C===null?we=\"null\":yn(C)?we=\"array\":C!==void 0&&C.$$typeof===p?(we=\"<\"+(qn(C.type)||\"Unknown\")+\" />\",Te=\" Did you accidentally export a JSX literal instead of a component?\"):we=typeof C,Ke(\"React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s\",we,Te)}var lt=kt.apply(this,arguments);if(lt==null)return lt;if(oe)for(var Qt=2;Qt<arguments.length;Qt++)an(arguments[Qt],C);return C===U?ua(lt):Po(lt),lt}var Xr=!1;function Gl(C){var V=Pa.bind(null,C);return V.type=C,Xr||(Xr=!0,pt(\"React.createFactory() is deprecated and will be removed in a future major release. Consider using JSX or use React.createElement() directly instead.\")),Object.defineProperty(V,\"type\",{enumerable:!1,get:function(){return pt(\"Factory.type is deprecated. Access the class directly before passing it to createFactory.\"),Object.defineProperty(this,\"type\",{value:C}),C}}),V}function Zu(C,V,ae){for(var oe=pn.apply(this,arguments),Te=2;Te<arguments.length;Te++)an(arguments[Te],oe.type);return Po(oe),oe}function Xu(C,V){var ae=P.transition;P.transition={};var oe=P.transition;P.transition._updatedFibers=new Set;try{C()}finally{if(P.transition=ae,ae===null&&oe._updatedFibers){var Te=oe._updatedFibers.size;Te>10&&pt(\"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.\"),oe._updatedFibers.clear()}}}var Zo=!1,Wl=null;function Vf(C){if(Wl===null)try{var V=(\"require\"+Math.random()).slice(0,7),ae=i&&i[V];Wl=ae.call(i,\"timers\").setImmediate}catch(oe){Wl=function(Te){Zo===!1&&(Zo=!0,typeof MessageChannel==\"undefined\"&&Ke(\"This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning.\"));var at=new MessageChannel;at.port1.onmessage=Te,at.port2.postMessage(void 0)}}return Wl(C)}var _r=0,xi=!1;function qi(C){{var V=_r;_r++,te.current===null&&(te.current=[]);var ae=te.isBatchingLegacy,oe;try{if(te.isBatchingLegacy=!0,oe=C(),!ae&&te.didScheduleLegacyUpdate){var Te=te.current;Te!==null&&(te.didScheduleLegacyUpdate=!1,Xo(Te))}}catch(Nt){throw $r(V),Nt}finally{te.isBatchingLegacy=ae}if(oe!==null&&typeof oe==\"object\"&&typeof oe.then==\"function\"){var at=oe,we=!1,lt={then:function(Nt,on){we=!0,at.then(function(wn){$r(V),_r===0?Zs(wn,Nt,on):Nt(wn)},function(wn){$r(V),on(wn)})}};return!xi&&typeof Promise!=\"undefined\"&&Promise.resolve().then(function(){}).then(function(){we||(xi=!0,Ke(\"You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);\"))}),lt}else{var Qt=oe;if($r(V),_r===0){var Yt=te.current;Yt!==null&&(Xo(Yt),te.current=null);var hn={then:function(Nt,on){te.current===null?(te.current=[],Zs(Qt,Nt,on)):Nt(Qt)}};return hn}else{var rn={then:function(Nt,on){Nt(Qt)}};return rn}}}}function $r(C){C!==_r-1&&Ke(\"You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. \"),_r=C}function Zs(C,V,ae){{var oe=te.current;if(oe!==null)try{Xo(oe),Vf(function(){oe.length===0?(te.current=null,V(C)):Zs(C,V,ae)})}catch(Te){ae(Te)}else V(C)}}var Xs=!1;function Xo(C){if(!Xs){Xs=!0;var V=0;try{for(;V<C.length;V++){var ae=C[V];do ae=ae(!0);while(ae!==null)}C.length=0}catch(oe){throw C=C.slice(V+1),oe}finally{Xs=!1}}}var Jl=Pa,_s=Zu,$s=Gl,Fi={map:po,forEach:Ol,count:Ll,toArray:Yo,only:Go};o.Children=Fi,o.Component=Ve,o.Fragment=U,o.Profiler=y,o.PureComponent=Ct,o.StrictMode=m,o.Suspense=b,o.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ke,o.act=qi,o.cloneElement=_s,o.createContext=Vl,o.createElement=Jl,o.createFactory=$s,o.createRef=Rn,o.forwardRef=Li,o.isValidElement=Nn,o.lazy=ji,o.memo=Ee,o.startTransition=Xu,o.unstable_act=qi,o.useCallback=xa,o.useContext=xt,o.useDebugValue=Ft,o.useDeferredValue=Si,o.useEffect=Yn,o.useId=Il,o.useImperativeHandle=Ui,o.useInsertionEffect=mn,o.useLayoutEffect=vn,o.useMemo=vi,o.useReducer=Bt,o.useRef=wt,o.useState=Ut,o.useSyncExternalStore=ql,o.useTransition=Rt,o.version=u,typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error)}()}(Vu,Vu.exports)),Vu.exports}process.env.NODE_ENV===\"production\"?Tn.exports=fv():Tn.exports=kl();var Q=Tn.exports;const mv=dn(Q);var hv={exports:{}},Jr={},G0={exports:{}},Av={};/**\n * @license React\n * scheduler.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var Ax;function zk(){return Ax||(Ax=1,function(i){function o(de,ee){var fe=de.length;de.push(ee);e:for(;0<fe;){var j=fe-1>>>1,le=de[j];if(0<A(le,ee))de[j]=ee,de[fe]=le,fe=j;else break e}}function u(de){return de.length===0?null:de[0]}function p(de){if(de.length===0)return null;var ee=de[0],fe=de.pop();if(fe!==ee){de[0]=fe;e:for(var j=0,le=de.length,$e=le>>>1;j<$e;){var Ve=2*(j+1)-1,nt=de[Ve],Ye=Ve+1,Ze=de[Ye];if(0>A(nt,fe))Ye<le&&0>A(Ze,nt)?(de[j]=Ze,de[Ye]=fe,j=Ye):(de[j]=nt,de[Ve]=fe,j=Ve);else if(Ye<le&&0>A(Ze,fe))de[j]=Ze,de[Ye]=fe,j=Ye;else break e}}return ee}function A(de,ee){var fe=de.sortIndex-ee.sortIndex;return fe!==0?fe:de.id-ee.id}if(typeof performance==\"object\"&&typeof performance.now==\"function\"){var U=performance;i.unstable_now=function(){return U.now()}}else{var m=Date,y=m.now();i.unstable_now=function(){return m.now()-y}}var K=[],F=[],R=1,b=null,N=3,E=!1,O=!1,B=!1,L=typeof setTimeout==\"function\"?setTimeout:null,q=typeof clearTimeout==\"function\"?clearTimeout:null,W=typeof setImmediate!=\"undefined\"?setImmediate:null;typeof navigator!=\"undefined\"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function Y(de){for(var ee=u(F);ee!==null;){if(ee.callback===null)p(F);else if(ee.startTime<=de)p(F),ee.sortIndex=ee.expirationTime,o(K,ee);else break;ee=u(F)}}function P(de){if(B=!1,Y(de),!O)if(u(K)!==null)O=!0,pt(te);else{var ee=u(F);ee!==null&&Ke(P,ee.startTime-de)}}function te(de,ee){O=!1,B&&(B=!1,q(be),be=-1),E=!0;var fe=N;try{for(Y(ee),b=u(K);b!==null&&(!(b.expirationTime>ee)||de&&!gt());){var j=b.callback;if(typeof j==\"function\"){b.callback=null,N=b.priorityLevel;var le=j(b.expirationTime<=ee);ee=i.unstable_now(),typeof le==\"function\"?b.callback=le:b===u(K)&&p(K),Y(ee)}else p(K);b=u(K)}if(b!==null)var $e=!0;else{var Ve=u(F);Ve!==null&&Ke(P,Ve.startTime-ee),$e=!1}return $e}finally{b=null,N=fe,E=!1}}var me=!1,ye=null,be=-1,Pe=5,ut=-1;function gt(){return!(i.unstable_now()-ut<Pe)}function Ce(){if(ye!==null){var de=i.unstable_now();ut=de;var ee=!0;try{ee=ye(!0,de)}finally{ee?qe():(me=!1,ye=null)}}else me=!1}var qe;if(typeof W==\"function\")qe=function(){W(Ce)};else if(typeof MessageChannel!=\"undefined\"){var dt=new MessageChannel,ke=dt.port2;dt.port1.onmessage=Ce,qe=function(){ke.postMessage(null)}}else qe=function(){L(Ce,0)};function pt(de){ye=de,me||(me=!0,qe())}function Ke(de,ee){be=L(function(){de(i.unstable_now())},ee)}i.unstable_IdlePriority=5,i.unstable_ImmediatePriority=1,i.unstable_LowPriority=4,i.unstable_NormalPriority=3,i.unstable_Profiling=null,i.unstable_UserBlockingPriority=2,i.unstable_cancelCallback=function(de){de.callback=null},i.unstable_continueExecution=function(){O||E||(O=!0,pt(te))},i.unstable_forceFrameRate=function(de){0>de||125<de?console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"):Pe=0<de?Math.floor(1e3/de):5},i.unstable_getCurrentPriorityLevel=function(){return N},i.unstable_getFirstCallbackNode=function(){return u(K)},i.unstable_next=function(de){switch(N){case 1:case 2:case 3:var ee=3;break;default:ee=N}var fe=N;N=ee;try{return de()}finally{N=fe}},i.unstable_pauseExecution=function(){},i.unstable_requestPaint=function(){},i.unstable_runWithPriority=function(de,ee){switch(de){case 1:case 2:case 3:case 4:case 5:break;default:de=3}var fe=N;N=de;try{return ee()}finally{N=fe}},i.unstable_scheduleCallback=function(de,ee,fe){var j=i.unstable_now();switch(typeof fe==\"object\"&&fe!==null?(fe=fe.delay,fe=typeof fe==\"number\"&&0<fe?j+fe:j):fe=j,de){case 1:var le=-1;break;case 2:le=250;break;case 5:le=1073741823;break;case 4:le=1e4;break;default:le=5e3}return le=fe+le,de={id:R++,callback:ee,priorityLevel:de,startTime:fe,expirationTime:le,sortIndex:-1},fe>j?(de.sortIndex=fe,o(F,de),u(K)===null&&de===u(F)&&(B?(q(be),be=-1):B=!0,Ke(P,fe-j))):(de.sortIndex=le,o(K,de),O||E||(O=!0,pt(te))),de},i.unstable_shouldYield=gt,i.unstable_wrapCallback=function(de){var ee=N;return function(){var fe=N;N=ee;try{return de.apply(this,arguments)}finally{N=fe}}}}(Av)),Av}var gv={};/**\n * @license React\n * scheduler.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var gx;function Hk(){return gx||(gx=1,function(i){process.env.NODE_ENV!==\"production\"&&function(){typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error);var o=!1,u=5;function p(Re,ze){var kt=Re.length;Re.push(ze),m(Re,ze,kt)}function A(Re){return Re.length===0?null:Re[0]}function U(Re){if(Re.length===0)return null;var ze=Re[0],kt=Re.pop();return kt!==ze&&(Re[0]=kt,y(Re,kt,0)),ze}function m(Re,ze,kt){for(var _t=kt;_t>0;){var pn=_t-1>>>1,Nn=Re[pn];if(K(Nn,ze)>0)Re[pn]=ze,Re[_t]=Nn,_t=pn;else return}}function y(Re,ze,kt){for(var _t=kt,pn=Re.length,Nn=pn>>>1;_t<Nn;){var gn=(_t+1)*2-1,ha=Re[gn],fn=gn+1,tn=Re[fn];if(K(ha,ze)<0)fn<pn&&K(tn,ha)<0?(Re[_t]=tn,Re[fn]=ze,_t=fn):(Re[_t]=ha,Re[gn]=ze,_t=gn);else if(fn<pn&&K(tn,ze)<0)Re[_t]=tn,Re[fn]=ze,_t=fn;else return}}function K(Re,ze){var kt=Re.sortIndex-ze.sortIndex;return kt!==0?kt:Re.id-ze.id}var F=1,R=2,b=3,N=4,E=5;function O(Re,ze){}var B=typeof performance==\"object\"&&typeof performance.now==\"function\";if(B){var L=performance;i.unstable_now=function(){return L.now()}}else{var q=Date,W=q.now();i.unstable_now=function(){return q.now()-W}}var Y=1073741823,P=-1,te=250,me=5e3,ye=1e4,be=Y,Pe=[],ut=[],gt=1,Ce=null,qe=b,dt=!1,ke=!1,pt=!1,Ke=typeof setTimeout==\"function\"?setTimeout:null,de=typeof clearTimeout==\"function\"?clearTimeout:null,ee=typeof setImmediate!=\"undefined\"?setImmediate:null;typeof navigator!=\"undefined\"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function fe(Re){for(var ze=A(ut);ze!==null;){if(ze.callback===null)U(ut);else if(ze.startTime<=Re)U(ut),ze.sortIndex=ze.expirationTime,p(Pe,ze);else return;ze=A(ut)}}function j(Re){if(pt=!1,fe(Re),!ke)if(A(Pe)!==null)ke=!0,kn(le);else{var ze=A(ut);ze!==null&&sa(j,ze.startTime-Re)}}function le(Re,ze){ke=!1,pt&&(pt=!1,La()),dt=!0;var kt=qe;try{var _t;if(!o)return $e(Re,ze)}finally{Ce=null,qe=kt,dt=!1}}function $e(Re,ze){var kt=ze;for(fe(kt),Ce=A(Pe);Ce!==null&&!(Ce.expirationTime>kt&&(!Re||Nr()));){var _t=Ce.callback;if(typeof _t==\"function\"){Ce.callback=null,qe=Ce.priorityLevel;var pn=Ce.expirationTime<=kt,Nn=_t(pn);kt=i.unstable_now(),typeof Nn==\"function\"?Ce.callback=Nn:Ce===A(Pe)&&U(Pe),fe(kt)}else U(Pe);Ce=A(Pe)}if(Ce!==null)return!0;var gn=A(ut);return gn!==null&&sa(j,gn.startTime-kt),!1}function Ve(Re,ze){switch(Re){case F:case R:case b:case N:case E:break;default:Re=b}var kt=qe;qe=Re;try{return ze()}finally{qe=kt}}function nt(Re){var ze;switch(qe){case F:case R:case b:ze=b;break;default:ze=qe;break}var kt=qe;qe=ze;try{return Re()}finally{qe=kt}}function Ye(Re){var ze=qe;return function(){var kt=qe;qe=ze;try{return Re.apply(this,arguments)}finally{qe=kt}}}function Ze(Re,ze,kt){var _t=i.unstable_now(),pn;if(typeof kt==\"object\"&&kt!==null){var Nn=kt.delay;typeof Nn==\"number\"&&Nn>0?pn=_t+Nn:pn=_t}else pn=_t;var gn;switch(Re){case F:gn=P;break;case R:gn=te;break;case E:gn=be;break;case N:gn=ye;break;case b:default:gn=me;break}var ha=pn+gn,fn={id:gt++,callback:ze,priorityLevel:Re,startTime:pn,expirationTime:ha,sortIndex:-1};return pn>_t?(fn.sortIndex=pn,p(ut,fn),A(Pe)===null&&fn===A(ut)&&(pt?La():pt=!0,sa(j,pn-_t))):(fn.sortIndex=ha,p(Pe,fn),!ke&&!dt&&(ke=!0,kn(le))),fn}function Kt(){}function Ct(){!ke&&!dt&&(ke=!0,kn(le))}function Wt(){return A(Pe)}function Rn(Re){Re.callback=null}function ma(){return qe}var yn=!1,Zn=null,Dn=-1,jn=u,ya=-1;function Nr(){var Re=i.unstable_now()-ya;return!(Re<jn)}function ja(){}function qn(Re){if(Re<0||Re>125){console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\");return}Re>0?jn=Math.floor(1e3/Re):jn=u}var Kn=function(){if(Zn!==null){var Re=i.unstable_now();ya=Re;var ze=!0,kt=!0;try{kt=Zn(ze,Re)}finally{kt?Ln():(yn=!1,Zn=null)}}else yn=!1},Ln;if(typeof ee==\"function\")Ln=function(){ee(Kn)};else if(typeof MessageChannel!=\"undefined\"){var la=new MessageChannel,dr=la.port2;la.port1.onmessage=Kn,Ln=function(){dr.postMessage(null)}}else Ln=function(){Ke(Kn,0)};function kn(Re){Zn=Re,yn||(yn=!0,Ln())}function sa(Re,ze){Dn=Ke(function(){Re(i.unstable_now())},ze)}function La(){de(Dn),Dn=-1}var pr=ja,wr=null;i.unstable_IdlePriority=E,i.unstable_ImmediatePriority=F,i.unstable_LowPriority=N,i.unstable_NormalPriority=b,i.unstable_Profiling=wr,i.unstable_UserBlockingPriority=R,i.unstable_cancelCallback=Rn,i.unstable_continueExecution=Ct,i.unstable_forceFrameRate=qn,i.unstable_getCurrentPriorityLevel=ma,i.unstable_getFirstCallbackNode=Wt,i.unstable_next=nt,i.unstable_pauseExecution=Kt,i.unstable_requestPaint=pr,i.unstable_runWithPriority=Ve,i.unstable_scheduleCallback=Ze,i.unstable_shouldYield=Nr,i.unstable_wrapCallback=Ye,typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error)}()}(gv)),gv}var vx;function Ux(){return vx||(vx=1,process.env.NODE_ENV===\"production\"?G0.exports=zk():G0.exports=Hk()),G0.exports}/**\n * @license React\n * react-dom.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var Sx;function Pk(){if(Sx)return Jr;Sx=1;var i=Q,o=Ux();function u(n){for(var a=\"https://reactjs.org/docs/error-decoder.html?invariant=\"+n,s=1;s<arguments.length;s++)a+=\"&args[]=\"+encodeURIComponent(arguments[s]);return\"Minified React error #\"+n+\"; visit \"+a+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}var p=new Set,A={};function U(n,a){m(n,a),m(n+\"Capture\",a)}function m(n,a){for(A[n]=a,n=0;n<a.length;n++)p.add(a[n])}var y=!(typeof window==\"undefined\"||typeof window.document==\"undefined\"||typeof window.document.createElement==\"undefined\"),K=Object.prototype.hasOwnProperty,F=/^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$/,R={},b={};function N(n){return K.call(b,n)?!0:K.call(R,n)?!1:F.test(n)?b[n]=!0:(R[n]=!0,!1)}function E(n,a,s,d){if(s!==null&&s.type===0)return!1;switch(typeof a){case\"function\":case\"symbol\":return!0;case\"boolean\":return d?!1:s!==null?!s.acceptsBooleans:(n=n.toLowerCase().slice(0,5),n!==\"data-\"&&n!==\"aria-\");default:return!1}}function O(n,a,s,d){if(a===null||typeof a==\"undefined\"||E(n,a,s,d))return!0;if(d)return!1;if(s!==null)switch(s.type){case 3:return!a;case 4:return a===!1;case 5:return isNaN(a);case 6:return isNaN(a)||1>a}return!1}function B(n,a,s,d,g,S,k){this.acceptsBooleans=a===2||a===3||a===4,this.attributeName=d,this.attributeNamespace=g,this.mustUseProperty=s,this.propertyName=n,this.type=a,this.sanitizeURL=S,this.removeEmptyString=k}var L={};\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach(function(n){L[n]=new B(n,0,!1,n,null,!1,!1)}),[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach(function(n){var a=n[0];L[a]=new B(a,1,!1,n[1],null,!1,!1)}),[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach(function(n){L[n]=new B(n,2,!1,n.toLowerCase(),null,!1,!1)}),[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach(function(n){L[n]=new B(n,2,!1,n,null,!1,!1)}),\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach(function(n){L[n]=new B(n,3,!1,n.toLowerCase(),null,!1,!1)}),[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach(function(n){L[n]=new B(n,3,!0,n,null,!1,!1)}),[\"capture\",\"download\"].forEach(function(n){L[n]=new B(n,4,!1,n,null,!1,!1)}),[\"cols\",\"rows\",\"size\",\"span\"].forEach(function(n){L[n]=new B(n,6,!1,n,null,!1,!1)}),[\"rowSpan\",\"start\"].forEach(function(n){L[n]=new B(n,5,!1,n.toLowerCase(),null,!1,!1)});var q=/[\\-:]([a-z])/g;function W(n){return n[1].toUpperCase()}\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach(function(n){var a=n.replace(q,W);L[a]=new B(a,1,!1,n,null,!1,!1)}),\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach(function(n){var a=n.replace(q,W);L[a]=new B(a,1,!1,n,\"http://www.w3.org/1999/xlink\",!1,!1)}),[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach(function(n){var a=n.replace(q,W);L[a]=new B(a,1,!1,n,\"http://www.w3.org/XML/1998/namespace\",!1,!1)}),[\"tabIndex\",\"crossOrigin\"].forEach(function(n){L[n]=new B(n,1,!1,n.toLowerCase(),null,!1,!1)}),L.xlinkHref=new B(\"xlinkHref\",1,!1,\"xlink:href\",\"http://www.w3.org/1999/xlink\",!0,!1),[\"src\",\"href\",\"action\",\"formAction\"].forEach(function(n){L[n]=new B(n,1,!1,n.toLowerCase(),null,!0,!0)});function Y(n,a,s,d){var g=L.hasOwnProperty(a)?L[a]:null;(g!==null?g.type!==0:d||!(2<a.length)||a[0]!==\"o\"&&a[0]!==\"O\"||a[1]!==\"n\"&&a[1]!==\"N\")&&(O(a,s,g,d)&&(s=null),d||g===null?N(a)&&(s===null?n.removeAttribute(a):n.setAttribute(a,\"\"+s)):g.mustUseProperty?n[g.propertyName]=s===null?g.type===3?!1:\"\":s:(a=g.attributeName,d=g.attributeNamespace,s===null?n.removeAttribute(a):(g=g.type,s=g===3||g===4&&s===!0?\"\":\"\"+s,d?n.setAttributeNS(d,a,s):n.setAttribute(a,s))))}var P=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,te=Symbol.for(\"react.element\"),me=Symbol.for(\"react.portal\"),ye=Symbol.for(\"react.fragment\"),be=Symbol.for(\"react.strict_mode\"),Pe=Symbol.for(\"react.profiler\"),ut=Symbol.for(\"react.provider\"),gt=Symbol.for(\"react.context\"),Ce=Symbol.for(\"react.forward_ref\"),qe=Symbol.for(\"react.suspense\"),dt=Symbol.for(\"react.suspense_list\"),ke=Symbol.for(\"react.memo\"),pt=Symbol.for(\"react.lazy\"),Ke=Symbol.for(\"react.offscreen\"),de=Symbol.iterator;function ee(n){return n===null||typeof n!=\"object\"?null:(n=de&&n[de]||n[\"@@iterator\"],typeof n==\"function\"?n:null)}var fe=Object.assign,j;function le(n){if(j===void 0)try{throw Error()}catch(s){var a=s.stack.trim().match(/\\n( *(at )?)/);j=a&&a[1]||\"\"}return`\n`+j+n}var $e=!1;function Ve(n,a){if(!n||$e)return\"\";$e=!0;var s=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(a)if(a=function(){throw Error()},Object.defineProperty(a.prototype,\"props\",{set:function(){throw Error()}}),typeof Reflect==\"object\"&&Reflect.construct){try{Reflect.construct(a,[])}catch(re){var d=re}Reflect.construct(n,[],a)}else{try{a.call()}catch(re){d=re}n.call(a.prototype)}else{try{throw Error()}catch(re){d=re}n()}}catch(re){if(re&&d&&typeof re.stack==\"string\"){for(var g=re.stack.split(`\n`),S=d.stack.split(`\n`),k=g.length-1,D=S.length-1;1<=k&&0<=D&&g[k]!==S[D];)D--;for(;1<=k&&0<=D;k--,D--)if(g[k]!==S[D]){if(k!==1||D!==1)do if(k--,D--,0>D||g[k]!==S[D]){var G=`\n`+g[k].replace(\" at new \",\" at \");return n.displayName&&G.includes(\"<anonymous>\")&&(G=G.replace(\"<anonymous>\",n.displayName)),G}while(1<=k&&0<=D);break}}}finally{$e=!1,Error.prepareStackTrace=s}return(n=n?n.displayName||n.name:\"\")?le(n):\"\"}function nt(n){switch(n.tag){case 5:return le(n.type);case 16:return le(\"Lazy\");case 13:return le(\"Suspense\");case 19:return le(\"SuspenseList\");case 0:case 2:case 15:return n=Ve(n.type,!1),n;case 11:return n=Ve(n.type.render,!1),n;case 1:return n=Ve(n.type,!0),n;default:return\"\"}}function Ye(n){if(n==null)return null;if(typeof n==\"function\")return n.displayName||n.name||null;if(typeof n==\"string\")return n;switch(n){case ye:return\"Fragment\";case me:return\"Portal\";case Pe:return\"Profiler\";case be:return\"StrictMode\";case qe:return\"Suspense\";case dt:return\"SuspenseList\"}if(typeof n==\"object\")switch(n.$$typeof){case gt:return(n.displayName||\"Context\")+\".Consumer\";case ut:return(n._context.displayName||\"Context\")+\".Provider\";case Ce:var a=n.render;return n=n.displayName,n||(n=a.displayName||a.name||\"\",n=n!==\"\"?\"ForwardRef(\"+n+\")\":\"ForwardRef\"),n;case ke:return a=n.displayName||null,a!==null?a:Ye(n.type)||\"Memo\";case pt:a=n._payload,n=n._init;try{return Ye(n(a))}catch(s){}}return null}function Ze(n){var a=n.type;switch(n.tag){case 24:return\"Cache\";case 9:return(a.displayName||\"Context\")+\".Consumer\";case 10:return(a._context.displayName||\"Context\")+\".Provider\";case 18:return\"DehydratedFragment\";case 11:return n=a.render,n=n.displayName||n.name||\"\",a.displayName||(n!==\"\"?\"ForwardRef(\"+n+\")\":\"ForwardRef\");case 7:return\"Fragment\";case 5:return a;case 4:return\"Portal\";case 3:return\"Root\";case 6:return\"Text\";case 16:return Ye(a);case 8:return a===be?\"StrictMode\":\"Mode\";case 22:return\"Offscreen\";case 12:return\"Profiler\";case 21:return\"Scope\";case 13:return\"Suspense\";case 19:return\"SuspenseList\";case 25:return\"TracingMarker\";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof a==\"function\")return a.displayName||a.name||null;if(typeof a==\"string\")return a}return null}function Kt(n){switch(typeof n){case\"boolean\":case\"number\":case\"string\":case\"undefined\":return n;case\"object\":return n;default:return\"\"}}function Ct(n){var a=n.type;return(n=n.nodeName)&&n.toLowerCase()===\"input\"&&(a===\"checkbox\"||a===\"radio\")}function Wt(n){var a=Ct(n)?\"checked\":\"value\",s=Object.getOwnPropertyDescriptor(n.constructor.prototype,a),d=\"\"+n[a];if(!n.hasOwnProperty(a)&&typeof s!=\"undefined\"&&typeof s.get==\"function\"&&typeof s.set==\"function\"){var g=s.get,S=s.set;return Object.defineProperty(n,a,{configurable:!0,get:function(){return g.call(this)},set:function(k){d=\"\"+k,S.call(this,k)}}),Object.defineProperty(n,a,{enumerable:s.enumerable}),{getValue:function(){return d},setValue:function(k){d=\"\"+k},stopTracking:function(){n._valueTracker=null,delete n[a]}}}}function Rn(n){n._valueTracker||(n._valueTracker=Wt(n))}function ma(n){if(!n)return!1;var a=n._valueTracker;if(!a)return!0;var s=a.getValue(),d=\"\";return n&&(d=Ct(n)?n.checked?\"true\":\"false\":n.value),n=d,n!==s?(a.setValue(n),!0):!1}function yn(n){if(n=n||(typeof document!=\"undefined\"?document:void 0),typeof n==\"undefined\")return null;try{return n.activeElement||n.body}catch(a){return n.body}}function Zn(n,a){var s=a.checked;return fe({},a,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:s!=null?s:n._wrapperState.initialChecked})}function Dn(n,a){var s=a.defaultValue==null?\"\":a.defaultValue,d=a.checked!=null?a.checked:a.defaultChecked;s=Kt(a.value!=null?a.value:s),n._wrapperState={initialChecked:d,initialValue:s,controlled:a.type===\"checkbox\"||a.type===\"radio\"?a.checked!=null:a.value!=null}}function jn(n,a){a=a.checked,a!=null&&Y(n,\"checked\",a,!1)}function ya(n,a){jn(n,a);var s=Kt(a.value),d=a.type;if(s!=null)d===\"number\"?(s===0&&n.value===\"\"||n.value!=s)&&(n.value=\"\"+s):n.value!==\"\"+s&&(n.value=\"\"+s);else if(d===\"submit\"||d===\"reset\"){n.removeAttribute(\"value\");return}a.hasOwnProperty(\"value\")?ja(n,a.type,s):a.hasOwnProperty(\"defaultValue\")&&ja(n,a.type,Kt(a.defaultValue)),a.checked==null&&a.defaultChecked!=null&&(n.defaultChecked=!!a.defaultChecked)}function Nr(n,a,s){if(a.hasOwnProperty(\"value\")||a.hasOwnProperty(\"defaultValue\")){var d=a.type;if(!(d!==\"submit\"&&d!==\"reset\"||a.value!==void 0&&a.value!==null))return;a=\"\"+n._wrapperState.initialValue,s||a===n.value||(n.value=a),n.defaultValue=a}s=n.name,s!==\"\"&&(n.name=\"\"),n.defaultChecked=!!n._wrapperState.initialChecked,s!==\"\"&&(n.name=s)}function ja(n,a,s){(a!==\"number\"||yn(n.ownerDocument)!==n)&&(s==null?n.defaultValue=\"\"+n._wrapperState.initialValue:n.defaultValue!==\"\"+s&&(n.defaultValue=\"\"+s))}var qn=Array.isArray;function Kn(n,a,s,d){if(n=n.options,a){a={};for(var g=0;g<s.length;g++)a[\"$\"+s[g]]=!0;for(s=0;s<n.length;s++)g=a.hasOwnProperty(\"$\"+n[s].value),n[s].selected!==g&&(n[s].selected=g),g&&d&&(n[s].defaultSelected=!0)}else{for(s=\"\"+Kt(s),a=null,g=0;g<n.length;g++){if(n[g].value===s){n[g].selected=!0,d&&(n[g].defaultSelected=!0);return}a!==null||n[g].disabled||(a=n[g])}a!==null&&(a.selected=!0)}}function Ln(n,a){if(a.dangerouslySetInnerHTML!=null)throw Error(u(91));return fe({},a,{value:void 0,defaultValue:void 0,children:\"\"+n._wrapperState.initialValue})}function la(n,a){var s=a.value;if(s==null){if(s=a.children,a=a.defaultValue,s!=null){if(a!=null)throw Error(u(92));if(qn(s)){if(1<s.length)throw Error(u(93));s=s[0]}a=s}a==null&&(a=\"\"),s=a}n._wrapperState={initialValue:Kt(s)}}function dr(n,a){var s=Kt(a.value),d=Kt(a.defaultValue);s!=null&&(s=\"\"+s,s!==n.value&&(n.value=s),a.defaultValue==null&&n.defaultValue!==s&&(n.defaultValue=s)),d!=null&&(n.defaultValue=\"\"+d)}function kn(n){var a=n.textContent;a===n._wrapperState.initialValue&&a!==\"\"&&a!==null&&(n.value=a)}function sa(n){switch(n){case\"svg\":return\"http://www.w3.org/2000/svg\";case\"math\":return\"http://www.w3.org/1998/Math/MathML\";default:return\"http://www.w3.org/1999/xhtml\"}}function La(n,a){return n==null||n===\"http://www.w3.org/1999/xhtml\"?sa(a):n===\"http://www.w3.org/2000/svg\"&&a===\"foreignObject\"?\"http://www.w3.org/1999/xhtml\":n}var pr,wr=function(n){return typeof MSApp!=\"undefined\"&&MSApp.execUnsafeLocalFunction?function(a,s,d,g){MSApp.execUnsafeLocalFunction(function(){return n(a,s,d,g)})}:n}(function(n,a){if(n.namespaceURI!==\"http://www.w3.org/2000/svg\"||\"innerHTML\"in n)n.innerHTML=a;else{for(pr=pr||document.createElement(\"div\"),pr.innerHTML=\"<svg>\"+a.valueOf().toString()+\"</svg>\",a=pr.firstChild;n.firstChild;)n.removeChild(n.firstChild);for(;a.firstChild;)n.appendChild(a.firstChild)}});function Re(n,a){if(a){var s=n.firstChild;if(s&&s===n.lastChild&&s.nodeType===3){s.nodeValue=a;return}}n.textContent=a}var ze={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},kt=[\"Webkit\",\"ms\",\"Moz\",\"O\"];Object.keys(ze).forEach(function(n){kt.forEach(function(a){a=a+n.charAt(0).toUpperCase()+n.substring(1),ze[a]=ze[n]})});function _t(n,a,s){return a==null||typeof a==\"boolean\"||a===\"\"?\"\":s||typeof a!=\"number\"||a===0||ze.hasOwnProperty(n)&&ze[n]?(\"\"+a).trim():a+\"px\"}function pn(n,a){n=n.style;for(var s in a)if(a.hasOwnProperty(s)){var d=s.indexOf(\"--\")===0,g=_t(s,a[s],d);s===\"float\"&&(s=\"cssFloat\"),d?n.setProperty(s,g):n[s]=g}}var Nn=fe({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function gn(n,a){if(a){if(Nn[n]&&(a.children!=null||a.dangerouslySetInnerHTML!=null))throw Error(u(137,n));if(a.dangerouslySetInnerHTML!=null){if(a.children!=null)throw Error(u(60));if(typeof a.dangerouslySetInnerHTML!=\"object\"||!(\"__html\"in a.dangerouslySetInnerHTML))throw Error(u(61))}if(a.style!=null&&typeof a.style!=\"object\")throw Error(u(62))}}function ha(n,a){if(n.indexOf(\"-\")===-1)return typeof a.is==\"string\";switch(n){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}var fn=null;function tn(n){return n=n.target||n.srcElement||window,n.correspondingUseElement&&(n=n.correspondingUseElement),n.nodeType===3?n.parentNode:n}var nn=null,Er=null,Oa=null;function Zr(n){if(n=et(n)){if(typeof nn!=\"function\")throw Error(u(280));var a=n.stateNode;a&&(a=En(a),nn(n.stateNode,n.type,a))}}function po(n){Er?Oa?Oa.push(n):Oa=[n]:Er=n}function Ll(){if(Er){var n=Er,a=Oa;if(Oa=Er=null,Zr(n),a)for(n=0;n<a.length;n++)Zr(a[n])}}function Ol(n,a){return n(a)}function Yo(){}var Go=!1;function Vl(n,a,s){if(Go)return n(a,s);Go=!0;try{return Ol(n,a,s)}finally{Go=!1,(Er!==null||Oa!==null)&&(Yo(),Ll())}}function Wa(n,a){var s=n.stateNode;if(s===null)return null;var d=En(s);if(d===null)return null;s=d[a];e:switch(a){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":(d=!d.disabled)||(n=n.type,d=!(n===\"button\"||n===\"input\"||n===\"select\"||n===\"textarea\")),n=!d;break e;default:n=!1}if(n)return null;if(s&&typeof s!=\"function\")throw Error(u(231,a,typeof s));return s}var Ja=!1;if(y)try{var Ka={};Object.defineProperty(Ka,\"passive\",{get:function(){Ja=!0}}),window.addEventListener(\"test\",Ka,Ka),window.removeEventListener(\"test\",Ka,Ka)}catch(n){Ja=!1}function Di(n,a,s,d,g,S,k,D,G){var re=Array.prototype.slice.call(arguments,3);try{a.apply(s,re)}catch(Ue){this.onError(Ue)}}var gi=!1,ji=null,Li=!1,I=null,he={onError:function(n){gi=!0,ji=n}};function Ee(n,a,s,d,g,S,k,D,G){gi=!1,ji=null,Di.apply(he,arguments)}function Ie(n,a,s,d,g,S,k,D,G){if(Ee.apply(this,arguments),gi){if(gi){var re=ji;gi=!1,ji=null}else throw Error(u(198));Li||(Li=!0,I=re)}}function xt(n){var a=n,s=n;if(n.alternate)for(;a.return;)a=a.return;else{n=a;do a=n,a.flags&4098&&(s=a.return),n=a.return;while(n)}return a.tag===3?s:null}function Ut(n){if(n.tag===13){var a=n.memoizedState;if(a===null&&(n=n.alternate,n!==null&&(a=n.memoizedState)),a!==null)return a.dehydrated}return null}function Bt(n){if(xt(n)!==n)throw Error(u(188))}function wt(n){var a=n.alternate;if(!a){if(a=xt(n),a===null)throw Error(u(188));return a!==n?null:n}for(var s=n,d=a;;){var g=s.return;if(g===null)break;var S=g.alternate;if(S===null){if(d=g.return,d!==null){s=d;continue}break}if(g.child===S.child){for(S=g.child;S;){if(S===s)return Bt(g),n;if(S===d)return Bt(g),a;S=S.sibling}throw Error(u(188))}if(s.return!==d.return)s=g,d=S;else{for(var k=!1,D=g.child;D;){if(D===s){k=!0,s=g,d=S;break}if(D===d){k=!0,d=g,s=S;break}D=D.sibling}if(!k){for(D=S.child;D;){if(D===s){k=!0,s=S,d=g;break}if(D===d){k=!0,d=S,s=g;break}D=D.sibling}if(!k)throw Error(u(189))}}if(s.alternate!==d)throw Error(u(190))}if(s.tag!==3)throw Error(u(188));return s.stateNode.current===s?n:a}function Yn(n){return n=wt(n),n!==null?mn(n):null}function mn(n){if(n.tag===5||n.tag===6)return n;for(n=n.child;n!==null;){var a=mn(n);if(a!==null)return a;n=n.sibling}return null}var vn=o.unstable_scheduleCallback,xa=o.unstable_cancelCallback,vi=o.unstable_shouldYield,Ui=o.unstable_requestPaint,Ft=o.unstable_now,Rt=o.unstable_getCurrentPriorityLevel,Si=o.unstable_ImmediatePriority,Il=o.unstable_UserBlockingPriority,ql=o.unstable_NormalPriority,Wo=o.unstable_LowPriority,Ys=o.unstable_IdlePriority,Jo=null,fr=null;function Hu(n){if(fr&&typeof fr.onCommitFiberRoot==\"function\")try{fr.onCommitFiberRoot(Jo,n,void 0,(n.current.flags&128)===128)}catch(a){}}var za=Math.clz32?Math.clz32:Gs,kd=Math.log,Nd=Math.LN2;function Gs(n){return n>>>=0,n===0?32:31-(kd(n)/Nd|0)|0}var zo=64,Mr=4194304;function yi(n){switch(n&-n){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return n&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return n&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return n}}function Ki(n,a){var s=n.pendingLanes;if(s===0)return 0;var d=0,g=n.suspendedLanes,S=n.pingedLanes,k=s&268435455;if(k!==0){var D=k&~g;D!==0?d=yi(D):(S&=k,S!==0&&(d=yi(S)))}else k=s&~g,k!==0?d=yi(k):S!==0&&(d=yi(S));if(d===0)return 0;if(a!==0&&a!==d&&!(a&g)&&(g=d&-d,S=a&-a,g>=S||g===16&&(S&4194240)!==0))return a;if(d&4&&(d|=s&16),a=n.entangledLanes,a!==0)for(n=n.entanglements,a&=d;0<a;)s=31-za(a),g=1<<s,d|=n[s],a&=~g;return d}function Ws(n,a){switch(n){case 1:case 2:case 4:return a+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return a+5e3;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return-1;case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Yl(n,a){for(var s=n.suspendedLanes,d=n.pingedLanes,g=n.expirationTimes,S=n.pendingLanes;0<S;){var k=31-za(S),D=1<<k,G=g[k];G===-1?(!(D&s)||D&d)&&(g[k]=Ws(D,a)):G<=a&&(n.expiredLanes|=D),S&=~D}}function Ho(n){return n=n.pendingLanes&-1073741825,n!==0?n:n&1073741824?1073741824:0}function Js(){var n=zo;return zo<<=1,!(zo&4194240)&&(zo=64),n}function zs(n){for(var a=[],s=0;31>s;s++)a.push(n);return a}function fo(n,a,s){n.pendingLanes|=a,a!==536870912&&(n.suspendedLanes=0,n.pingedLanes=0),n=n.eventTimes,a=31-za(a),n[a]=s}function Of(n,a){var s=n.pendingLanes&~a;n.pendingLanes=a,n.suspendedLanes=0,n.pingedLanes=0,n.expiredLanes&=a,n.mutableReadLanes&=a,n.entangledLanes&=a,a=n.entanglements;var d=n.eventTimes;for(n=n.expirationTimes;0<s;){var g=31-za(s),S=1<<g;a[g]=0,d[g]=-1,n[g]=-1,s&=~S}}function mo(n,a){var s=n.entangledLanes|=a;for(n=n.entanglements;s;){var d=31-za(s),g=1<<d;g&a|n[d]&a&&(n[d]|=a),s&=~g}}var Jt=0;function Hs(n){return n&=-n,1<n?4<n?n&268435455?16:536870912:4:1}var qt,Pu,Oi,vt,Ps,Fa=!1,Vi=[],Ha=null,Ii=null,Un=null,an=new Map,Po=new Map,ua=[],Pa=\"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit\".split(\" \");function Xr(n,a){switch(n){case\"focusin\":case\"focusout\":Ha=null;break;case\"dragenter\":case\"dragleave\":Ii=null;break;case\"mouseover\":case\"mouseout\":Un=null;break;case\"pointerover\":case\"pointerout\":an.delete(a.pointerId);break;case\"gotpointercapture\":case\"lostpointercapture\":Po.delete(a.pointerId)}}function Gl(n,a,s,d,g,S){return n===null||n.nativeEvent!==S?(n={blockedOn:a,domEventName:s,eventSystemFlags:d,nativeEvent:S,targetContainers:[g]},a!==null&&(a=et(a),a!==null&&Pu(a)),n):(n.eventSystemFlags|=d,a=n.targetContainers,g!==null&&a.indexOf(g)===-1&&a.push(g),n)}function Zu(n,a,s,d,g){switch(a){case\"focusin\":return Ha=Gl(Ha,n,a,s,d,g),!0;case\"dragenter\":return Ii=Gl(Ii,n,a,s,d,g),!0;case\"mouseover\":return Un=Gl(Un,n,a,s,d,g),!0;case\"pointerover\":var S=g.pointerId;return an.set(S,Gl(an.get(S)||null,n,a,s,d,g)),!0;case\"gotpointercapture\":return S=g.pointerId,Po.set(S,Gl(Po.get(S)||null,n,a,s,d,g)),!0}return!1}function Xu(n){var a=$l(n.target);if(a!==null){var s=xt(a);if(s!==null){if(a=s.tag,a===13){if(a=Ut(s),a!==null){n.blockedOn=a,Ps(n.priority,function(){Oi(s)});return}}else if(a===3&&s.stateNode.current.memoizedState.isDehydrated){n.blockedOn=s.tag===3?s.stateNode.containerInfo:null;return}}}n.blockedOn=null}function Zo(n){if(n.blockedOn!==null)return!1;for(var a=n.targetContainers;0<a.length;){var s=_s(n.domEventName,n.eventSystemFlags,a[0],n.nativeEvent);if(s===null){s=n.nativeEvent;var d=new s.constructor(s.type,s);fn=d,s.target.dispatchEvent(d),fn=null}else return a=et(s),a!==null&&Pu(a),n.blockedOn=s,!1;a.shift()}return!0}function Wl(n,a,s){Zo(n)&&s.delete(a)}function Vf(){Fa=!1,Ha!==null&&Zo(Ha)&&(Ha=null),Ii!==null&&Zo(Ii)&&(Ii=null),Un!==null&&Zo(Un)&&(Un=null),an.forEach(Wl),Po.forEach(Wl)}function _r(n,a){n.blockedOn===a&&(n.blockedOn=null,Fa||(Fa=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,Vf)))}function xi(n){function a(g){return _r(g,n)}if(0<Vi.length){_r(Vi[0],n);for(var s=1;s<Vi.length;s++){var d=Vi[s];d.blockedOn===n&&(d.blockedOn=null)}}for(Ha!==null&&_r(Ha,n),Ii!==null&&_r(Ii,n),Un!==null&&_r(Un,n),an.forEach(a),Po.forEach(a),s=0;s<ua.length;s++)d=ua[s],d.blockedOn===n&&(d.blockedOn=null);for(;0<ua.length&&(s=ua[0],s.blockedOn===null);)Xu(s),s.blockedOn===null&&ua.shift()}var qi=P.ReactCurrentBatchConfig,$r=!0;function Zs(n,a,s,d){var g=Jt,S=qi.transition;qi.transition=null;try{Jt=1,Xo(n,a,s,d)}finally{Jt=g,qi.transition=S}}function Xs(n,a,s,d){var g=Jt,S=qi.transition;qi.transition=null;try{Jt=4,Xo(n,a,s,d)}finally{Jt=g,qi.transition=S}}function Xo(n,a,s,d){if($r){var g=_s(n,a,s,d);if(g===null)qd(n,a,d,Jl,s),Xr(n,d);else if(Zu(g,n,a,s,d))d.stopPropagation();else if(Xr(n,d),a&4&&-1<Pa.indexOf(n)){for(;g!==null;){var S=et(g);if(S!==null&&qt(S),S=_s(n,a,s,d),S===null&&qd(n,a,d,Jl,s),S===g)break;g=S}g!==null&&d.stopPropagation()}else qd(n,a,d,null,s)}}var Jl=null;function _s(n,a,s,d){if(Jl=null,n=tn(d),n=$l(n),n!==null)if(a=xt(n),a===null)n=null;else if(s=a.tag,s===13){if(n=Ut(a),n!==null)return n;n=null}else if(s===3){if(a.stateNode.current.memoizedState.isDehydrated)return a.tag===3?a.stateNode.containerInfo:null;n=null}else a!==n&&(n=null);return Jl=n,null}function $s(n){switch(n){case\"cancel\":case\"click\":case\"close\":case\"contextmenu\":case\"copy\":case\"cut\":case\"auxclick\":case\"dblclick\":case\"dragend\":case\"dragstart\":case\"drop\":case\"focusin\":case\"focusout\":case\"input\":case\"invalid\":case\"keydown\":case\"keypress\":case\"keyup\":case\"mousedown\":case\"mouseup\":case\"paste\":case\"pause\":case\"play\":case\"pointercancel\":case\"pointerdown\":case\"pointerup\":case\"ratechange\":case\"reset\":case\"resize\":case\"seeked\":case\"submit\":case\"touchcancel\":case\"touchend\":case\"touchstart\":case\"volumechange\":case\"change\":case\"selectionchange\":case\"textInput\":case\"compositionstart\":case\"compositionend\":case\"compositionupdate\":case\"beforeblur\":case\"afterblur\":case\"beforeinput\":case\"blur\":case\"fullscreenchange\":case\"focus\":case\"hashchange\":case\"popstate\":case\"select\":case\"selectstart\":return 1;case\"drag\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"mousemove\":case\"mouseout\":case\"mouseover\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"scroll\":case\"toggle\":case\"touchmove\":case\"wheel\":case\"mouseenter\":case\"mouseleave\":case\"pointerenter\":case\"pointerleave\":return 4;case\"message\":switch(Rt()){case Si:return 1;case Il:return 4;case ql:case Wo:return 16;case Ys:return 536870912;default:return 16}default:return 16}}var Fi=null,C=null,V=null;function ae(){if(V)return V;var n,a=C,s=a.length,d,g=\"value\"in Fi?Fi.value:Fi.textContent,S=g.length;for(n=0;n<s&&a[n]===g[n];n++);var k=s-n;for(d=1;d<=k&&a[s-d]===g[S-d];d++);return V=g.slice(n,1<d?1-d:void 0)}function oe(n){var a=n.keyCode;return\"charCode\"in n?(n=n.charCode,n===0&&a===13&&(n=13)):n=a,n===10&&(n=13),32<=n||n===13?n:0}function Te(){return!0}function at(){return!1}function we(n){function a(s,d,g,S,k){this._reactName=s,this._targetInst=g,this.type=d,this.nativeEvent=S,this.target=k,this.currentTarget=null;for(var D in n)n.hasOwnProperty(D)&&(s=n[D],this[D]=s?s(S):S[D]);return this.isDefaultPrevented=(S.defaultPrevented!=null?S.defaultPrevented:S.returnValue===!1)?Te:at,this.isPropagationStopped=at,this}return fe(a.prototype,{preventDefault:function(){this.defaultPrevented=!0;var s=this.nativeEvent;s&&(s.preventDefault?s.preventDefault():typeof s.returnValue!=\"unknown\"&&(s.returnValue=!1),this.isDefaultPrevented=Te)},stopPropagation:function(){var s=this.nativeEvent;s&&(s.stopPropagation?s.stopPropagation():typeof s.cancelBubble!=\"unknown\"&&(s.cancelBubble=!0),this.isPropagationStopped=Te)},persist:function(){},isPersistent:Te}),a}var lt={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(n){return n.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Qt=we(lt),Yt=fe({},lt,{view:0,detail:0}),hn=we(Yt),rn,Nt,on,wn=fe({},Yt,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Wf,button:0,buttons:0,relatedTarget:function(n){return n.relatedTarget===void 0?n.fromElement===n.srcElement?n.toElement:n.fromElement:n.relatedTarget},movementX:function(n){return\"movementX\"in n?n.movementX:(n!==on&&(on&&n.type===\"mousemove\"?(rn=n.screenX-on.screenX,Nt=n.screenY-on.screenY):Nt=rn=0,on=n),rn)},movementY:function(n){return\"movementY\"in n?n.movementY:Nt}}),_o=we(wn),_u=fe({},wn,{dataTransfer:0}),ho=we(_u),$u=fe({},Yt,{relatedTarget:0}),zl=we($u),If=fe({},lt,{animationName:0,elapsedTime:0,pseudoElement:0}),wd=we(If),qf=fe({},lt,{clipboardData:function(n){return\"clipboardData\"in n?n.clipboardData:window.clipboardData}}),yh=we(qf),Yf=fe({},lt,{data:0}),Gf=we(Yf),Kh={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},xh={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"},_U={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function Ao(n){var a=this.nativeEvent;return a.getModifierState?a.getModifierState(n):(n=_U[n])?!!a[n]:!1}function Wf(){return Ao}var Jf=fe({},Yt,{key:function(n){if(n.key){var a=Kh[n.key]||n.key;if(a!==\"Unidentified\")return a}return n.type===\"keypress\"?(n=oe(n),n===13?\"Enter\":String.fromCharCode(n)):n.type===\"keydown\"||n.type===\"keyup\"?xh[n.keyCode]||\"Unidentified\":\"\"},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Wf,charCode:function(n){return n.type===\"keypress\"?oe(n):0},keyCode:function(n){return n.type===\"keydown\"||n.type===\"keyup\"?n.keyCode:0},which:function(n){return n.type===\"keypress\"?oe(n):n.type===\"keydown\"||n.type===\"keyup\"?n.keyCode:0}}),zf=we(Jf),Hf=fe({},wn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),Fh=we(Hf),Ed=fe({},Yt,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Wf}),Th=we(Ed),mr=fe({},lt,{propertyName:0,elapsedTime:0,pseudoElement:0}),go=we(mr),Xn=fe({},wn,{deltaX:function(n){return\"deltaX\"in n?n.deltaX:\"wheelDeltaX\"in n?-n.wheelDeltaX:0},deltaY:function(n){return\"deltaY\"in n?n.deltaY:\"wheelDeltaY\"in n?-n.wheelDeltaY:\"wheelDelta\"in n?-n.wheelDelta:0},deltaZ:0,deltaMode:0}),vo=we(Xn),Pf=[9,13,27,32],eu=y&&\"CompositionEvent\"in window,ec=null;y&&\"documentMode\"in document&&(ec=document.documentMode);var tc=y&&\"TextEvent\"in window&&!ec,Ch=y&&(!eu||ec&&8<ec&&11>=ec),bh=\" \",Md=!1;function Rh(n,a){switch(n){case\"keyup\":return Pf.indexOf(a.keyCode)!==-1;case\"keydown\":return a.keyCode!==229;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function kh(n){return n=n.detail,typeof n==\"object\"&&\"data\"in n?n.data:null}var tu=!1;function Nh(n,a){switch(n){case\"compositionend\":return kh(a);case\"keypress\":return a.which!==32?null:(Md=!0,bh);case\"textInput\":return n=a.data,n===bh&&Md?null:n;default:return null}}function $U(n,a){if(tu)return n===\"compositionend\"||!eu&&Rh(n,a)?(n=ae(),V=C=Fi=null,tu=!1,n):null;switch(n){case\"paste\":return null;case\"keypress\":if(!(a.ctrlKey||a.altKey||a.metaKey)||a.ctrlKey&&a.altKey){if(a.char&&1<a.char.length)return a.char;if(a.which)return String.fromCharCode(a.which)}return null;case\"compositionend\":return Ch&&a.locale!==\"ko\"?null:a.data;default:return null}}var eS={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function wh(n){var a=n&&n.nodeName&&n.nodeName.toLowerCase();return a===\"input\"?!!eS[n.type]:a===\"textarea\"}function Zf(n,a,s,d){po(d),a=lc(a,\"onChange\"),0<a.length&&(s=new Qt(\"onChange\",\"change\",null,s,d),n.push({event:s,listeners:a}))}var Yi=null,Hl=null;function Eh(n){Xl(n,0)}function nc(n){var a=Ci(n);if(ma(a))return n}function tS(n,a){if(n===\"change\")return a}var Mh=!1;if(y){var Xf;if(y){var _f=\"oninput\"in document;if(!_f){var Bh=document.createElement(\"div\");Bh.setAttribute(\"oninput\",\"return;\"),_f=typeof Bh.oninput==\"function\"}Xf=_f}else Xf=!1;Mh=Xf&&(!document.documentMode||9<document.documentMode)}function Qh(){Yi&&(Yi.detachEvent(\"onpropertychange\",Dh),Hl=Yi=null)}function Dh(n){if(n.propertyName===\"value\"&&nc(Hl)){var a=[];Zf(a,Hl,n,tn(n)),Vl(Eh,a)}}function nS(n,a,s){n===\"focusin\"?(Qh(),Yi=a,Hl=s,Yi.attachEvent(\"onpropertychange\",Dh)):n===\"focusout\"&&Qh()}function jh(n){if(n===\"selectionchange\"||n===\"keyup\"||n===\"keydown\")return nc(Hl)}function aS(n,a){if(n===\"click\")return nc(a)}function Lh(n,a){if(n===\"input\"||n===\"change\")return nc(a)}function rS(n,a){return n===a&&(n!==0||1/n===1/a)||n!==n&&a!==a}var Ti=typeof Object.is==\"function\"?Object.is:rS;function ac(n,a){if(Ti(n,a))return!0;if(typeof n!=\"object\"||n===null||typeof a!=\"object\"||a===null)return!1;var s=Object.keys(n),d=Object.keys(a);if(s.length!==d.length)return!1;for(d=0;d<s.length;d++){var g=s[d];if(!K.call(a,g)||!Ti(n[g],a[g]))return!1}return!0}function Oh(n){for(;n&&n.firstChild;)n=n.firstChild;return n}function Bd(n,a){var s=Oh(n);n=0;for(var d;s;){if(s.nodeType===3){if(d=n+s.textContent.length,n<=a&&d>=a)return{node:s,offset:a-n};n=d}e:{for(;s;){if(s.nextSibling){s=s.nextSibling;break e}s=s.parentNode}s=void 0}s=Oh(s)}}function $o(n,a){return n&&a?n===a?!0:n&&n.nodeType===3?!1:a&&a.nodeType===3?$o(n,a.parentNode):\"contains\"in n?n.contains(a):n.compareDocumentPosition?!!(n.compareDocumentPosition(a)&16):!1:!1}function rc(){for(var n=window,a=yn();a instanceof n.HTMLIFrameElement;){try{var s=typeof a.contentWindow.location.href==\"string\"}catch(d){s=!1}if(s)n=a.contentWindow;else break;a=yn(n.document)}return a}function Qd(n){var a=n&&n.nodeName&&n.nodeName.toLowerCase();return a&&(a===\"input\"&&(n.type===\"text\"||n.type===\"search\"||n.type===\"tel\"||n.type===\"url\"||n.type===\"password\")||a===\"textarea\"||n.contentEditable===\"true\")}function nu(n){var a=rc(),s=n.focusedElem,d=n.selectionRange;if(a!==s&&s&&s.ownerDocument&&$o(s.ownerDocument.documentElement,s)){if(d!==null&&Qd(s)){if(a=d.start,n=d.end,n===void 0&&(n=a),\"selectionStart\"in s)s.selectionStart=a,s.selectionEnd=Math.min(n,s.value.length);else if(n=(a=s.ownerDocument||document)&&a.defaultView||window,n.getSelection){n=n.getSelection();var g=s.textContent.length,S=Math.min(d.start,g);d=d.end===void 0?S:Math.min(d.end,g),!n.extend&&S>d&&(g=d,d=S,S=g),g=Bd(s,S);var k=Bd(s,d);g&&k&&(n.rangeCount!==1||n.anchorNode!==g.node||n.anchorOffset!==g.offset||n.focusNode!==k.node||n.focusOffset!==k.offset)&&(a=a.createRange(),a.setStart(g.node,g.offset),n.removeAllRanges(),S>d?(n.addRange(a),n.extend(k.node,k.offset)):(a.setEnd(k.node,k.offset),n.addRange(a)))}}for(a=[],n=s;n=n.parentNode;)n.nodeType===1&&a.push({element:n,left:n.scrollLeft,top:n.scrollTop});for(typeof s.focus==\"function\"&&s.focus(),s=0;s<a.length;s++)n=a[s],n.element.scrollLeft=n.left,n.element.scrollTop=n.top}}var iS=y&&\"documentMode\"in document&&11>=document.documentMode,au=null,$f=null,ic=null,em=!1;function tm(n,a,s){var d=s.window===s?s.document:s.nodeType===9?s:s.ownerDocument;em||au==null||au!==yn(d)||(d=au,\"selectionStart\"in d&&Qd(d)?d={start:d.selectionStart,end:d.selectionEnd}:(d=(d.ownerDocument&&d.ownerDocument.defaultView||window).getSelection(),d={anchorNode:d.anchorNode,anchorOffset:d.anchorOffset,focusNode:d.focusNode,focusOffset:d.focusOffset}),ic&&ac(ic,d)||(ic=d,d=lc($f,\"onSelect\"),0<d.length&&(a=new Qt(\"onSelect\",\"select\",null,a,s),n.push({event:a,listeners:d}),a.target=au)))}function Dd(n,a){var s={};return s[n.toLowerCase()]=a.toLowerCase(),s[\"Webkit\"+n]=\"webkit\"+a,s[\"Moz\"+n]=\"moz\"+a,s}var Pl={animationend:Dd(\"Animation\",\"AnimationEnd\"),animationiteration:Dd(\"Animation\",\"AnimationIteration\"),animationstart:Dd(\"Animation\",\"AnimationStart\"),transitionend:Dd(\"Transition\",\"TransitionEnd\")},Ta={},nm={};y&&(nm=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete Pl.animationend.animation,delete Pl.animationiteration.animation,delete Pl.animationstart.animation),\"TransitionEvent\"in window||delete Pl.transitionend.transition);function jd(n){if(Ta[n])return Ta[n];if(!Pl[n])return n;var a=Pl[n],s;for(s in a)if(a.hasOwnProperty(s)&&s in nm)return Ta[n]=a[s];return n}var Vh=jd(\"animationend\"),Ih=jd(\"animationiteration\"),qh=jd(\"animationstart\"),Yh=jd(\"transitionend\"),am=new Map,Ld=\"abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel\".split(\" \");function ei(n,a){am.set(n,a),U(a,[n])}for(var rm=0;rm<Ld.length;rm++){var Zl=Ld[rm],oS=Zl.toLowerCase(),lS=Zl[0].toUpperCase()+Zl.slice(1);ei(oS,\"on\"+lS)}ei(Vh,\"onAnimationEnd\"),ei(Ih,\"onAnimationIteration\"),ei(qh,\"onAnimationStart\"),ei(\"dblclick\",\"onDoubleClick\"),ei(\"focusin\",\"onFocus\"),ei(\"focusout\",\"onBlur\"),ei(Yh,\"onTransitionEnd\"),m(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]),m(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]),m(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]),m(\"onPointerLeave\",[\"pointerout\",\"pointerover\"]),U(\"onChange\",\"change click focusin focusout input keydown keyup selectionchange\".split(\" \")),U(\"onSelect\",\"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\" \")),U(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]),U(\"onCompositionEnd\",\"compositionend focusout keydown keypress keyup mousedown\".split(\" \")),U(\"onCompositionStart\",\"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")),U(\"onCompositionUpdate\",\"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \"));var oc=\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),im=new Set(\"cancel close invalid load scroll toggle\".split(\" \").concat(oc));function Od(n,a,s){var d=n.type||\"unknown-event\";n.currentTarget=s,Ie(d,a,void 0,n),n.currentTarget=null}function Xl(n,a){a=(a&4)!==0;for(var s=0;s<n.length;s++){var d=n[s],g=d.event;d=d.listeners;e:{var S=void 0;if(a)for(var k=d.length-1;0<=k;k--){var D=d[k],G=D.instance,re=D.currentTarget;if(D=D.listener,G!==S&&g.isPropagationStopped())break e;Od(g,D,re),S=G}else for(k=0;k<d.length;k++){if(D=d[k],G=D.instance,re=D.currentTarget,D=D.listener,G!==S&&g.isPropagationStopped())break e;Od(g,D,re),S=G}}}if(Li)throw n=I,Li=!1,I=null,n}function $t(n,a){var s=a[cc];s===void 0&&(s=a[cc]=new Set);var d=n+\"__bubble\";s.has(d)||(Gh(a,n,2,!1),s.add(d))}function Vd(n,a,s){var d=0;a&&(d|=4),Gh(s,n,d,a)}var Id=\"_reactListening\"+Math.random().toString(36).slice(2);function ru(n){if(!n[Id]){n[Id]=!0,p.forEach(function(s){s!==\"selectionchange\"&&(im.has(s)||Vd(s,!1,n),Vd(s,!0,n))});var a=n.nodeType===9?n:n.ownerDocument;a===null||a[Id]||(a[Id]=!0,Vd(\"selectionchange\",!1,a))}}function Gh(n,a,s,d){switch($s(a)){case 1:var g=Zs;break;case 4:g=Xs;break;default:g=Xo}s=g.bind(null,a,s,n),g=void 0,!Ja||a!==\"touchstart\"&&a!==\"touchmove\"&&a!==\"wheel\"||(g=!0),d?g!==void 0?n.addEventListener(a,s,{capture:!0,passive:g}):n.addEventListener(a,s,!0):g!==void 0?n.addEventListener(a,s,{passive:g}):n.addEventListener(a,s,!1)}function qd(n,a,s,d,g){var S=d;if(!(a&1)&&!(a&2)&&d!==null)e:for(;;){if(d===null)return;var k=d.tag;if(k===3||k===4){var D=d.stateNode.containerInfo;if(D===g||D.nodeType===8&&D.parentNode===g)break;if(k===4)for(k=d.return;k!==null;){var G=k.tag;if((G===3||G===4)&&(G=k.stateNode.containerInfo,G===g||G.nodeType===8&&G.parentNode===g))return;k=k.return}for(;D!==null;){if(k=$l(D),k===null)return;if(G=k.tag,G===5||G===6){d=S=k;continue e}D=D.parentNode}}d=d.return}Vl(function(){var re=S,Ue=tn(s),xe=[];e:{var ge=am.get(n);if(ge!==void 0){var De=Qt,Ge=n;switch(n){case\"keypress\":if(oe(s)===0)break e;case\"keydown\":case\"keyup\":De=zf;break;case\"focusin\":Ge=\"focus\",De=zl;break;case\"focusout\":Ge=\"blur\",De=zl;break;case\"beforeblur\":case\"afterblur\":De=zl;break;case\"click\":if(s.button===2)break e;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":De=_o;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":De=ho;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":De=Th;break;case Vh:case Ih:case qh:De=wd;break;case Yh:De=go;break;case\"scroll\":De=hn;break;case\"wheel\":De=vo;break;case\"copy\":case\"cut\":case\"paste\":De=yh;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":De=Fh}var He=(a&4)!==0,Hn=!He&&n===\"scroll\",Z=He?ge!==null?ge+\"Capture\":null:ge;He=[];for(var z=re,$;z!==null;){$=z;var Se=$.stateNode;if($.tag===5&&Se!==null&&($=Se,Z!==null&&(Se=Wa(z,Z),Se!=null&&He.push(iu(z,Se,$)))),Hn)break;z=z.return}0<He.length&&(ge=new De(ge,Ge,null,s,Ue),xe.push({event:ge,listeners:He}))}}if(!(a&7)){e:{if(ge=n===\"mouseover\"||n===\"pointerover\",De=n===\"mouseout\"||n===\"pointerout\",ge&&s!==fn&&(Ge=s.relatedTarget||s.fromElement)&&($l(Ge)||Ge[Uo]))break e;if((De||ge)&&(ge=Ue.window===Ue?Ue:(ge=Ue.ownerDocument)?ge.defaultView||ge.parentWindow:window,De?(Ge=s.relatedTarget||s.toElement,De=re,Ge=Ge?$l(Ge):null,Ge!==null&&(Hn=xt(Ge),Ge!==Hn||Ge.tag!==5&&Ge.tag!==6)&&(Ge=null)):(De=null,Ge=re),De!==Ge)){if(He=_o,Se=\"onMouseLeave\",Z=\"onMouseEnter\",z=\"mouse\",(n===\"pointerout\"||n===\"pointerover\")&&(He=Fh,Se=\"onPointerLeave\",Z=\"onPointerEnter\",z=\"pointer\"),Hn=De==null?ge:Ci(De),$=Ge==null?ge:Ci(Ge),ge=new He(Se,z+\"leave\",De,s,Ue),ge.target=Hn,ge.relatedTarget=$,Se=null,$l(Ue)===re&&(He=new He(Z,z+\"enter\",Ge,s,Ue),He.target=$,He.relatedTarget=Hn,Se=He),Hn=Se,De&&Ge)t:{for(He=De,Z=Ge,z=0,$=He;$;$=el($))z++;for($=0,Se=Z;Se;Se=el(Se))$++;for(;0<z-$;)He=el(He),z--;for(;0<$-z;)Z=el(Z),$--;for(;z--;){if(He===Z||Z!==null&&He===Z.alternate)break t;He=el(He),Z=el(Z)}He=null}else He=null;De!==null&&Wh(xe,ge,De,He,!1),Ge!==null&&Hn!==null&&Wh(xe,Hn,Ge,He,!0)}}e:{if(ge=re?Ci(re):window,De=ge.nodeName&&ge.nodeName.toLowerCase(),De===\"select\"||De===\"input\"&&ge.type===\"file\")var We=tS;else if(wh(ge))if(Mh)We=Lh;else{We=jh;var ot=nS}else(De=ge.nodeName)&&De.toLowerCase()===\"input\"&&(ge.type===\"checkbox\"||ge.type===\"radio\")&&(We=aS);if(We&&(We=We(n,re))){Zf(xe,We,s,Ue);break e}ot&&ot(n,ge,re),n===\"focusout\"&&(ot=ge._wrapperState)&&ot.controlled&&ge.type===\"number\"&&ja(ge,\"number\",ge.value)}switch(ot=re?Ci(re):window,n){case\"focusin\":(wh(ot)||ot.contentEditable===\"true\")&&(au=ot,$f=re,ic=null);break;case\"focusout\":ic=$f=au=null;break;case\"mousedown\":em=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":em=!1,tm(xe,s,Ue);break;case\"selectionchange\":if(iS)break;case\"keydown\":case\"keyup\":tm(xe,s,Ue)}var st;if(eu)e:{switch(n){case\"compositionstart\":var At=\"onCompositionStart\";break e;case\"compositionend\":At=\"onCompositionEnd\";break e;case\"compositionupdate\":At=\"onCompositionUpdate\";break e}At=void 0}else tu?Rh(n,s)&&(At=\"onCompositionEnd\"):n===\"keydown\"&&s.keyCode===229&&(At=\"onCompositionStart\");At&&(Ch&&s.locale!==\"ko\"&&(tu||At!==\"onCompositionStart\"?At===\"onCompositionEnd\"&&tu&&(st=ae()):(Fi=Ue,C=\"value\"in Fi?Fi.value:Fi.textContent,tu=!0)),ot=lc(re,At),0<ot.length&&(At=new Gf(At,n,null,s,Ue),xe.push({event:At,listeners:ot}),st?At.data=st:(st=kh(s),st!==null&&(At.data=st)))),(st=tc?Nh(n,s):$U(n,s))&&(re=lc(re,\"onBeforeInput\"),0<re.length&&(Ue=new Gf(\"onBeforeInput\",\"beforeinput\",null,s,Ue),xe.push({event:Ue,listeners:re}),Ue.data=st))}Xl(xe,a)})}function iu(n,a,s){return{instance:n,listener:a,currentTarget:s}}function lc(n,a){for(var s=a+\"Capture\",d=[];n!==null;){var g=n,S=g.stateNode;g.tag===5&&S!==null&&(g=S,S=Wa(n,s),S!=null&&d.unshift(iu(n,S,g)),S=Wa(n,a),S!=null&&d.push(iu(n,S,g))),n=n.return}return d}function el(n){if(n===null)return null;do n=n.return;while(n&&n.tag!==5);return n||null}function Wh(n,a,s,d,g){for(var S=a._reactName,k=[];s!==null&&s!==d;){var D=s,G=D.alternate,re=D.stateNode;if(G!==null&&G===d)break;D.tag===5&&re!==null&&(D=re,g?(G=Wa(s,S),G!=null&&k.unshift(iu(s,G,D))):g||(G=Wa(s,S),G!=null&&k.push(iu(s,G,D)))),s=s.return}k.length!==0&&n.push({event:a,listeners:k})}var Jh=/\\r\\n?/g,sS=/\\u0000|\\uFFFD/g;function zh(n){return(typeof n==\"string\"?n:\"\"+n).replace(Jh,`\n`).replace(sS,\"\")}function Yd(n,a,s){if(a=zh(a),zh(n)!==a&&s)throw Error(u(425))}function tl(){}var sc=null,_l=null;function Gd(n,a){return n===\"textarea\"||n===\"noscript\"||typeof a.children==\"string\"||typeof a.children==\"number\"||typeof a.dangerouslySetInnerHTML==\"object\"&&a.dangerouslySetInnerHTML!==null&&a.dangerouslySetInnerHTML.__html!=null}var Wd=typeof setTimeout==\"function\"?setTimeout:void 0,om=typeof clearTimeout==\"function\"?clearTimeout:void 0,Hh=typeof Promise==\"function\"?Promise:void 0,ou=typeof queueMicrotask==\"function\"?queueMicrotask:typeof Hh!=\"undefined\"?function(n){return Hh.resolve(null).then(n).catch(Jd)}:Wd;function Jd(n){setTimeout(function(){throw n})}function lu(n,a){var s=a,d=0;do{var g=s.nextSibling;if(n.removeChild(s),g&&g.nodeType===8)if(s=g.data,s===\"/$\"){if(d===0){n.removeChild(g),xi(a);return}d--}else s!==\"$\"&&s!==\"$?\"&&s!==\"$!\"||d++;s=g}while(s);xi(a)}function Gi(n){for(;n!=null;n=n.nextSibling){var a=n.nodeType;if(a===1||a===3)break;if(a===8){if(a=n.data,a===\"$\"||a===\"$!\"||a===\"$?\")break;if(a===\"/$\")return null}}return n}function Ph(n){n=n.previousSibling;for(var a=0;n;){if(n.nodeType===8){var s=n.data;if(s===\"$\"||s===\"$!\"||s===\"$?\"){if(a===0)return n;a--}else s===\"/$\"&&a++}n=n.previousSibling}return null}var nl=Math.random().toString(36).slice(2),Wi=\"__reactFiber$\"+nl,uc=\"__reactProps$\"+nl,Uo=\"__reactContainer$\"+nl,cc=\"__reactEvents$\"+nl,su=\"__reactListeners$\"+nl,uS=\"__reactHandles$\"+nl;function $l(n){var a=n[Wi];if(a)return a;for(var s=n.parentNode;s;){if(a=s[Uo]||s[Wi]){if(s=a.alternate,a.child!==null||s!==null&&s.child!==null)for(n=Ph(n);n!==null;){if(s=n[Wi])return s;n=Ph(n)}return a}n=s,s=n.parentNode}return null}function et(n){return n=n[Wi]||n[Uo],!n||n.tag!==5&&n.tag!==6&&n.tag!==13&&n.tag!==3?null:n}function Ci(n){if(n.tag===5||n.tag===6)return n.stateNode;throw Error(u(33))}function En(n){return n[uc]||null}var jt=[],ti=-1;function ni(n){return{current:n}}function An(n){0>ti||(n.current=jt[ti],jt[ti]=null,ti--)}function _e(n,a){ti++,jt[ti]=n.current,n.current=a}var Va={},On=ni(Va),ca=ni(!1),hr=Va;function Ar(n,a){var s=n.type.contextTypes;if(!s)return Va;var d=n.stateNode;if(d&&d.__reactInternalMemoizedUnmaskedChildContext===a)return d.__reactInternalMemoizedMaskedChildContext;var g={},S;for(S in s)g[S]=a[S];return d&&(n=n.stateNode,n.__reactInternalMemoizedUnmaskedChildContext=a,n.__reactInternalMemoizedMaskedChildContext=g),g}function _n(n){return n=n.childContextTypes,n!=null}function uu(){An(ca),An(On)}function Zh(n,a,s){if(On.current!==Va)throw Error(u(168));_e(On,a),_e(ca,s)}function dc(n,a,s){var d=n.stateNode;if(a=a.childContextTypes,typeof d.getChildContext!=\"function\")return s;d=d.getChildContext();for(var g in d)if(!(g in a))throw Error(u(108,Ze(n)||\"Unknown\",g));return fe({},s,d)}function Aa(n){return n=(n=n.stateNode)&&n.__reactInternalMemoizedMergedChildContext||Va,hr=On.current,_e(On,n),_e(ca,ca.current),!0}function zd(n,a,s){var d=n.stateNode;if(!d)throw Error(u(169));s?(n=dc(n,a,hr),d.__reactInternalMemoizedMergedChildContext=n,An(ca),An(On),_e(On,n)):An(ca),_e(ca,s)}var Ji=null,cu=!1,So=!1;function Hd(n){Ji===null?Ji=[n]:Ji.push(n)}function al(n){cu=!0,Hd(n)}function zi(){if(!So&&Ji!==null){So=!0;var n=0,a=Jt;try{var s=Ji;for(Jt=1;n<s.length;n++){var d=s[n];do d=d(!0);while(d!==null)}Ji=null,cu=!1}catch(g){throw Ji!==null&&(Ji=Ji.slice(n+1)),vn(Si,zi),g}finally{Jt=a,So=!1}}return null}var rl=[],il=0,ol=null,yo=0,$n=[],ai=0,Br=null,Hi=1,Pi=\"\";function es(n,a){rl[il++]=yo,rl[il++]=ol,ol=n,yo=a}function Xh(n,a,s){$n[ai++]=Hi,$n[ai++]=Pi,$n[ai++]=Br,Br=n;var d=Hi;n=Pi;var g=32-za(d)-1;d&=~(1<<g),s+=1;var S=32-za(a)+g;if(30<S){var k=g-g%5;S=(d&(1<<k)-1).toString(32),d>>=k,g-=k,Hi=1<<32-za(a)+g|s<<g|d,Pi=S+n}else Hi=1<<S|s<<g|d,Pi=n}function Pd(n){n.return!==null&&(es(n,1),Xh(n,1,0))}function Zd(n){for(;n===ol;)ol=rl[--il],rl[il]=null,yo=rl[--il],rl[il]=null;for(;n===Br;)Br=$n[--ai],$n[ai]=null,Pi=$n[--ai],$n[ai]=null,Hi=$n[--ai],$n[ai]=null}var gr=null,vr=null,xn=!1,ri=null;function lm(n,a){var s=ui(5,null,null,0);s.elementType=\"DELETED\",s.stateNode=a,s.return=n,a=n.deletions,a===null?(n.deletions=[s],n.flags|=16):a.push(s)}function _h(n,a){switch(n.tag){case 5:var s=n.type;return a=a.nodeType!==1||s.toLowerCase()!==a.nodeName.toLowerCase()?null:a,a!==null?(n.stateNode=a,gr=n,vr=Gi(a.firstChild),!0):!1;case 6:return a=n.pendingProps===\"\"||a.nodeType!==3?null:a,a!==null?(n.stateNode=a,gr=n,vr=null,!0):!1;case 13:return a=a.nodeType!==8?null:a,a!==null?(s=Br!==null?{id:Hi,overflow:Pi}:null,n.memoizedState={dehydrated:a,treeContext:s,retryLane:1073741824},s=ui(18,null,null,0),s.stateNode=a,s.return=n,n.child=s,gr=n,vr=null,!0):!1;default:return!1}}function sm(n){return(n.mode&1)!==0&&(n.flags&128)===0}function um(n){if(xn){var a=vr;if(a){var s=a;if(!_h(n,a)){if(sm(n))throw Error(u(418));a=Gi(s.nextSibling);var d=gr;a&&_h(n,a)?lm(d,s):(n.flags=n.flags&-4097|2,xn=!1,gr=n)}}else{if(sm(n))throw Error(u(418));n.flags=n.flags&-4097|2,xn=!1,gr=n}}}function da(n){for(n=n.return;n!==null&&n.tag!==5&&n.tag!==3&&n.tag!==13;)n=n.return;gr=n}function Xd(n){if(n!==gr)return!1;if(!xn)return da(n),xn=!0,!1;var a;if((a=n.tag!==3)&&!(a=n.tag!==5)&&(a=n.type,a=a!==\"head\"&&a!==\"body\"&&!Gd(n.type,n.memoizedProps)),a&&(a=vr)){if(sm(n))throw pc(),Error(u(418));for(;a;)lm(n,a),a=Gi(a.nextSibling)}if(da(n),n.tag===13){if(n=n.memoizedState,n=n!==null?n.dehydrated:null,!n)throw Error(u(317));e:{for(n=n.nextSibling,a=0;n;){if(n.nodeType===8){var s=n.data;if(s===\"/$\"){if(a===0){vr=Gi(n.nextSibling);break e}a--}else s!==\"$\"&&s!==\"$!\"&&s!==\"$?\"||a++}n=n.nextSibling}vr=null}}else vr=gr?Gi(n.stateNode.nextSibling):null;return!0}function pc(){for(var n=vr;n;)n=Gi(n.nextSibling)}function ll(){vr=gr=null,xn=!1}function Ko(n){ri===null?ri=[n]:ri.push(n)}var cS=P.ReactCurrentBatchConfig;function ts(n,a,s){if(n=s.ref,n!==null&&typeof n!=\"function\"&&typeof n!=\"object\"){if(s._owner){if(s=s._owner,s){if(s.tag!==1)throw Error(u(309));var d=s.stateNode}if(!d)throw Error(u(147,n));var g=d,S=\"\"+n;return a!==null&&a.ref!==null&&typeof a.ref==\"function\"&&a.ref._stringRef===S?a.ref:(a=function(k){var D=g.refs;k===null?delete D[S]:D[S]=k},a._stringRef=S,a)}if(typeof n!=\"string\")throw Error(u(284));if(!s._owner)throw Error(u(290,n))}return n}function _d(n,a){throw n=Object.prototype.toString.call(a),Error(u(31,n===\"[object Object]\"?\"object with keys {\"+Object.keys(a).join(\", \")+\"}\":n))}function $h(n){var a=n._init;return a(n._payload)}function ns(n){function a(Z,z){if(n){var $=Z.deletions;$===null?(Z.deletions=[z],Z.flags|=16):$.push(z)}}function s(Z,z){if(!n)return null;for(;z!==null;)a(Z,z),z=z.sibling;return null}function d(Z,z){for(Z=new Map;z!==null;)z.key!==null?Z.set(z.key,z):Z.set(z.index,z),z=z.sibling;return Z}function g(Z,z){return Z=hl(Z,z),Z.index=0,Z.sibling=null,Z}function S(Z,z,$){return Z.index=$,n?($=Z.alternate,$!==null?($=$.index,$<z?(Z.flags|=2,z):$):(Z.flags|=2,z)):(Z.flags|=1048576,z)}function k(Z){return n&&Z.alternate===null&&(Z.flags|=2),Z}function D(Z,z,$,Se){return z===null||z.tag!==6?(z=Vm($,Z.mode,Se),z.return=Z,z):(z=g(z,$),z.return=Z,z)}function G(Z,z,$,Se){var We=$.type;return We===ye?Ue(Z,z,$.props.children,Se,$.key):z!==null&&(z.elementType===We||typeof We==\"object\"&&We!==null&&We.$$typeof===pt&&$h(We)===z.type)?(Se=g(z,$.props),Se.ref=ts(Z,z,$),Se.return=Z,Se):(Se=qc($.type,$.key,$.props,null,Z.mode,Se),Se.ref=ts(Z,z,$),Se.return=Z,Se)}function re(Z,z,$,Se){return z===null||z.tag!==4||z.stateNode.containerInfo!==$.containerInfo||z.stateNode.implementation!==$.implementation?(z=wp($,Z.mode,Se),z.return=Z,z):(z=g(z,$.children||[]),z.return=Z,z)}function Ue(Z,z,$,Se,We){return z===null||z.tag!==7?(z=Ro($,Z.mode,Se,We),z.return=Z,z):(z=g(z,$),z.return=Z,z)}function xe(Z,z,$){if(typeof z==\"string\"&&z!==\"\"||typeof z==\"number\")return z=Vm(\"\"+z,Z.mode,$),z.return=Z,z;if(typeof z==\"object\"&&z!==null){switch(z.$$typeof){case te:return $=qc(z.type,z.key,z.props,null,Z.mode,$),$.ref=ts(Z,null,z),$.return=Z,$;case me:return z=wp(z,Z.mode,$),z.return=Z,z;case pt:var Se=z._init;return xe(Z,Se(z._payload),$)}if(qn(z)||ee(z))return z=Ro(z,Z.mode,$,null),z.return=Z,z;_d(Z,z)}return null}function ge(Z,z,$,Se){var We=z!==null?z.key:null;if(typeof $==\"string\"&&$!==\"\"||typeof $==\"number\")return We!==null?null:D(Z,z,\"\"+$,Se);if(typeof $==\"object\"&&$!==null){switch($.$$typeof){case te:return $.key===We?G(Z,z,$,Se):null;case me:return $.key===We?re(Z,z,$,Se):null;case pt:return We=$._init,ge(Z,z,We($._payload),Se)}if(qn($)||ee($))return We!==null?null:Ue(Z,z,$,Se,null);_d(Z,$)}return null}function De(Z,z,$,Se,We){if(typeof Se==\"string\"&&Se!==\"\"||typeof Se==\"number\")return Z=Z.get($)||null,D(z,Z,\"\"+Se,We);if(typeof Se==\"object\"&&Se!==null){switch(Se.$$typeof){case te:return Z=Z.get(Se.key===null?$:Se.key)||null,G(z,Z,Se,We);case me:return Z=Z.get(Se.key===null?$:Se.key)||null,re(z,Z,Se,We);case pt:var ot=Se._init;return De(Z,z,$,ot(Se._payload),We)}if(qn(Se)||ee(Se))return Z=Z.get($)||null,Ue(z,Z,Se,We,null);_d(z,Se)}return null}function Ge(Z,z,$,Se){for(var We=null,ot=null,st=z,At=z=0,Ua=null;st!==null&&At<$.length;At++){st.index>At?(Ua=st,st=null):Ua=st.sibling;var Pt=ge(Z,st,$[At],Se);if(Pt===null){st===null&&(st=Ua);break}n&&st&&Pt.alternate===null&&a(Z,st),z=S(Pt,z,At),ot===null?We=Pt:ot.sibling=Pt,ot=Pt,st=Ua}if(At===$.length)return s(Z,st),xn&&es(Z,At),We;if(st===null){for(;At<$.length;At++)st=xe(Z,$[At],Se),st!==null&&(z=S(st,z,At),ot===null?We=st:ot.sibling=st,ot=st);return xn&&es(Z,At),We}for(st=d(Z,st);At<$.length;At++)Ua=De(st,Z,At,$[At],Se),Ua!==null&&(n&&Ua.alternate!==null&&st.delete(Ua.key===null?At:Ua.key),z=S(Ua,z,At),ot===null?We=Ua:ot.sibling=Ua,ot=Ua);return n&&st.forEach(function(vl){return a(Z,vl)}),xn&&es(Z,At),We}function He(Z,z,$,Se){var We=ee($);if(typeof We!=\"function\")throw Error(u(150));if($=We.call($),$==null)throw Error(u(151));for(var ot=We=null,st=z,At=z=0,Ua=null,Pt=$.next();st!==null&&!Pt.done;At++,Pt=$.next()){st.index>At?(Ua=st,st=null):Ua=st.sibling;var vl=ge(Z,st,Pt.value,Se);if(vl===null){st===null&&(st=Ua);break}n&&st&&vl.alternate===null&&a(Z,st),z=S(vl,z,At),ot===null?We=vl:ot.sibling=vl,ot=vl,st=Ua}if(Pt.done)return s(Z,st),xn&&es(Z,At),We;if(st===null){for(;!Pt.done;At++,Pt=$.next())Pt=xe(Z,Pt.value,Se),Pt!==null&&(z=S(Pt,z,At),ot===null?We=Pt:ot.sibling=Pt,ot=Pt);return xn&&es(Z,At),We}for(st=d(Z,st);!Pt.done;At++,Pt=$.next())Pt=De(st,Z,At,Pt.value,Se),Pt!==null&&(n&&Pt.alternate!==null&&st.delete(Pt.key===null?At:Pt.key),z=S(Pt,z,At),ot===null?We=Pt:ot.sibling=Pt,ot=Pt);return n&&st.forEach(function(QA){return a(Z,QA)}),xn&&es(Z,At),We}function Hn(Z,z,$,Se){if(typeof $==\"object\"&&$!==null&&$.type===ye&&$.key===null&&($=$.props.children),typeof $==\"object\"&&$!==null){switch($.$$typeof){case te:e:{for(var We=$.key,ot=z;ot!==null;){if(ot.key===We){if(We=$.type,We===ye){if(ot.tag===7){s(Z,ot.sibling),z=g(ot,$.props.children),z.return=Z,Z=z;break e}}else if(ot.elementType===We||typeof We==\"object\"&&We!==null&&We.$$typeof===pt&&$h(We)===ot.type){s(Z,ot.sibling),z=g(ot,$.props),z.ref=ts(Z,ot,$),z.return=Z,Z=z;break e}s(Z,ot);break}else a(Z,ot);ot=ot.sibling}$.type===ye?(z=Ro($.props.children,Z.mode,Se,$.key),z.return=Z,Z=z):(Se=qc($.type,$.key,$.props,null,Z.mode,Se),Se.ref=ts(Z,z,$),Se.return=Z,Z=Se)}return k(Z);case me:e:{for(ot=$.key;z!==null;){if(z.key===ot)if(z.tag===4&&z.stateNode.containerInfo===$.containerInfo&&z.stateNode.implementation===$.implementation){s(Z,z.sibling),z=g(z,$.children||[]),z.return=Z,Z=z;break e}else{s(Z,z);break}else a(Z,z);z=z.sibling}z=wp($,Z.mode,Se),z.return=Z,Z=z}return k(Z);case pt:return ot=$._init,Hn(Z,z,ot($._payload),Se)}if(qn($))return Ge(Z,z,$,Se);if(ee($))return He(Z,z,$,Se);_d(Z,$)}return typeof $==\"string\"&&$!==\"\"||typeof $==\"number\"?($=\"\"+$,z!==null&&z.tag===6?(s(Z,z.sibling),z=g(z,$),z.return=Z,Z=z):(s(Z,z),z=Vm($,Z.mode,Se),z.return=Z,Z=z),k(Z)):s(Z,z)}return Hn}var Gn=ns(!0),Me=ns(!1),Qr=ni(null),Ur=null,du=null,cm=null;function dm(){cm=du=Ur=null}function pm(n){var a=Qr.current;An(Qr),n._currentValue=a}function fm(n,a,s){for(;n!==null;){var d=n.alternate;if((n.childLanes&a)!==a?(n.childLanes|=a,d!==null&&(d.childLanes|=a)):d!==null&&(d.childLanes&a)!==a&&(d.childLanes|=a),n===s)break;n=n.return}}function Mn(n,a){Ur=n,cm=du=null,n=n.dependencies,n!==null&&n.firstContext!==null&&(n.lanes&a&&(ta=!0),n.firstContext=null)}function ii(n){var a=n._currentValue;if(cm!==n)if(n={context:n,memoizedValue:a,next:null},du===null){if(Ur===null)throw Error(u(308));du=n,Ur.dependencies={lanes:0,firstContext:n}}else du=du.next=n;return a}var as=null;function mm(n){as===null?as=[n]:as.push(n)}function hm(n,a,s,d){var g=a.interleaved;return g===null?(s.next=s,mm(a)):(s.next=g.next,g.next=s),a.interleaved=s,Dr(n,d)}function Dr(n,a){n.lanes|=a;var s=n.alternate;for(s!==null&&(s.lanes|=a),s=n,n=n.return;n!==null;)n.childLanes|=a,s=n.alternate,s!==null&&(s.childLanes|=a),s=n,n=n.return;return s.tag===3?s.stateNode:null}var jr=!1;function Am(n){n.updateQueue={baseState:n.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function eA(n,a){n=n.updateQueue,a.updateQueue===n&&(a.updateQueue={baseState:n.baseState,firstBaseUpdate:n.firstBaseUpdate,lastBaseUpdate:n.lastBaseUpdate,shared:n.shared,effects:n.effects})}function xo(n,a){return{eventTime:n,lane:a,tag:0,payload:null,callback:null,next:null}}function sl(n,a,s){var d=n.updateQueue;if(d===null)return null;if(d=d.shared,Lt&2){var g=d.pending;return g===null?a.next=a:(a.next=g.next,g.next=a),d.pending=a,Dr(n,s)}return g=d.interleaved,g===null?(a.next=a,mm(d)):(a.next=g.next,g.next=a),d.interleaved=a,Dr(n,s)}function $d(n,a,s){if(a=a.updateQueue,a!==null&&(a=a.shared,(s&4194240)!==0)){var d=a.lanes;d&=n.pendingLanes,s|=d,a.lanes=s,mo(n,s)}}function tA(n,a){var s=n.updateQueue,d=n.alternate;if(d!==null&&(d=d.updateQueue,s===d)){var g=null,S=null;if(s=s.firstBaseUpdate,s!==null){do{var k={eventTime:s.eventTime,lane:s.lane,tag:s.tag,payload:s.payload,callback:s.callback,next:null};S===null?g=S=k:S=S.next=k,s=s.next}while(s!==null);S===null?g=S=a:S=S.next=a}else g=S=a;s={baseState:d.baseState,firstBaseUpdate:g,lastBaseUpdate:S,shared:d.shared,effects:d.effects},n.updateQueue=s;return}n=s.lastBaseUpdate,n===null?s.firstBaseUpdate=a:n.next=a,s.lastBaseUpdate=a}function fc(n,a,s,d){var g=n.updateQueue;jr=!1;var S=g.firstBaseUpdate,k=g.lastBaseUpdate,D=g.shared.pending;if(D!==null){g.shared.pending=null;var G=D,re=G.next;G.next=null,k===null?S=re:k.next=re,k=G;var Ue=n.alternate;Ue!==null&&(Ue=Ue.updateQueue,D=Ue.lastBaseUpdate,D!==k&&(D===null?Ue.firstBaseUpdate=re:D.next=re,Ue.lastBaseUpdate=G))}if(S!==null){var xe=g.baseState;k=0,Ue=re=G=null,D=S;do{var ge=D.lane,De=D.eventTime;if((d&ge)===ge){Ue!==null&&(Ue=Ue.next={eventTime:De,lane:0,tag:D.tag,payload:D.payload,callback:D.callback,next:null});e:{var Ge=n,He=D;switch(ge=a,De=s,He.tag){case 1:if(Ge=He.payload,typeof Ge==\"function\"){xe=Ge.call(De,xe,ge);break e}xe=Ge;break e;case 3:Ge.flags=Ge.flags&-65537|128;case 0:if(Ge=He.payload,ge=typeof Ge==\"function\"?Ge.call(De,xe,ge):Ge,ge==null)break e;xe=fe({},xe,ge);break e;case 2:jr=!0}}D.callback!==null&&D.lane!==0&&(n.flags|=64,ge=g.effects,ge===null?g.effects=[D]:ge.push(D))}else De={eventTime:De,lane:ge,tag:D.tag,payload:D.payload,callback:D.callback,next:null},Ue===null?(re=Ue=De,G=xe):Ue=Ue.next=De,k|=ge;if(D=D.next,D===null){if(D=g.shared.pending,D===null)break;ge=D,D=ge.next,ge.next=null,g.lastBaseUpdate=ge,g.shared.pending=null}}while(!0);if(Ue===null&&(G=xe),g.baseState=G,g.firstBaseUpdate=re,g.lastBaseUpdate=Ue,a=g.shared.interleaved,a!==null){g=a;do k|=g.lane,g=g.next;while(g!==a)}else S===null&&(g.shared.lanes=0);eo|=k,n.lanes=k,n.memoizedState=xe}}function gm(n,a,s){if(n=a.effects,a.effects=null,n!==null)for(a=0;a<n.length;a++){var d=n[a],g=d.callback;if(g!==null){if(d.callback=null,d=s,typeof g!=\"function\")throw Error(u(191,g));g.call(d)}}}var mc={},Zi=ni(mc),hc=ni(mc),Ac=ni(mc);function rs(n){if(n===mc)throw Error(u(174));return n}function vm(n,a){switch(_e(Ac,a),_e(hc,n),_e(Zi,mc),n=a.nodeType,n){case 9:case 11:a=(a=a.documentElement)?a.namespaceURI:La(null,\"\");break;default:n=n===8?a.parentNode:a,a=n.namespaceURI||null,n=n.tagName,a=La(a,n)}An(Zi),_e(Zi,a)}function is(){An(Zi),An(hc),An(Ac)}function nA(n){rs(Ac.current);var a=rs(Zi.current),s=La(a,n.type);a!==s&&(_e(hc,n),_e(Zi,s))}function ep(n){hc.current===n&&(An(Zi),An(hc))}var Bn=ni(0);function tp(n){for(var a=n;a!==null;){if(a.tag===13){var s=a.memoizedState;if(s!==null&&(s=s.dehydrated,s===null||s.data===\"$?\"||s.data===\"$!\"))return a}else if(a.tag===19&&a.memoizedProps.revealOrder!==void 0){if(a.flags&128)return a}else if(a.child!==null){a.child.return=a,a=a.child;continue}if(a===n)break;for(;a.sibling===null;){if(a.return===null||a.return===n)return null;a=a.return}a.sibling.return=a.return,a=a.sibling}return null}var gc=[];function tt(){for(var n=0;n<gc.length;n++)gc[n]._workInProgressVersionPrimary=null;gc.length=0}var Et=P.ReactCurrentDispatcher,zt=P.ReactCurrentBatchConfig,ln=0,Ht=null,ea=null,ga=null,np=!1,vc=!1,os=0,Ae=0;function Gt(){throw Error(u(321))}function ct(n,a){if(a===null)return!1;for(var s=0;s<a.length&&s<n.length;s++)if(!Ti(n[s],a[s]))return!1;return!0}function ul(n,a,s,d,g,S){if(ln=S,Ht=a,a.memoizedState=null,a.updateQueue=null,a.lanes=0,Et.current=n===null||n.memoizedState===null?gp:Fc,n=s(d,g),vc){S=0;do{if(vc=!1,os=0,25<=S)throw Error(u(301));S+=1,ga=ea=null,a.updateQueue=null,Et.current=vp,n=s(d,g)}while(vc)}if(Et.current=ds,a=ea!==null&&ea.next!==null,ln=0,ga=ea=Ht=null,np=!1,a)throw Error(u(300));return n}function bi(){var n=os!==0;return os=0,n}function Ia(){var n={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return ga===null?Ht.memoizedState=ga=n:ga=ga.next=n,ga}function Wn(){if(ea===null){var n=Ht.alternate;n=n!==null?n.memoizedState:null}else n=ea.next;var a=ga===null?Ht.memoizedState:ga.next;if(a!==null)ga=a,ea=n;else{if(n===null)throw Error(u(310));ea=n,n={memoizedState:ea.memoizedState,baseState:ea.baseState,baseQueue:ea.baseQueue,queue:ea.queue,next:null},ga===null?Ht.memoizedState=ga=n:ga=ga.next=n}return ga}function Fo(n,a){return typeof a==\"function\"?a(n):a}function cl(n){var a=Wn(),s=a.queue;if(s===null)throw Error(u(311));s.lastRenderedReducer=n;var d=ea,g=d.baseQueue,S=s.pending;if(S!==null){if(g!==null){var k=g.next;g.next=S.next,S.next=k}d.baseQueue=g=S,s.pending=null}if(g!==null){S=g.next,d=d.baseState;var D=k=null,G=null,re=S;do{var Ue=re.lane;if((ln&Ue)===Ue)G!==null&&(G=G.next={lane:0,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null}),d=re.hasEagerState?re.eagerState:n(d,re.action);else{var xe={lane:Ue,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null};G===null?(D=G=xe,k=d):G=G.next=xe,Ht.lanes|=Ue,eo|=Ue}re=re.next}while(re!==null&&re!==S);G===null?k=d:G.next=D,Ti(d,a.memoizedState)||(ta=!0),a.memoizedState=d,a.baseState=k,a.baseQueue=G,s.lastRenderedState=d}if(n=s.interleaved,n!==null){g=n;do S=g.lane,Ht.lanes|=S,eo|=S,g=g.next;while(g!==n)}else g===null&&(s.lanes=0);return[a.memoizedState,s.dispatch]}function ls(n){var a=Wn(),s=a.queue;if(s===null)throw Error(u(311));s.lastRenderedReducer=n;var d=s.dispatch,g=s.pending,S=a.memoizedState;if(g!==null){s.pending=null;var k=g=g.next;do S=n(S,k.action),k=k.next;while(k!==g);Ti(S,a.memoizedState)||(ta=!0),a.memoizedState=S,a.baseQueue===null&&(a.baseState=S),s.lastRenderedState=S}return[S,d]}function ap(){}function rp(n,a){var s=Ht,d=Wn(),g=a(),S=!Ti(d.memoizedState,g);if(S&&(d.memoizedState=g,ta=!0),d=d.queue,Uc(lp.bind(null,s,d,n),[n]),d.getSnapshot!==a||S||ga!==null&&ga.memoizedState.tag&1){if(s.flags|=2048,ss(9,op.bind(null,s,d,g,a),void 0,null),pa===null)throw Error(u(349));ln&30||ip(s,a,g)}return g}function ip(n,a,s){n.flags|=16384,n={getSnapshot:a,value:s},a=Ht.updateQueue,a===null?(a={lastEffect:null,stores:null},Ht.updateQueue=a,a.stores=[n]):(s=a.stores,s===null?a.stores=[n]:s.push(n))}function op(n,a,s,d){a.value=s,a.getSnapshot=d,sp(a)&&up(n)}function lp(n,a,s){return s(function(){sp(a)&&up(n)})}function sp(n){var a=n.getSnapshot;n=n.value;try{var s=a();return!Ti(n,s)}catch(d){return!0}}function up(n){var a=Dr(n,1);a!==null&&$a(a,n,1,-1)}function cp(n){var a=Ia();return typeof n==\"function\"&&(n=n()),a.memoizedState=a.baseState=n,n={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:Fo,lastRenderedState:n},a.queue=n,n=n.dispatch=cs.bind(null,Ht,n),[a.memoizedState,n]}function ss(n,a,s,d){return n={tag:n,create:a,destroy:s,deps:d,next:null},a=Ht.updateQueue,a===null?(a={lastEffect:null,stores:null},Ht.updateQueue=a,a.lastEffect=n.next=n):(s=a.lastEffect,s===null?a.lastEffect=n.next=n:(d=s.next,s.next=n,n.next=d,a.lastEffect=n)),n}function dp(){return Wn().memoizedState}function pu(n,a,s,d){var g=Ia();Ht.flags|=n,g.memoizedState=ss(1|a,s,void 0,d===void 0?null:d)}function fu(n,a,s,d){var g=Wn();d=d===void 0?null:d;var S=void 0;if(ea!==null){var k=ea.memoizedState;if(S=k.destroy,d!==null&&ct(d,k.deps)){g.memoizedState=ss(a,s,S,d);return}}Ht.flags|=n,g.memoizedState=ss(1|a,s,S,d)}function pp(n,a){return pu(8390656,8,n,a)}function Uc(n,a){return fu(2048,8,n,a)}function fp(n,a){return fu(4,2,n,a)}function Sc(n,a){return fu(4,4,n,a)}function us(n,a){if(typeof a==\"function\")return n=n(),a(n),function(){a(null)};if(a!=null)return n=n(),a.current=n,function(){a.current=null}}function mp(n,a,s){return s=s!=null?s.concat([n]):null,fu(4,4,us.bind(null,a,n),s)}function yc(){}function hp(n,a){var s=Wn();a=a===void 0?null:a;var d=s.memoizedState;return d!==null&&a!==null&&ct(a,d[1])?d[0]:(s.memoizedState=[n,a],n)}function Ap(n,a){var s=Wn();a=a===void 0?null:a;var d=s.memoizedState;return d!==null&&a!==null&&ct(a,d[1])?d[0]:(n=n(),s.memoizedState=[n,a],n)}function Um(n,a,s){return ln&21?(Ti(s,a)||(s=Js(),Ht.lanes|=s,eo|=s,n.baseState=!0),a):(n.baseState&&(n.baseState=!1,ta=!0),n.memoizedState=s)}function Kc(n,a){var s=Jt;Jt=s!==0&&4>s?s:4,n(!0);var d=zt.transition;zt.transition={};try{n(!1),a()}finally{Jt=s,zt.transition=d}}function Sm(){return Wn().memoizedState}function xc(n,a,s){var d=to(n);if(s={lane:d,action:s,hasEagerState:!1,eagerState:null,next:null},Sr(n))aA(a,s);else if(s=hm(n,a,s,d),s!==null){var g=ra();$a(s,n,d,g),cn(s,a,d)}}function cs(n,a,s){var d=to(n),g={lane:d,action:s,hasEagerState:!1,eagerState:null,next:null};if(Sr(n))aA(a,g);else{var S=n.alternate;if(n.lanes===0&&(S===null||S.lanes===0)&&(S=a.lastRenderedReducer,S!==null))try{var k=a.lastRenderedState,D=S(k,s);if(g.hasEagerState=!0,g.eagerState=D,Ti(D,k)){var G=a.interleaved;G===null?(g.next=g,mm(a)):(g.next=G.next,G.next=g),a.interleaved=g;return}}catch(re){}finally{}s=hm(n,a,g,d),s!==null&&(g=ra(),$a(s,n,d,g),cn(s,a,d))}}function Sr(n){var a=n.alternate;return n===Ht||a!==null&&a===Ht}function aA(n,a){vc=np=!0;var s=n.pending;s===null?a.next=a:(a.next=s.next,s.next=a),n.pending=a}function cn(n,a,s){if(s&4194240){var d=a.lanes;d&=n.pendingLanes,s|=d,a.lanes=s,mo(n,s)}}var ds={readContext:ii,useCallback:Gt,useContext:Gt,useEffect:Gt,useImperativeHandle:Gt,useInsertionEffect:Gt,useLayoutEffect:Gt,useMemo:Gt,useReducer:Gt,useRef:Gt,useState:Gt,useDebugValue:Gt,useDeferredValue:Gt,useTransition:Gt,useMutableSource:Gt,useSyncExternalStore:Gt,useId:Gt,unstable_isNewReconciler:!1},gp={readContext:ii,useCallback:function(n,a){return Ia().memoizedState=[n,a===void 0?null:a],n},useContext:ii,useEffect:pp,useImperativeHandle:function(n,a,s){return s=s!=null?s.concat([n]):null,pu(4194308,4,us.bind(null,a,n),s)},useLayoutEffect:function(n,a){return pu(4194308,4,n,a)},useInsertionEffect:function(n,a){return pu(4,2,n,a)},useMemo:function(n,a){var s=Ia();return a=a===void 0?null:a,n=n(),s.memoizedState=[n,a],n},useReducer:function(n,a,s){var d=Ia();return a=s!==void 0?s(a):a,d.memoizedState=d.baseState=a,n={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:n,lastRenderedState:a},d.queue=n,n=n.dispatch=xc.bind(null,Ht,n),[d.memoizedState,n]},useRef:function(n){var a=Ia();return n={current:n},a.memoizedState=n},useState:cp,useDebugValue:yc,useDeferredValue:function(n){return Ia().memoizedState=n},useTransition:function(){var n=cp(!1),a=n[0];return n=Kc.bind(null,n[1]),Ia().memoizedState=n,[a,n]},useMutableSource:function(){},useSyncExternalStore:function(n,a,s){var d=Ht,g=Ia();if(xn){if(s===void 0)throw Error(u(407));s=s()}else{if(s=a(),pa===null)throw Error(u(349));ln&30||ip(d,a,s)}g.memoizedState=s;var S={value:s,getSnapshot:a};return g.queue=S,pp(lp.bind(null,d,S,n),[n]),d.flags|=2048,ss(9,op.bind(null,d,S,s,a),void 0,null),s},useId:function(){var n=Ia(),a=pa.identifierPrefix;if(xn){var s=Pi,d=Hi;s=(d&~(1<<32-za(d)-1)).toString(32)+s,a=\":\"+a+\"R\"+s,s=os++,0<s&&(a+=\"H\"+s.toString(32)),a+=\":\"}else s=Ae++,a=\":\"+a+\"r\"+s.toString(32)+\":\";return n.memoizedState=a},unstable_isNewReconciler:!1},Fc={readContext:ii,useCallback:hp,useContext:ii,useEffect:Uc,useImperativeHandle:mp,useInsertionEffect:fp,useLayoutEffect:Sc,useMemo:Ap,useReducer:cl,useRef:dp,useState:function(){return cl(Fo)},useDebugValue:yc,useDeferredValue:function(n){var a=Wn();return Um(a,ea.memoizedState,n)},useTransition:function(){var n=cl(Fo)[0],a=Wn().memoizedState;return[n,a]},useMutableSource:ap,useSyncExternalStore:rp,useId:Sm,unstable_isNewReconciler:!1},vp={readContext:ii,useCallback:hp,useContext:ii,useEffect:Uc,useImperativeHandle:mp,useInsertionEffect:fp,useLayoutEffect:Sc,useMemo:Ap,useReducer:ls,useRef:dp,useState:function(){return ls(Fo)},useDebugValue:yc,useDeferredValue:function(n){var a=Wn();return ea===null?a.memoizedState=n:Um(a,ea.memoizedState,n)},useTransition:function(){var n=ls(Fo)[0],a=Wn().memoizedState;return[n,a]},useMutableSource:ap,useSyncExternalStore:rp,useId:Sm,unstable_isNewReconciler:!1};function Ri(n,a){if(n&&n.defaultProps){a=fe({},a),n=n.defaultProps;for(var s in n)a[s]===void 0&&(a[s]=n[s]);return a}return a}function ym(n,a,s,d){a=n.memoizedState,s=s(d,a),s=s==null?a:fe({},a,s),n.memoizedState=s,n.lanes===0&&(n.updateQueue.baseState=s)}var Up={isMounted:function(n){return(n=n._reactInternals)?xt(n)===n:!1},enqueueSetState:function(n,a,s){n=n._reactInternals;var d=ra(),g=to(n),S=xo(d,g);S.payload=a,s!=null&&(S.callback=s),a=sl(n,S,g),a!==null&&($a(a,n,g,d),$d(a,n,g))},enqueueReplaceState:function(n,a,s){n=n._reactInternals;var d=ra(),g=to(n),S=xo(d,g);S.tag=1,S.payload=a,s!=null&&(S.callback=s),a=sl(n,S,g),a!==null&&($a(a,n,g,d),$d(a,n,g))},enqueueForceUpdate:function(n,a){n=n._reactInternals;var s=ra(),d=to(n),g=xo(s,d);g.tag=2,a!=null&&(g.callback=a),a=sl(n,g,d),a!==null&&($a(a,n,d,s),$d(a,n,d))}};function rA(n,a,s,d,g,S,k){return n=n.stateNode,typeof n.shouldComponentUpdate==\"function\"?n.shouldComponentUpdate(d,S,k):a.prototype&&a.prototype.isPureReactComponent?!ac(s,d)||!ac(g,S):!0}function Sp(n,a,s){var d=!1,g=Va,S=a.contextType;return typeof S==\"object\"&&S!==null?S=ii(S):(g=_n(a)?hr:On.current,d=a.contextTypes,S=(d=d!=null)?Ar(n,g):Va),a=new a(s,S),n.memoizedState=a.state!==null&&a.state!==void 0?a.state:null,a.updater=Up,n.stateNode=a,a._reactInternals=n,d&&(n=n.stateNode,n.__reactInternalMemoizedUnmaskedChildContext=g,n.__reactInternalMemoizedMaskedChildContext=S),a}function iA(n,a,s,d){n=a.state,typeof a.componentWillReceiveProps==\"function\"&&a.componentWillReceiveProps(s,d),typeof a.UNSAFE_componentWillReceiveProps==\"function\"&&a.UNSAFE_componentWillReceiveProps(s,d),a.state!==n&&Up.enqueueReplaceState(a,a.state,null)}function Tc(n,a,s,d){var g=n.stateNode;g.props=s,g.state=n.memoizedState,g.refs={},Am(n);var S=a.contextType;typeof S==\"object\"&&S!==null?g.context=ii(S):(S=_n(a)?hr:On.current,g.context=Ar(n,S)),g.state=n.memoizedState,S=a.getDerivedStateFromProps,typeof S==\"function\"&&(ym(n,a,S,s),g.state=n.memoizedState),typeof a.getDerivedStateFromProps==\"function\"||typeof g.getSnapshotBeforeUpdate==\"function\"||typeof g.UNSAFE_componentWillMount!=\"function\"&&typeof g.componentWillMount!=\"function\"||(a=g.state,typeof g.componentWillMount==\"function\"&&g.componentWillMount(),typeof g.UNSAFE_componentWillMount==\"function\"&&g.UNSAFE_componentWillMount(),a!==g.state&&Up.enqueueReplaceState(g,g.state,null),fc(n,s,g,d),g.state=n.memoizedState),typeof g.componentDidMount==\"function\"&&(n.flags|=4194308)}function ps(n,a){try{var s=\"\",d=a;do s+=nt(d),d=d.return;while(d);var g=s}catch(S){g=`\nError generating stack: `+S.message+`\n`+S.stack}return{value:n,source:a,stack:g,digest:null}}function Km(n,a,s){return{value:n,source:null,stack:s!=null?s:null,digest:a!=null?a:null}}function xm(n,a){try{console.error(a.value)}catch(s){setTimeout(function(){throw s})}}var yp=typeof WeakMap==\"function\"?WeakMap:Map;function oA(n,a,s){s=xo(-1,s),s.tag=3,s.payload={element:null};var d=a.value;return s.callback=function(){Uu||(Uu=!0,hs=d),xm(n,a)},s}function Fm(n,a,s){s=xo(-1,s),s.tag=3;var d=n.type.getDerivedStateFromError;if(typeof d==\"function\"){var g=a.value;s.payload=function(){return d(g)},s.callback=function(){xm(n,a)}}var S=n.stateNode;return S!==null&&typeof S.componentDidCatch==\"function\"&&(s.callback=function(){xm(n,a),typeof d!=\"function\"&&(fl===null?fl=new Set([this]):fl.add(this));var k=a.stack;this.componentDidCatch(a.value,{componentStack:k!==null?k:\"\"})}),s}function Tm(n,a,s){var d=n.pingCache;if(d===null){d=n.pingCache=new yp;var g=new Set;d.set(a,g)}else g=d.get(a),g===void 0&&(g=new Set,d.set(a,g));g.has(s)||(g.add(s),n=gS.bind(null,n,a,s),a.then(n,n))}function lA(n){do{var a;if((a=n.tag===13)&&(a=n.memoizedState,a=a!==null?a.dehydrated!==null:!0),a)return n;n=n.return}while(n!==null);return null}function dl(n,a,s,d,g){return n.mode&1?(n.flags|=65536,n.lanes=g,n):(n===a?n.flags|=65536:(n.flags|=128,s.flags|=131072,s.flags&=-52805,s.tag===1&&(s.alternate===null?s.tag=17:(a=xo(-1,1),a.tag=2,sl(s,a,1))),s.lanes|=1),n)}var Cc=P.ReactCurrentOwner,ta=!1;function Ca(n,a,s,d){a.child=n===null?Me(a,null,s,d):Gn(a,n.child,s,d)}function yr(n,a,s,d,g){s=s.render;var S=a.ref;return Mn(a,g),d=ul(n,a,s,d,S,g),s=bi(),n!==null&&!ta?(a.updateQueue=n.updateQueue,a.flags&=-2053,n.lanes&=~g,li(n,a,g)):(xn&&s&&Pd(a),a.flags|=1,Ca(n,a,d,g),a.child)}function fs(n,a,s,d,g){if(n===null){var S=s.type;return typeof S==\"function\"&&!Om(S)&&S.defaultProps===void 0&&s.compare===null&&s.defaultProps===void 0?(a.tag=15,a.type=S,bt(n,a,S,d,g)):(n=qc(s.type,null,d,a,a.mode,g),n.ref=a.ref,n.return=a,a.child=n)}if(S=n.child,!(n.lanes&g)){var k=S.memoizedProps;if(s=s.compare,s=s!==null?s:ac,s(k,d)&&n.ref===a.ref)return li(n,a,g)}return a.flags|=1,n=hl(S,d),n.ref=a.ref,n.return=a,a.child=n}function bt(n,a,s,d,g){if(n!==null){var S=n.memoizedProps;if(ac(S,d)&&n.ref===a.ref)if(ta=!1,a.pendingProps=d=S,(n.lanes&g)!==0)n.flags&131072&&(ta=!0);else return a.lanes=n.lanes,li(n,a,g)}return sA(n,a,s,d,g)}function bc(n,a,s){var d=a.pendingProps,g=d.children,S=n!==null?n.memoizedState:null;if(d.mode===\"hidden\")if(!(a.mode&1))a.memoizedState={baseLanes:0,cachePool:null,transitions:null},_e(Au,Lr),Lr|=s;else{if(!(s&1073741824))return n=S!==null?S.baseLanes|s:s,a.lanes=a.childLanes=1073741824,a.memoizedState={baseLanes:n,cachePool:null,transitions:null},a.updateQueue=null,_e(Au,Lr),Lr|=n,null;a.memoizedState={baseLanes:0,cachePool:null,transitions:null},d=S!==null?S.baseLanes:s,_e(Au,Lr),Lr|=d}else S!==null?(d=S.baseLanes|s,a.memoizedState=null):d=s,_e(Au,Lr),Lr|=d;return Ca(n,a,g,s),a.child}function Cm(n,a){var s=a.ref;(n===null&&s!==null||n!==null&&n.ref!==s)&&(a.flags|=512,a.flags|=2097152)}function sA(n,a,s,d,g){var S=_n(s)?hr:On.current;return S=Ar(a,S),Mn(a,g),s=ul(n,a,s,d,S,g),d=bi(),n!==null&&!ta?(a.updateQueue=n.updateQueue,a.flags&=-2053,n.lanes&=~g,li(n,a,g)):(xn&&d&&Pd(a),a.flags|=1,Ca(n,a,s,g),a.child)}function uA(n,a,s,d,g){if(_n(s)){var S=!0;Aa(a)}else S=!1;if(Mn(a,g),a.stateNode===null)oi(n,a),Sp(a,s,d),Tc(a,s,d,g),d=!0;else if(n===null){var k=a.stateNode,D=a.memoizedProps;k.props=D;var G=k.context,re=s.contextType;typeof re==\"object\"&&re!==null?re=ii(re):(re=_n(s)?hr:On.current,re=Ar(a,re));var Ue=s.getDerivedStateFromProps,xe=typeof Ue==\"function\"||typeof k.getSnapshotBeforeUpdate==\"function\";xe||typeof k.UNSAFE_componentWillReceiveProps!=\"function\"&&typeof k.componentWillReceiveProps!=\"function\"||(D!==d||G!==re)&&iA(a,k,d,re),jr=!1;var ge=a.memoizedState;k.state=ge,fc(a,d,k,g),G=a.memoizedState,D!==d||ge!==G||ca.current||jr?(typeof Ue==\"function\"&&(ym(a,s,Ue,d),G=a.memoizedState),(D=jr||rA(a,s,D,d,ge,G,re))?(xe||typeof k.UNSAFE_componentWillMount!=\"function\"&&typeof k.componentWillMount!=\"function\"||(typeof k.componentWillMount==\"function\"&&k.componentWillMount(),typeof k.UNSAFE_componentWillMount==\"function\"&&k.UNSAFE_componentWillMount()),typeof k.componentDidMount==\"function\"&&(a.flags|=4194308)):(typeof k.componentDidMount==\"function\"&&(a.flags|=4194308),a.memoizedProps=d,a.memoizedState=G),k.props=d,k.state=G,k.context=re,d=D):(typeof k.componentDidMount==\"function\"&&(a.flags|=4194308),d=!1)}else{k=a.stateNode,eA(n,a),D=a.memoizedProps,re=a.type===a.elementType?D:Ri(a.type,D),k.props=re,xe=a.pendingProps,ge=k.context,G=s.contextType,typeof G==\"object\"&&G!==null?G=ii(G):(G=_n(s)?hr:On.current,G=Ar(a,G));var De=s.getDerivedStateFromProps;(Ue=typeof De==\"function\"||typeof k.getSnapshotBeforeUpdate==\"function\")||typeof k.UNSAFE_componentWillReceiveProps!=\"function\"&&typeof k.componentWillReceiveProps!=\"function\"||(D!==xe||ge!==G)&&iA(a,k,d,G),jr=!1,ge=a.memoizedState,k.state=ge,fc(a,d,k,g);var Ge=a.memoizedState;D!==xe||ge!==Ge||ca.current||jr?(typeof De==\"function\"&&(ym(a,s,De,d),Ge=a.memoizedState),(re=jr||rA(a,s,re,d,ge,Ge,G)||!1)?(Ue||typeof k.UNSAFE_componentWillUpdate!=\"function\"&&typeof k.componentWillUpdate!=\"function\"||(typeof k.componentWillUpdate==\"function\"&&k.componentWillUpdate(d,Ge,G),typeof k.UNSAFE_componentWillUpdate==\"function\"&&k.UNSAFE_componentWillUpdate(d,Ge,G)),typeof k.componentDidUpdate==\"function\"&&(a.flags|=4),typeof k.getSnapshotBeforeUpdate==\"function\"&&(a.flags|=1024)):(typeof k.componentDidUpdate!=\"function\"||D===n.memoizedProps&&ge===n.memoizedState||(a.flags|=4),typeof k.getSnapshotBeforeUpdate!=\"function\"||D===n.memoizedProps&&ge===n.memoizedState||(a.flags|=1024),a.memoizedProps=d,a.memoizedState=Ge),k.props=d,k.state=Ge,k.context=G,d=re):(typeof k.componentDidUpdate!=\"function\"||D===n.memoizedProps&&ge===n.memoizedState||(a.flags|=4),typeof k.getSnapshotBeforeUpdate!=\"function\"||D===n.memoizedProps&&ge===n.memoizedState||(a.flags|=1024),d=!1)}return Rc(n,a,s,d,S,g)}function Rc(n,a,s,d,g,S){Cm(n,a);var k=(a.flags&128)!==0;if(!d&&!k)return g&&zd(a,s,!1),li(n,a,S);d=a.stateNode,Cc.current=a;var D=k&&typeof s.getDerivedStateFromError!=\"function\"?null:d.render();return a.flags|=1,n!==null&&k?(a.child=Gn(a,n.child,null,S),a.child=Gn(a,null,D,S)):Ca(n,a,D,S),a.memoizedState=d.state,g&&zd(a,s,!0),a.child}function mu(n){var a=n.stateNode;a.pendingContext?Zh(n,a.pendingContext,a.pendingContext!==a.context):a.context&&Zh(n,a.context,!1),vm(n,a.containerInfo)}function cA(n,a,s,d,g){return ll(),Ko(g),a.flags|=256,Ca(n,a,s,d),a.child}var Kp={dehydrated:null,treeContext:null,retryLane:0};function bm(n){return{baseLanes:n,cachePool:null,transitions:null}}function xp(n,a,s){var d=a.pendingProps,g=Bn.current,S=!1,k=(a.flags&128)!==0,D;if((D=k)||(D=n!==null&&n.memoizedState===null?!1:(g&2)!==0),D?(S=!0,a.flags&=-129):(n===null||n.memoizedState!==null)&&(g|=1),_e(Bn,g&1),n===null)return um(a),n=a.memoizedState,n!==null&&(n=n.dehydrated,n!==null)?(a.mode&1?n.data===\"$!\"?a.lanes=8:a.lanes=1073741824:a.lanes=1,null):(k=d.children,n=d.fallback,S?(d=a.mode,S=a.child,k={mode:\"hidden\",children:k},!(d&1)&&S!==null?(S.childLanes=0,S.pendingProps=k):S=Al(k,d,0,null),n=Ro(n,d,s,null),S.return=a,n.return=a,S.sibling=n,a.child=S,a.child.memoizedState=bm(s),a.memoizedState=Kp,n):Rm(a,k));if(g=n.memoizedState,g!==null&&(D=g.dehydrated,D!==null))return dA(n,a,k,d,D,g,s);if(S){S=d.fallback,k=a.mode,g=n.child,D=g.sibling;var G={mode:\"hidden\",children:d.children};return!(k&1)&&a.child!==g?(d=a.child,d.childLanes=0,d.pendingProps=G,a.deletions=null):(d=hl(g,G),d.subtreeFlags=g.subtreeFlags&14680064),D!==null?S=hl(D,S):(S=Ro(S,k,s,null),S.flags|=2),S.return=a,d.return=a,d.sibling=S,a.child=d,d=S,S=a.child,k=n.child.memoizedState,k=k===null?bm(s):{baseLanes:k.baseLanes|s,cachePool:null,transitions:k.transitions},S.memoizedState=k,S.childLanes=n.childLanes&~s,a.memoizedState=Kp,d}return S=n.child,n=S.sibling,d=hl(S,{mode:\"visible\",children:d.children}),!(a.mode&1)&&(d.lanes=s),d.return=a,d.sibling=null,n!==null&&(s=a.deletions,s===null?(a.deletions=[n],a.flags|=16):s.push(n)),a.child=d,a.memoizedState=null,d}function Rm(n,a){return a=Al({mode:\"visible\",children:a},n.mode,0,null),a.return=n,n.child=a}function kc(n,a,s,d){return d!==null&&Ko(d),Gn(a,n.child,null,s),n=Rm(a,a.pendingProps.children),n.flags|=2,a.memoizedState=null,n}function dA(n,a,s,d,g,S,k){if(s)return a.flags&256?(a.flags&=-257,d=Km(Error(u(422))),kc(n,a,k,d)):a.memoizedState!==null?(a.child=n.child,a.flags|=128,null):(S=d.fallback,g=a.mode,d=Al({mode:\"visible\",children:d.children},g,0,null),S=Ro(S,g,k,null),S.flags|=2,d.return=a,S.return=a,d.sibling=S,a.child=d,a.mode&1&&Gn(a,n.child,null,k),a.child.memoizedState=bm(k),a.memoizedState=Kp,S);if(!(a.mode&1))return kc(n,a,k,null);if(g.data===\"$!\"){if(d=g.nextSibling&&g.nextSibling.dataset,d)var D=d.dgst;return d=D,S=Error(u(419)),d=Km(S,d,void 0),kc(n,a,k,d)}if(D=(k&n.childLanes)!==0,ta||D){if(d=pa,d!==null){switch(k&-k){case 4:g=2;break;case 16:g=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:g=32;break;case 536870912:g=268435456;break;default:g=0}g=g&(d.suspendedLanes|k)?0:g,g!==0&&g!==S.retryLane&&(S.retryLane=g,Dr(n,g),$a(d,n,g,-1))}return Lm(),d=Km(Error(u(421))),kc(n,a,k,d)}return g.data===\"$?\"?(a.flags|=128,a.child=n.child,a=vS.bind(null,n),g._reactRetry=a,null):(n=S.treeContext,vr=Gi(g.nextSibling),gr=a,xn=!0,ri=null,n!==null&&($n[ai++]=Hi,$n[ai++]=Pi,$n[ai++]=Br,Hi=n.id,Pi=n.overflow,Br=a),a=Rm(a,d.children),a.flags|=4096,a)}function km(n,a,s){n.lanes|=a;var d=n.alternate;d!==null&&(d.lanes|=a),fm(n.return,a,s)}function Za(n,a,s,d,g){var S=n.memoizedState;S===null?n.memoizedState={isBackwards:a,rendering:null,renderingStartTime:0,last:d,tail:s,tailMode:g}:(S.isBackwards=a,S.rendering=null,S.renderingStartTime=0,S.last=d,S.tail=s,S.tailMode=g)}function Xi(n,a,s){var d=a.pendingProps,g=d.revealOrder,S=d.tail;if(Ca(n,a,d.children,s),d=Bn.current,d&2)d=d&1|2,a.flags|=128;else{if(n!==null&&n.flags&128)e:for(n=a.child;n!==null;){if(n.tag===13)n.memoizedState!==null&&km(n,s,a);else if(n.tag===19)km(n,s,a);else if(n.child!==null){n.child.return=n,n=n.child;continue}if(n===a)break e;for(;n.sibling===null;){if(n.return===null||n.return===a)break e;n=n.return}n.sibling.return=n.return,n=n.sibling}d&=1}if(_e(Bn,d),!(a.mode&1))a.memoizedState=null;else switch(g){case\"forwards\":for(s=a.child,g=null;s!==null;)n=s.alternate,n!==null&&tp(n)===null&&(g=s),s=s.sibling;s=g,s===null?(g=a.child,a.child=null):(g=s.sibling,s.sibling=null),Za(a,!1,g,s,S);break;case\"backwards\":for(s=null,g=a.child,a.child=null;g!==null;){if(n=g.alternate,n!==null&&tp(n)===null){a.child=g;break}n=g.sibling,g.sibling=s,s=g,g=n}Za(a,!0,s,null,S);break;case\"together\":Za(a,!1,null,null,void 0);break;default:a.memoizedState=null}return a.child}function oi(n,a){!(a.mode&1)&&n!==null&&(n.alternate=null,a.alternate=null,a.flags|=2)}function li(n,a,s){if(n!==null&&(a.dependencies=n.dependencies),eo|=a.lanes,!(s&a.childLanes))return null;if(n!==null&&a.child!==n.child)throw Error(u(153));if(a.child!==null){for(n=a.child,s=hl(n,n.pendingProps),a.child=s,s.return=a;n.sibling!==null;)n=n.sibling,s=s.sibling=hl(n,n.pendingProps),s.return=a;s.sibling=null}return a.child}function Nc(n,a,s){switch(a.tag){case 3:mu(a),ll();break;case 5:nA(a);break;case 1:_n(a.type)&&Aa(a);break;case 4:vm(a,a.stateNode.containerInfo);break;case 10:var d=a.type._context,g=a.memoizedProps.value;_e(Qr,d._currentValue),d._currentValue=g;break;case 13:if(d=a.memoizedState,d!==null)return d.dehydrated!==null?(_e(Bn,Bn.current&1),a.flags|=128,null):s&a.child.childLanes?xp(n,a,s):(_e(Bn,Bn.current&1),n=li(n,a,s),n!==null?n.sibling:null);_e(Bn,Bn.current&1);break;case 19:if(d=(s&a.childLanes)!==0,n.flags&128){if(d)return Xi(n,a,s);a.flags|=128}if(g=a.memoizedState,g!==null&&(g.rendering=null,g.tail=null,g.lastEffect=null),_e(Bn,Bn.current),d)break;return null;case 22:case 23:return a.lanes=0,bc(n,a,s)}return li(n,a,s)}var si,na,pA,fA;si=function(n,a){for(var s=a.child;s!==null;){if(s.tag===5||s.tag===6)n.appendChild(s.stateNode);else if(s.tag!==4&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===a)break;for(;s.sibling===null;){if(s.return===null||s.return===a)return;s=s.return}s.sibling.return=s.return,s=s.sibling}},na=function(){},pA=function(n,a,s,d){var g=n.memoizedProps;if(g!==d){n=a.stateNode,rs(Zi.current);var S=null;switch(s){case\"input\":g=Zn(n,g),d=Zn(n,d),S=[];break;case\"select\":g=fe({},g,{value:void 0}),d=fe({},d,{value:void 0}),S=[];break;case\"textarea\":g=Ln(n,g),d=Ln(n,d),S=[];break;default:typeof g.onClick!=\"function\"&&typeof d.onClick==\"function\"&&(n.onclick=tl)}gn(s,d);var k;s=null;for(re in g)if(!d.hasOwnProperty(re)&&g.hasOwnProperty(re)&&g[re]!=null)if(re===\"style\"){var D=g[re];for(k in D)D.hasOwnProperty(k)&&(s||(s={}),s[k]=\"\")}else re!==\"dangerouslySetInnerHTML\"&&re!==\"children\"&&re!==\"suppressContentEditableWarning\"&&re!==\"suppressHydrationWarning\"&&re!==\"autoFocus\"&&(A.hasOwnProperty(re)?S||(S=[]):(S=S||[]).push(re,null));for(re in d){var G=d[re];if(D=g!=null?g[re]:void 0,d.hasOwnProperty(re)&&G!==D&&(G!=null||D!=null))if(re===\"style\")if(D){for(k in D)!D.hasOwnProperty(k)||G&&G.hasOwnProperty(k)||(s||(s={}),s[k]=\"\");for(k in G)G.hasOwnProperty(k)&&D[k]!==G[k]&&(s||(s={}),s[k]=G[k])}else s||(S||(S=[]),S.push(re,s)),s=G;else re===\"dangerouslySetInnerHTML\"?(G=G?G.__html:void 0,D=D?D.__html:void 0,G!=null&&D!==G&&(S=S||[]).push(re,G)):re===\"children\"?typeof G!=\"string\"&&typeof G!=\"number\"||(S=S||[]).push(re,\"\"+G):re!==\"suppressContentEditableWarning\"&&re!==\"suppressHydrationWarning\"&&(A.hasOwnProperty(re)?(G!=null&&re===\"onScroll\"&&$t(\"scroll\",n),S||D===G||(S=[])):(S=S||[]).push(re,G))}s&&(S=S||[]).push(\"style\",s);var re=S;(a.updateQueue=re)&&(a.flags|=4)}},fA=function(n,a,s,d){s!==d&&(a.flags|=4)};function wc(n,a){if(!xn)switch(n.tailMode){case\"hidden\":a=n.tail;for(var s=null;a!==null;)a.alternate!==null&&(s=a),a=a.sibling;s===null?n.tail=null:s.sibling=null;break;case\"collapsed\":s=n.tail;for(var d=null;s!==null;)s.alternate!==null&&(d=s),s=s.sibling;d===null?a||n.tail===null?n.tail=null:n.tail.sibling=null:d.sibling=null}}function va(n){var a=n.alternate!==null&&n.alternate.child===n.child,s=0,d=0;if(a)for(var g=n.child;g!==null;)s|=g.lanes|g.childLanes,d|=g.subtreeFlags&14680064,d|=g.flags&14680064,g.return=n,g=g.sibling;else for(g=n.child;g!==null;)s|=g.lanes|g.childLanes,d|=g.subtreeFlags,d|=g.flags,g.return=n,g=g.sibling;return n.subtreeFlags|=d,n.childLanes=s,a}function mA(n,a,s){var d=a.pendingProps;switch(Zd(a),a.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return va(a),null;case 1:return _n(a.type)&&uu(),va(a),null;case 3:return d=a.stateNode,is(),An(ca),An(On),tt(),d.pendingContext&&(d.context=d.pendingContext,d.pendingContext=null),(n===null||n.child===null)&&(Xd(a)?a.flags|=4:n===null||n.memoizedState.isDehydrated&&!(a.flags&256)||(a.flags|=1024,ri!==null&&(As(ri),ri=null))),na(n,a),va(a),null;case 5:ep(a);var g=rs(Ac.current);if(s=a.type,n!==null&&a.stateNode!=null)pA(n,a,s,d,g),n.ref!==a.ref&&(a.flags|=512,a.flags|=2097152);else{if(!d){if(a.stateNode===null)throw Error(u(166));return va(a),null}if(n=rs(Zi.current),Xd(a)){d=a.stateNode,s=a.type;var S=a.memoizedProps;switch(d[Wi]=a,d[uc]=S,n=(a.mode&1)!==0,s){case\"dialog\":$t(\"cancel\",d),$t(\"close\",d);break;case\"iframe\":case\"object\":case\"embed\":$t(\"load\",d);break;case\"video\":case\"audio\":for(g=0;g<oc.length;g++)$t(oc[g],d);break;case\"source\":$t(\"error\",d);break;case\"img\":case\"image\":case\"link\":$t(\"error\",d),$t(\"load\",d);break;case\"details\":$t(\"toggle\",d);break;case\"input\":Dn(d,S),$t(\"invalid\",d);break;case\"select\":d._wrapperState={wasMultiple:!!S.multiple},$t(\"invalid\",d);break;case\"textarea\":la(d,S),$t(\"invalid\",d)}gn(s,S),g=null;for(var k in S)if(S.hasOwnProperty(k)){var D=S[k];k===\"children\"?typeof D==\"string\"?d.textContent!==D&&(S.suppressHydrationWarning!==!0&&Yd(d.textContent,D,n),g=[\"children\",D]):typeof D==\"number\"&&d.textContent!==\"\"+D&&(S.suppressHydrationWarning!==!0&&Yd(d.textContent,D,n),g=[\"children\",\"\"+D]):A.hasOwnProperty(k)&&D!=null&&k===\"onScroll\"&&$t(\"scroll\",d)}switch(s){case\"input\":Rn(d),Nr(d,S,!0);break;case\"textarea\":Rn(d),kn(d);break;case\"select\":case\"option\":break;default:typeof S.onClick==\"function\"&&(d.onclick=tl)}d=g,a.updateQueue=d,d!==null&&(a.flags|=4)}else{k=g.nodeType===9?g:g.ownerDocument,n===\"http://www.w3.org/1999/xhtml\"&&(n=sa(s)),n===\"http://www.w3.org/1999/xhtml\"?s===\"script\"?(n=k.createElement(\"div\"),n.innerHTML=\"<script><\\/script>\",n=n.removeChild(n.firstChild)):typeof d.is==\"string\"?n=k.createElement(s,{is:d.is}):(n=k.createElement(s),s===\"select\"&&(k=n,d.multiple?k.multiple=!0:d.size&&(k.size=d.size))):n=k.createElementNS(n,s),n[Wi]=a,n[uc]=d,si(n,a,!1,!1),a.stateNode=n;e:{switch(k=ha(s,d),s){case\"dialog\":$t(\"cancel\",n),$t(\"close\",n),g=d;break;case\"iframe\":case\"object\":case\"embed\":$t(\"load\",n),g=d;break;case\"video\":case\"audio\":for(g=0;g<oc.length;g++)$t(oc[g],n);g=d;break;case\"source\":$t(\"error\",n),g=d;break;case\"img\":case\"image\":case\"link\":$t(\"error\",n),$t(\"load\",n),g=d;break;case\"details\":$t(\"toggle\",n),g=d;break;case\"input\":Dn(n,d),g=Zn(n,d),$t(\"invalid\",n);break;case\"option\":g=d;break;case\"select\":n._wrapperState={wasMultiple:!!d.multiple},g=fe({},d,{value:void 0}),$t(\"invalid\",n);break;case\"textarea\":la(n,d),g=Ln(n,d),$t(\"invalid\",n);break;default:g=d}gn(s,g),D=g;for(S in D)if(D.hasOwnProperty(S)){var G=D[S];S===\"style\"?pn(n,G):S===\"dangerouslySetInnerHTML\"?(G=G?G.__html:void 0,G!=null&&wr(n,G)):S===\"children\"?typeof G==\"string\"?(s!==\"textarea\"||G!==\"\")&&Re(n,G):typeof G==\"number\"&&Re(n,\"\"+G):S!==\"suppressContentEditableWarning\"&&S!==\"suppressHydrationWarning\"&&S!==\"autoFocus\"&&(A.hasOwnProperty(S)?G!=null&&S===\"onScroll\"&&$t(\"scroll\",n):G!=null&&Y(n,S,G,k))}switch(s){case\"input\":Rn(n),Nr(n,d,!1);break;case\"textarea\":Rn(n),kn(n);break;case\"option\":d.value!=null&&n.setAttribute(\"value\",\"\"+Kt(d.value));break;case\"select\":n.multiple=!!d.multiple,S=d.value,S!=null?Kn(n,!!d.multiple,S,!1):d.defaultValue!=null&&Kn(n,!!d.multiple,d.defaultValue,!0);break;default:typeof g.onClick==\"function\"&&(n.onclick=tl)}switch(s){case\"button\":case\"input\":case\"select\":case\"textarea\":d=!!d.autoFocus;break e;case\"img\":d=!0;break e;default:d=!1}}d&&(a.flags|=4)}a.ref!==null&&(a.flags|=512,a.flags|=2097152)}return va(a),null;case 6:if(n&&a.stateNode!=null)fA(n,a,n.memoizedProps,d);else{if(typeof d!=\"string\"&&a.stateNode===null)throw Error(u(166));if(s=rs(Ac.current),rs(Zi.current),Xd(a)){if(d=a.stateNode,s=a.memoizedProps,d[Wi]=a,(S=d.nodeValue!==s)&&(n=gr,n!==null))switch(n.tag){case 3:Yd(d.nodeValue,s,(n.mode&1)!==0);break;case 5:n.memoizedProps.suppressHydrationWarning!==!0&&Yd(d.nodeValue,s,(n.mode&1)!==0)}S&&(a.flags|=4)}else d=(s.nodeType===9?s:s.ownerDocument).createTextNode(d),d[Wi]=a,a.stateNode=d}return va(a),null;case 13:if(An(Bn),d=a.memoizedState,n===null||n.memoizedState!==null&&n.memoizedState.dehydrated!==null){if(xn&&vr!==null&&a.mode&1&&!(a.flags&128))pc(),ll(),a.flags|=98560,S=!1;else if(S=Xd(a),d!==null&&d.dehydrated!==null){if(n===null){if(!S)throw Error(u(318));if(S=a.memoizedState,S=S!==null?S.dehydrated:null,!S)throw Error(u(317));S[Wi]=a}else ll(),!(a.flags&128)&&(a.memoizedState=null),a.flags|=4;va(a),S=!1}else ri!==null&&(As(ri),ri=null),S=!0;if(!S)return a.flags&65536?a:null}return a.flags&128?(a.lanes=s,a):(d=d!==null,d!==(n!==null&&n.memoizedState!==null)&&d&&(a.child.flags|=8192,a.mode&1&&(n===null||Bn.current&1?zn===0&&(zn=3):Lm())),a.updateQueue!==null&&(a.flags|=4),va(a),null);case 4:return is(),na(n,a),n===null&&ru(a.stateNode.containerInfo),va(a),null;case 10:return pm(a.type._context),va(a),null;case 17:return _n(a.type)&&uu(),va(a),null;case 19:if(An(Bn),S=a.memoizedState,S===null)return va(a),null;if(d=(a.flags&128)!==0,k=S.rendering,k===null)if(d)wc(S,!1);else{if(zn!==0||n!==null&&n.flags&128)for(n=a.child;n!==null;){if(k=tp(n),k!==null){for(a.flags|=128,wc(S,!1),d=k.updateQueue,d!==null&&(a.updateQueue=d,a.flags|=4),a.subtreeFlags=0,d=s,s=a.child;s!==null;)S=s,n=d,S.flags&=14680066,k=S.alternate,k===null?(S.childLanes=0,S.lanes=n,S.child=null,S.subtreeFlags=0,S.memoizedProps=null,S.memoizedState=null,S.updateQueue=null,S.dependencies=null,S.stateNode=null):(S.childLanes=k.childLanes,S.lanes=k.lanes,S.child=k.child,S.subtreeFlags=0,S.deletions=null,S.memoizedProps=k.memoizedProps,S.memoizedState=k.memoizedState,S.updateQueue=k.updateQueue,S.type=k.type,n=k.dependencies,S.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext}),s=s.sibling;return _e(Bn,Bn.current&1|2),a.child}n=n.sibling}S.tail!==null&&Ft()>vu&&(a.flags|=128,d=!0,wc(S,!1),a.lanes=4194304)}else{if(!d)if(n=tp(k),n!==null){if(a.flags|=128,d=!0,s=n.updateQueue,s!==null&&(a.updateQueue=s,a.flags|=4),wc(S,!0),S.tail===null&&S.tailMode===\"hidden\"&&!k.alternate&&!xn)return va(a),null}else 2*Ft()-S.renderingStartTime>vu&&s!==1073741824&&(a.flags|=128,d=!0,wc(S,!1),a.lanes=4194304);S.isBackwards?(k.sibling=a.child,a.child=k):(s=S.last,s!==null?s.sibling=k:a.child=k,S.last=k)}return S.tail!==null?(a=S.tail,S.rendering=a,S.tail=a.sibling,S.renderingStartTime=Ft(),a.sibling=null,s=Bn.current,_e(Bn,d?s&1|2:s&1),a):(va(a),null);case 22:case 23:return jm(),d=a.memoizedState!==null,n!==null&&n.memoizedState!==null!==d&&(a.flags|=8192),d&&a.mode&1?Lr&1073741824&&(va(a),a.subtreeFlags&6&&(a.flags|=8192)):va(a),null;case 24:return null;case 25:return null}throw Error(u(156,a.tag))}function Fp(n,a){switch(Zd(a),a.tag){case 1:return _n(a.type)&&uu(),n=a.flags,n&65536?(a.flags=n&-65537|128,a):null;case 3:return is(),An(ca),An(On),tt(),n=a.flags,n&65536&&!(n&128)?(a.flags=n&-65537|128,a):null;case 5:return ep(a),null;case 13:if(An(Bn),n=a.memoizedState,n!==null&&n.dehydrated!==null){if(a.alternate===null)throw Error(u(340));ll()}return n=a.flags,n&65536?(a.flags=n&-65537|128,a):null;case 19:return An(Bn),null;case 4:return is(),null;case 10:return pm(a.type._context),null;case 22:case 23:return jm(),null;case 24:return null;default:return null}}var Ec=!1,qa=!1,dS=typeof WeakSet==\"function\"?WeakSet:Set,Oe=null;function hu(n,a){var s=n.ref;if(s!==null)if(typeof s==\"function\")try{s(null)}catch(d){Fn(n,a,d)}else s.current=null}function Tp(n,a,s){try{s()}catch(d){Fn(n,a,d)}}var hA=!1;function AA(n,a){if(sc=$r,n=rc(),Qd(n)){if(\"selectionStart\"in n)var s={start:n.selectionStart,end:n.selectionEnd};else e:{s=(s=n.ownerDocument)&&s.defaultView||window;var d=s.getSelection&&s.getSelection();if(d&&d.rangeCount!==0){s=d.anchorNode;var g=d.anchorOffset,S=d.focusNode;d=d.focusOffset;try{s.nodeType,S.nodeType}catch(Se){s=null;break e}var k=0,D=-1,G=-1,re=0,Ue=0,xe=n,ge=null;t:for(;;){for(var De;xe!==s||g!==0&&xe.nodeType!==3||(D=k+g),xe!==S||d!==0&&xe.nodeType!==3||(G=k+d),xe.nodeType===3&&(k+=xe.nodeValue.length),(De=xe.firstChild)!==null;)ge=xe,xe=De;for(;;){if(xe===n)break t;if(ge===s&&++re===g&&(D=k),ge===S&&++Ue===d&&(G=k),(De=xe.nextSibling)!==null)break;xe=ge,ge=xe.parentNode}xe=De}s=D===-1||G===-1?null:{start:D,end:G}}else s=null}s=s||{start:0,end:0}}else s=null;for(_l={focusedElem:n,selectionRange:s},$r=!1,Oe=a;Oe!==null;)if(a=Oe,n=a.child,(a.subtreeFlags&1028)!==0&&n!==null)n.return=a,Oe=n;else for(;Oe!==null;){a=Oe;try{var Ge=a.alternate;if(a.flags&1024)switch(a.tag){case 0:case 11:case 15:break;case 1:if(Ge!==null){var He=Ge.memoizedProps,Hn=Ge.memoizedState,Z=a.stateNode,z=Z.getSnapshotBeforeUpdate(a.elementType===a.type?He:Ri(a.type,He),Hn);Z.__reactInternalSnapshotBeforeUpdate=z}break;case 3:var $=a.stateNode.containerInfo;$.nodeType===1?$.textContent=\"\":$.nodeType===9&&$.documentElement&&$.removeChild($.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(u(163))}}catch(Se){Fn(a,a.return,Se)}if(n=a.sibling,n!==null){n.return=a.return,Oe=n;break}Oe=a.return}return Ge=hA,hA=!1,Ge}function Mc(n,a,s){var d=a.updateQueue;if(d=d!==null?d.lastEffect:null,d!==null){var g=d=d.next;do{if((g.tag&n)===n){var S=g.destroy;g.destroy=void 0,S!==void 0&&Tp(a,s,S)}g=g.next}while(g!==d)}}function Bc(n,a){if(a=a.updateQueue,a=a!==null?a.lastEffect:null,a!==null){var s=a=a.next;do{if((s.tag&n)===n){var d=s.create;s.destroy=d()}s=s.next}while(s!==a)}}function Nm(n){var a=n.ref;if(a!==null){var s=n.stateNode;switch(n.tag){case 5:n=s;break;default:n=s}typeof a==\"function\"?a(n):a.current=n}}function Cp(n){var a=n.alternate;a!==null&&(n.alternate=null,Cp(a)),n.child=null,n.deletions=null,n.sibling=null,n.tag===5&&(a=n.stateNode,a!==null&&(delete a[Wi],delete a[uc],delete a[cc],delete a[su],delete a[uS])),n.stateNode=null,n.return=null,n.dependencies=null,n.memoizedProps=null,n.memoizedState=null,n.pendingProps=null,n.stateNode=null,n.updateQueue=null}function Qc(n){return n.tag===5||n.tag===3||n.tag===4}function To(n){e:for(;;){for(;n.sibling===null;){if(n.return===null||Qc(n.return))return null;n=n.return}for(n.sibling.return=n.return,n=n.sibling;n.tag!==5&&n.tag!==6&&n.tag!==18;){if(n.flags&2||n.child===null||n.tag===4)continue e;n.child.return=n,n=n.child}if(!(n.flags&2))return n.stateNode}}function _i(n,a,s){var d=n.tag;if(d===5||d===6)n=n.stateNode,a?s.nodeType===8?s.parentNode.insertBefore(n,a):s.insertBefore(n,a):(s.nodeType===8?(a=s.parentNode,a.insertBefore(n,s)):(a=s,a.appendChild(n)),s=s._reactRootContainer,s!=null||a.onclick!==null||(a.onclick=tl));else if(d!==4&&(n=n.child,n!==null))for(_i(n,a,s),n=n.sibling;n!==null;)_i(n,a,s),n=n.sibling}function $i(n,a,s){var d=n.tag;if(d===5||d===6)n=n.stateNode,a?s.insertBefore(n,a):s.appendChild(n);else if(d!==4&&(n=n.child,n!==null))for($i(n,a,s),n=n.sibling;n!==null;)$i(n,a,s),n=n.sibling}var Jn=null,Xa=!1;function _a(n,a,s){for(s=s.child;s!==null;)gA(n,a,s),s=s.sibling}function gA(n,a,s){if(fr&&typeof fr.onCommitFiberUnmount==\"function\")try{fr.onCommitFiberUnmount(Jo,s)}catch(D){}switch(s.tag){case 5:qa||hu(s,a);case 6:var d=Jn,g=Xa;Jn=null,_a(n,a,s),Jn=d,Xa=g,Jn!==null&&(Xa?(n=Jn,s=s.stateNode,n.nodeType===8?n.parentNode.removeChild(s):n.removeChild(s)):Jn.removeChild(s.stateNode));break;case 18:Jn!==null&&(Xa?(n=Jn,s=s.stateNode,n.nodeType===8?lu(n.parentNode,s):n.nodeType===1&&lu(n,s),xi(n)):lu(Jn,s.stateNode));break;case 4:d=Jn,g=Xa,Jn=s.stateNode.containerInfo,Xa=!0,_a(n,a,s),Jn=d,Xa=g;break;case 0:case 11:case 14:case 15:if(!qa&&(d=s.updateQueue,d!==null&&(d=d.lastEffect,d!==null))){g=d=d.next;do{var S=g,k=S.destroy;S=S.tag,k!==void 0&&(S&2||S&4)&&Tp(s,a,k),g=g.next}while(g!==d)}_a(n,a,s);break;case 1:if(!qa&&(hu(s,a),d=s.stateNode,typeof d.componentWillUnmount==\"function\"))try{d.props=s.memoizedProps,d.state=s.memoizedState,d.componentWillUnmount()}catch(D){Fn(s,a,D)}_a(n,a,s);break;case 21:_a(n,a,s);break;case 22:s.mode&1?(qa=(d=qa)||s.memoizedState!==null,_a(n,a,s),qa=d):_a(n,a,s);break;default:_a(n,a,s)}}function vA(n){var a=n.updateQueue;if(a!==null){n.updateQueue=null;var s=n.stateNode;s===null&&(s=n.stateNode=new dS),a.forEach(function(d){var g=bA.bind(null,n,d);s.has(d)||(s.add(d),d.then(g,g))})}}function ki(n,a){var s=a.deletions;if(s!==null)for(var d=0;d<s.length;d++){var g=s[d];try{var S=n,k=a,D=k;e:for(;D!==null;){switch(D.tag){case 5:Jn=D.stateNode,Xa=!1;break e;case 3:Jn=D.stateNode.containerInfo,Xa=!0;break e;case 4:Jn=D.stateNode.containerInfo,Xa=!0;break e}D=D.return}if(Jn===null)throw Error(u(160));gA(S,k,g),Jn=null,Xa=!1;var G=g.alternate;G!==null&&(G.return=null),g.return=null}catch(re){Fn(g,a,re)}}if(a.subtreeFlags&12854)for(a=a.child;a!==null;)wm(a,n),a=a.sibling}function wm(n,a){var s=n.alternate,d=n.flags;switch(n.tag){case 0:case 11:case 14:case 15:if(ki(a,n),Kr(n),d&4){try{Mc(3,n,n.return),Bc(3,n)}catch(He){Fn(n,n.return,He)}try{Mc(5,n,n.return)}catch(He){Fn(n,n.return,He)}}break;case 1:ki(a,n),Kr(n),d&512&&s!==null&&hu(s,s.return);break;case 5:if(ki(a,n),Kr(n),d&512&&s!==null&&hu(s,s.return),n.flags&32){var g=n.stateNode;try{Re(g,\"\")}catch(He){Fn(n,n.return,He)}}if(d&4&&(g=n.stateNode,g!=null)){var S=n.memoizedProps,k=s!==null?s.memoizedProps:S,D=n.type,G=n.updateQueue;if(n.updateQueue=null,G!==null)try{D===\"input\"&&S.type===\"radio\"&&S.name!=null&&jn(g,S),ha(D,k);var re=ha(D,S);for(k=0;k<G.length;k+=2){var Ue=G[k],xe=G[k+1];Ue===\"style\"?pn(g,xe):Ue===\"dangerouslySetInnerHTML\"?wr(g,xe):Ue===\"children\"?Re(g,xe):Y(g,Ue,xe,re)}switch(D){case\"input\":ya(g,S);break;case\"textarea\":dr(g,S);break;case\"select\":var ge=g._wrapperState.wasMultiple;g._wrapperState.wasMultiple=!!S.multiple;var De=S.value;De!=null?Kn(g,!!S.multiple,De,!1):ge!==!!S.multiple&&(S.defaultValue!=null?Kn(g,!!S.multiple,S.defaultValue,!0):Kn(g,!!S.multiple,S.multiple?[]:\"\",!1))}g[uc]=S}catch(He){Fn(n,n.return,He)}}break;case 6:if(ki(a,n),Kr(n),d&4){if(n.stateNode===null)throw Error(u(162));g=n.stateNode,S=n.memoizedProps;try{g.nodeValue=S}catch(He){Fn(n,n.return,He)}}break;case 3:if(ki(a,n),Kr(n),d&4&&s!==null&&s.memoizedState.isDehydrated)try{xi(a.containerInfo)}catch(He){Fn(n,n.return,He)}break;case 4:ki(a,n),Kr(n);break;case 13:ki(a,n),Kr(n),g=n.child,g.flags&8192&&(S=g.memoizedState!==null,g.stateNode.isHidden=S,!S||g.alternate!==null&&g.alternate.memoizedState!==null||(Bm=Ft())),d&4&&vA(n);break;case 22:if(Ue=s!==null&&s.memoizedState!==null,n.mode&1?(qa=(re=qa)||Ue,ki(a,n),qa=re):ki(a,n),Kr(n),d&8192){if(re=n.memoizedState!==null,(n.stateNode.isHidden=re)&&!Ue&&n.mode&1)for(Oe=n,Ue=n.child;Ue!==null;){for(xe=Oe=Ue;Oe!==null;){switch(ge=Oe,De=ge.child,ge.tag){case 0:case 11:case 14:case 15:Mc(4,ge,ge.return);break;case 1:hu(ge,ge.return);var Ge=ge.stateNode;if(typeof Ge.componentWillUnmount==\"function\"){d=ge,s=ge.return;try{a=d,Ge.props=a.memoizedProps,Ge.state=a.memoizedState,Ge.componentWillUnmount()}catch(He){Fn(d,s,He)}}break;case 5:hu(ge,ge.return);break;case 22:if(ge.memoizedState!==null){Dc(xe);continue}}De!==null?(De.return=ge,Oe=De):Dc(xe)}Ue=Ue.sibling}e:for(Ue=null,xe=n;;){if(xe.tag===5){if(Ue===null){Ue=xe;try{g=xe.stateNode,re?(S=g.style,typeof S.setProperty==\"function\"?S.setProperty(\"display\",\"none\",\"important\"):S.display=\"none\"):(D=xe.stateNode,G=xe.memoizedProps.style,k=G!=null&&G.hasOwnProperty(\"display\")?G.display:null,D.style.display=_t(\"display\",k))}catch(He){Fn(n,n.return,He)}}}else if(xe.tag===6){if(Ue===null)try{xe.stateNode.nodeValue=re?\"\":xe.memoizedProps}catch(He){Fn(n,n.return,He)}}else if((xe.tag!==22&&xe.tag!==23||xe.memoizedState===null||xe===n)&&xe.child!==null){xe.child.return=xe,xe=xe.child;continue}if(xe===n)break e;for(;xe.sibling===null;){if(xe.return===null||xe.return===n)break e;Ue===xe&&(Ue=null),xe=xe.return}Ue===xe&&(Ue=null),xe.sibling.return=xe.return,xe=xe.sibling}}break;case 19:ki(a,n),Kr(n),d&4&&vA(n);break;case 21:break;default:ki(a,n),Kr(n)}}function Kr(n){var a=n.flags;if(a&2){try{e:{for(var s=n.return;s!==null;){if(Qc(s)){var d=s;break e}s=s.return}throw Error(u(160))}switch(d.tag){case 5:var g=d.stateNode;d.flags&32&&(Re(g,\"\"),d.flags&=-33);var S=To(n);$i(n,S,g);break;case 3:case 4:var k=d.stateNode.containerInfo,D=To(n);_i(n,D,k);break;default:throw Error(u(161))}}catch(G){Fn(n,n.return,G)}n.flags&=-3}a&4096&&(n.flags&=-4097)}function pS(n,a,s){Oe=n,Em(n)}function Em(n,a,s){for(var d=(n.mode&1)!==0;Oe!==null;){var g=Oe,S=g.child;if(g.tag===22&&d){var k=g.memoizedState!==null||Ec;if(!k){var D=g.alternate,G=D!==null&&D.memoizedState!==null||qa;D=Ec;var re=qa;if(Ec=k,(qa=G)&&!re)for(Oe=g;Oe!==null;)k=Oe,G=k.child,k.tag===22&&k.memoizedState!==null?Mm(g):G!==null?(G.return=k,Oe=G):Mm(g);for(;S!==null;)Oe=S,Em(S),S=S.sibling;Oe=g,Ec=D,qa=re}UA(n)}else g.subtreeFlags&8772&&S!==null?(S.return=g,Oe=S):UA(n)}}function UA(n){for(;Oe!==null;){var a=Oe;if(a.flags&8772){var s=a.alternate;try{if(a.flags&8772)switch(a.tag){case 0:case 11:case 15:qa||Bc(5,a);break;case 1:var d=a.stateNode;if(a.flags&4&&!qa)if(s===null)d.componentDidMount();else{var g=a.elementType===a.type?s.memoizedProps:Ri(a.type,s.memoizedProps);d.componentDidUpdate(g,s.memoizedState,d.__reactInternalSnapshotBeforeUpdate)}var S=a.updateQueue;S!==null&&gm(a,S,d);break;case 3:var k=a.updateQueue;if(k!==null){if(s=null,a.child!==null)switch(a.child.tag){case 5:s=a.child.stateNode;break;case 1:s=a.child.stateNode}gm(a,k,s)}break;case 5:var D=a.stateNode;if(s===null&&a.flags&4){s=D;var G=a.memoizedProps;switch(a.type){case\"button\":case\"input\":case\"select\":case\"textarea\":G.autoFocus&&s.focus();break;case\"img\":G.src&&(s.src=G.src)}}break;case 6:break;case 4:break;case 12:break;case 13:if(a.memoizedState===null){var re=a.alternate;if(re!==null){var Ue=re.memoizedState;if(Ue!==null){var xe=Ue.dehydrated;xe!==null&&xi(xe)}}}break;case 19:case 17:case 21:case 22:case 23:case 25:break;default:throw Error(u(163))}qa||a.flags&512&&Nm(a)}catch(ge){Fn(a,a.return,ge)}}if(a===n){Oe=null;break}if(s=a.sibling,s!==null){s.return=a.return,Oe=s;break}Oe=a.return}}function Dc(n){for(;Oe!==null;){var a=Oe;if(a===n){Oe=null;break}var s=a.sibling;if(s!==null){s.return=a.return,Oe=s;break}Oe=a.return}}function Mm(n){for(;Oe!==null;){var a=Oe;try{switch(a.tag){case 0:case 11:case 15:var s=a.return;try{Bc(4,a)}catch(G){Fn(a,s,G)}break;case 1:var d=a.stateNode;if(typeof d.componentDidMount==\"function\"){var g=a.return;try{d.componentDidMount()}catch(G){Fn(a,g,G)}}var S=a.return;try{Nm(a)}catch(G){Fn(a,S,G)}break;case 5:var k=a.return;try{Nm(a)}catch(G){Fn(a,k,G)}}}catch(G){Fn(a,a.return,G)}if(a===n){Oe=null;break}var D=a.sibling;if(D!==null){D.return=a.return,Oe=D;break}Oe=a.return}}var fS=Math.ceil,pl=P.ReactCurrentDispatcher,ms=P.ReactCurrentOwner,ba=P.ReactCurrentBatchConfig,Lt=0,pa=null,aa=null,Ra=0,Lr=0,Au=ni(0),zn=0,jc=null,eo=0,gu=0,bp=0,Lc=null,xr=null,Bm=0,vu=1/0,Or=null,Uu=!1,hs=null,fl=null,Rp=!1,Co=null,Oc=0,ml=0,Su=null,Vc=-1,Ya=0;function ra(){return Lt&6?Ft():Vc!==-1?Vc:Vc=Ft()}function to(n){return n.mode&1?Lt&2&&Ra!==0?Ra&-Ra:cS.transition!==null?(Ya===0&&(Ya=Js()),Ya):(n=Jt,n!==0||(n=window.event,n=n===void 0?16:$s(n.type)),n):1}function $a(n,a,s,d){if(50<ml)throw ml=0,Su=null,Error(u(185));fo(n,s,d),(!(Lt&2)||n!==pa)&&(n===pa&&(!(Lt&2)&&(gu|=s),zn===4&&Ni(n,Ra)),Fr(n,d),s===1&&Lt===0&&!(a.mode&1)&&(vu=Ft()+500,cu&&zi()))}function Fr(n,a){var s=n.callbackNode;Yl(n,a);var d=Ki(n,n===pa?Ra:0);if(d===0)s!==null&&xa(s),n.callbackNode=null,n.callbackPriority=0;else if(a=d&-d,n.callbackPriority!==a){if(s!=null&&xa(s),a===1)n.tag===0?al(Qm.bind(null,n)):Hd(Qm.bind(null,n)),ou(function(){!(Lt&6)&&zi()}),s=null;else{switch(Hs(d)){case 1:s=Si;break;case 4:s=Il;break;case 16:s=ql;break;case 536870912:s=Ys;break;default:s=ql}s=kA(s,kp.bind(null,n))}n.callbackPriority=a,n.callbackNode=s}}function kp(n,a){if(Vc=-1,Ya=0,Lt&6)throw Error(u(327));var s=n.callbackNode;if(yu()&&n.callbackNode!==s)return null;var d=Ki(n,n===pa?Ra:0);if(d===0)return null;if(d&30||d&n.expiredLanes||a)a=Np(n,d);else{a=d;var g=Lt;Lt|=2;var S=yA();(pa!==n||Ra!==a)&&(Or=null,vu=Ft()+500,bo(n,a));do try{KA();break}catch(D){SA(n,D)}while(!0);dm(),pl.current=S,Lt=g,aa!==null?a=0:(pa=null,Ra=0,a=zn)}if(a!==0){if(a===2&&(g=Ho(n),g!==0&&(d=g,a=Ic(n,g))),a===1)throw s=jc,bo(n,0),Ni(n,d),Fr(n,Ft()),s;if(a===6)Ni(n,d);else{if(g=n.current.alternate,!(d&30)&&!mS(g)&&(a=Np(n,d),a===2&&(S=Ho(n),S!==0&&(d=S,a=Ic(n,S))),a===1))throw s=jc,bo(n,0),Ni(n,d),Fr(n,Ft()),s;switch(n.finishedWork=g,n.finishedLanes=d,a){case 0:case 1:throw Error(u(345));case 2:vs(n,xr,Or);break;case 3:if(Ni(n,d),(d&130023424)===d&&(a=Bm+500-Ft(),10<a)){if(Ki(n,0)!==0)break;if(g=n.suspendedLanes,(g&d)!==d){ra(),n.pingedLanes|=n.suspendedLanes&g;break}n.timeoutHandle=Wd(vs.bind(null,n,xr,Or),a);break}vs(n,xr,Or);break;case 4:if(Ni(n,d),(d&4194240)===d)break;for(a=n.eventTimes,g=-1;0<d;){var k=31-za(d);S=1<<k,k=a[k],k>g&&(g=k),d&=~S}if(d=g,d=Ft()-d,d=(120>d?120:480>d?480:1080>d?1080:1920>d?1920:3e3>d?3e3:4320>d?4320:1960*fS(d/1960))-d,10<d){n.timeoutHandle=Wd(vs.bind(null,n,xr,Or),d);break}vs(n,xr,Or);break;case 5:vs(n,xr,Or);break;default:throw Error(u(329))}}}return Fr(n,Ft()),n.callbackNode===s?kp.bind(null,n):null}function Ic(n,a){var s=Lc;return n.current.memoizedState.isDehydrated&&(bo(n,a).flags|=256),n=Np(n,a),n!==2&&(a=xr,xr=s,a!==null&&As(a)),n}function As(n){xr===null?xr=n:xr.push.apply(xr,n)}function mS(n){for(var a=n;;){if(a.flags&16384){var s=a.updateQueue;if(s!==null&&(s=s.stores,s!==null))for(var d=0;d<s.length;d++){var g=s[d],S=g.getSnapshot;g=g.value;try{if(!Ti(S(),g))return!1}catch(k){return!1}}}if(s=a.child,a.subtreeFlags&16384&&s!==null)s.return=a,a=s;else{if(a===n)break;for(;a.sibling===null;){if(a.return===null||a.return===n)return!0;a=a.return}a.sibling.return=a.return,a=a.sibling}}return!0}function Ni(n,a){for(a&=~bp,a&=~gu,n.suspendedLanes|=a,n.pingedLanes&=~a,n=n.expirationTimes;0<a;){var s=31-za(a),d=1<<s;n[s]=-1,a&=~d}}function Qm(n){if(Lt&6)throw Error(u(327));yu();var a=Ki(n,0);if(!(a&1))return Fr(n,Ft()),null;var s=Np(n,a);if(n.tag!==0&&s===2){var d=Ho(n);d!==0&&(a=d,s=Ic(n,d))}if(s===1)throw s=jc,bo(n,0),Ni(n,a),Fr(n,Ft()),s;if(s===6)throw Error(u(345));return n.finishedWork=n.current.alternate,n.finishedLanes=a,vs(n,xr,Or),Fr(n,Ft()),null}function Dm(n,a){var s=Lt;Lt|=1;try{return n(a)}finally{Lt=s,Lt===0&&(vu=Ft()+500,cu&&zi())}}function gs(n){Co!==null&&Co.tag===0&&!(Lt&6)&&yu();var a=Lt;Lt|=1;var s=ba.transition,d=Jt;try{if(ba.transition=null,Jt=1,n)return n()}finally{Jt=d,ba.transition=s,Lt=a,!(Lt&6)&&zi()}}function jm(){Lr=Au.current,An(Au)}function bo(n,a){n.finishedWork=null,n.finishedLanes=0;var s=n.timeoutHandle;if(s!==-1&&(n.timeoutHandle=-1,om(s)),aa!==null)for(s=aa.return;s!==null;){var d=s;switch(Zd(d),d.tag){case 1:d=d.type.childContextTypes,d!=null&&uu();break;case 3:is(),An(ca),An(On),tt();break;case 5:ep(d);break;case 4:is();break;case 13:An(Bn);break;case 19:An(Bn);break;case 10:pm(d.type._context);break;case 22:case 23:jm()}s=s.return}if(pa=n,aa=n=hl(n.current,null),Ra=Lr=a,zn=0,jc=null,bp=gu=eo=0,xr=Lc=null,as!==null){for(a=0;a<as.length;a++)if(s=as[a],d=s.interleaved,d!==null){s.interleaved=null;var g=d.next,S=s.pending;if(S!==null){var k=S.next;S.next=g,d.next=k}s.pending=d}as=null}return n}function SA(n,a){do{var s=aa;try{if(dm(),Et.current=ds,np){for(var d=Ht.memoizedState;d!==null;){var g=d.queue;g!==null&&(g.pending=null),d=d.next}np=!1}if(ln=0,ga=ea=Ht=null,vc=!1,os=0,ms.current=null,s===null||s.return===null){zn=1,jc=a,aa=null;break}e:{var S=n,k=s.return,D=s,G=a;if(a=Ra,D.flags|=32768,G!==null&&typeof G==\"object\"&&typeof G.then==\"function\"){var re=G,Ue=D,xe=Ue.tag;if(!(Ue.mode&1)&&(xe===0||xe===11||xe===15)){var ge=Ue.alternate;ge?(Ue.updateQueue=ge.updateQueue,Ue.memoizedState=ge.memoizedState,Ue.lanes=ge.lanes):(Ue.updateQueue=null,Ue.memoizedState=null)}var De=lA(k);if(De!==null){De.flags&=-257,dl(De,k,D,S,a),De.mode&1&&Tm(S,re,a),a=De,G=re;var Ge=a.updateQueue;if(Ge===null){var He=new Set;He.add(G),a.updateQueue=He}else Ge.add(G);break e}else{if(!(a&1)){Tm(S,re,a),Lm();break e}G=Error(u(426))}}else if(xn&&D.mode&1){var Hn=lA(k);if(Hn!==null){!(Hn.flags&65536)&&(Hn.flags|=256),dl(Hn,k,D,S,a),Ko(ps(G,D));break e}}S=G=ps(G,D),zn!==4&&(zn=2),Lc===null?Lc=[S]:Lc.push(S),S=k;do{switch(S.tag){case 3:S.flags|=65536,a&=-a,S.lanes|=a;var Z=oA(S,G,a);tA(S,Z);break e;case 1:D=G;var z=S.type,$=S.stateNode;if(!(S.flags&128)&&(typeof z.getDerivedStateFromError==\"function\"||$!==null&&typeof $.componentDidCatch==\"function\"&&(fl===null||!fl.has($)))){S.flags|=65536,a&=-a,S.lanes|=a;var Se=Fm(S,D,a);tA(S,Se);break e}}S=S.return}while(S!==null)}FA(s)}catch(We){a=We,aa===s&&s!==null&&(aa=s=s.return);continue}break}while(!0)}function yA(){var n=pl.current;return pl.current=ds,n===null?ds:n}function Lm(){(zn===0||zn===3||zn===2)&&(zn=4),pa===null||!(eo&268435455)&&!(gu&268435455)||Ni(pa,Ra)}function Np(n,a){var s=Lt;Lt|=2;var d=yA();(pa!==n||Ra!==a)&&(Or=null,bo(n,a));do try{hS();break}catch(g){SA(n,g)}while(!0);if(dm(),Lt=s,pl.current=d,aa!==null)throw Error(u(261));return pa=null,Ra=0,zn}function hS(){for(;aa!==null;)xA(aa)}function KA(){for(;aa!==null&&!vi();)xA(aa)}function xA(n){var a=RA(n.alternate,n,Lr);n.memoizedProps=n.pendingProps,a===null?FA(n):aa=a,ms.current=null}function FA(n){var a=n;do{var s=a.alternate;if(n=a.return,a.flags&32768){if(s=Fp(s,a),s!==null){s.flags&=32767,aa=s;return}if(n!==null)n.flags|=32768,n.subtreeFlags=0,n.deletions=null;else{zn=6,aa=null;return}}else if(s=mA(s,a,Lr),s!==null){aa=s;return}if(a=a.sibling,a!==null){aa=a;return}aa=a=n}while(a!==null);zn===0&&(zn=5)}function vs(n,a,s){var d=Jt,g=ba.transition;try{ba.transition=null,Jt=1,AS(n,a,s,d)}finally{ba.transition=g,Jt=d}return null}function AS(n,a,s,d){do yu();while(Co!==null);if(Lt&6)throw Error(u(327));s=n.finishedWork;var g=n.finishedLanes;if(s===null)return null;if(n.finishedWork=null,n.finishedLanes=0,s===n.current)throw Error(u(177));n.callbackNode=null,n.callbackPriority=0;var S=s.lanes|s.childLanes;if(Of(n,S),n===pa&&(aa=pa=null,Ra=0),!(s.subtreeFlags&2064)&&!(s.flags&2064)||Rp||(Rp=!0,kA(ql,function(){return yu(),null})),S=(s.flags&15990)!==0,s.subtreeFlags&15990||S){S=ba.transition,ba.transition=null;var k=Jt;Jt=1;var D=Lt;Lt|=4,ms.current=null,AA(n,s),wm(s,n),nu(_l),$r=!!sc,_l=sc=null,n.current=s,pS(s),Ui(),Lt=D,Jt=k,ba.transition=S}else n.current=s;if(Rp&&(Rp=!1,Co=n,Oc=g),S=n.pendingLanes,S===0&&(fl=null),Hu(s.stateNode),Fr(n,Ft()),a!==null)for(d=n.onRecoverableError,s=0;s<a.length;s++)g=a[s],d(g.value,{componentStack:g.stack,digest:g.digest});if(Uu)throw Uu=!1,n=hs,hs=null,n;return Oc&1&&n.tag!==0&&yu(),S=n.pendingLanes,S&1?n===Su?ml++:(ml=0,Su=n):ml=0,zi(),null}function yu(){if(Co!==null){var n=Hs(Oc),a=ba.transition,s=Jt;try{if(ba.transition=null,Jt=16>n?16:n,Co===null)var d=!1;else{if(n=Co,Co=null,Oc=0,Lt&6)throw Error(u(331));var g=Lt;for(Lt|=4,Oe=n.current;Oe!==null;){var S=Oe,k=S.child;if(Oe.flags&16){var D=S.deletions;if(D!==null){for(var G=0;G<D.length;G++){var re=D[G];for(Oe=re;Oe!==null;){var Ue=Oe;switch(Ue.tag){case 0:case 11:case 15:Mc(8,Ue,S)}var xe=Ue.child;if(xe!==null)xe.return=Ue,Oe=xe;else for(;Oe!==null;){Ue=Oe;var ge=Ue.sibling,De=Ue.return;if(Cp(Ue),Ue===re){Oe=null;break}if(ge!==null){ge.return=De,Oe=ge;break}Oe=De}}}var Ge=S.alternate;if(Ge!==null){var He=Ge.child;if(He!==null){Ge.child=null;do{var Hn=He.sibling;He.sibling=null,He=Hn}while(He!==null)}}Oe=S}}if(S.subtreeFlags&2064&&k!==null)k.return=S,Oe=k;else e:for(;Oe!==null;){if(S=Oe,S.flags&2048)switch(S.tag){case 0:case 11:case 15:Mc(9,S,S.return)}var Z=S.sibling;if(Z!==null){Z.return=S.return,Oe=Z;break e}Oe=S.return}}var z=n.current;for(Oe=z;Oe!==null;){k=Oe;var $=k.child;if(k.subtreeFlags&2064&&$!==null)$.return=k,Oe=$;else e:for(k=z;Oe!==null;){if(D=Oe,D.flags&2048)try{switch(D.tag){case 0:case 11:case 15:Bc(9,D)}}catch(We){Fn(D,D.return,We)}if(D===k){Oe=null;break e}var Se=D.sibling;if(Se!==null){Se.return=D.return,Oe=Se;break e}Oe=D.return}}if(Lt=g,zi(),fr&&typeof fr.onPostCommitFiberRoot==\"function\")try{fr.onPostCommitFiberRoot(Jo,n)}catch(We){}d=!0}return d}finally{Jt=s,ba.transition=a}}return!1}function TA(n,a,s){a=ps(s,a),a=oA(n,a,1),n=sl(n,a,1),a=ra(),n!==null&&(fo(n,1,a),Fr(n,a))}function Fn(n,a,s){if(n.tag===3)TA(n,n,s);else for(;a!==null;){if(a.tag===3){TA(a,n,s);break}else if(a.tag===1){var d=a.stateNode;if(typeof a.type.getDerivedStateFromError==\"function\"||typeof d.componentDidCatch==\"function\"&&(fl===null||!fl.has(d))){n=ps(s,n),n=Fm(a,n,1),a=sl(a,n,1),n=ra(),a!==null&&(fo(a,1,n),Fr(a,n));break}}a=a.return}}function gS(n,a,s){var d=n.pingCache;d!==null&&d.delete(a),a=ra(),n.pingedLanes|=n.suspendedLanes&s,pa===n&&(Ra&s)===s&&(zn===4||zn===3&&(Ra&130023424)===Ra&&500>Ft()-Bm?bo(n,0):bp|=s),Fr(n,a)}function CA(n,a){a===0&&(n.mode&1?(a=Mr,Mr<<=1,!(Mr&130023424)&&(Mr=4194304)):a=1);var s=ra();n=Dr(n,a),n!==null&&(fo(n,a,s),Fr(n,s))}function vS(n){var a=n.memoizedState,s=0;a!==null&&(s=a.retryLane),CA(n,s)}function bA(n,a){var s=0;switch(n.tag){case 13:var d=n.stateNode,g=n.memoizedState;g!==null&&(s=g.retryLane);break;case 19:d=n.stateNode;break;default:throw Error(u(314))}d!==null&&d.delete(a),CA(n,s)}var RA;RA=function(n,a,s){if(n!==null)if(n.memoizedProps!==a.pendingProps||ca.current)ta=!0;else{if(!(n.lanes&s)&&!(a.flags&128))return ta=!1,Nc(n,a,s);ta=!!(n.flags&131072)}else ta=!1,xn&&a.flags&1048576&&Xh(a,yo,a.index);switch(a.lanes=0,a.tag){case 2:var d=a.type;oi(n,a),n=a.pendingProps;var g=Ar(a,On.current);Mn(a,s),g=ul(null,a,d,n,g,s);var S=bi();return a.flags|=1,typeof g==\"object\"&&g!==null&&typeof g.render==\"function\"&&g.$$typeof===void 0?(a.tag=1,a.memoizedState=null,a.updateQueue=null,_n(d)?(S=!0,Aa(a)):S=!1,a.memoizedState=g.state!==null&&g.state!==void 0?g.state:null,Am(a),g.updater=Up,a.stateNode=g,g._reactInternals=a,Tc(a,d,n,s),a=Rc(null,a,d,!0,S,s)):(a.tag=0,xn&&S&&Pd(a),Ca(null,a,g,s),a=a.child),a;case 16:d=a.elementType;e:{switch(oi(n,a),n=a.pendingProps,g=d._init,d=g(d._payload),a.type=d,g=a.tag=SS(d),n=Ri(d,n),g){case 0:a=sA(null,a,d,n,s);break e;case 1:a=uA(null,a,d,n,s);break e;case 11:a=yr(null,a,d,n,s);break e;case 14:a=fs(null,a,d,Ri(d.type,n),s);break e}throw Error(u(306,d,\"\"))}return a;case 0:return d=a.type,g=a.pendingProps,g=a.elementType===d?g:Ri(d,g),sA(n,a,d,g,s);case 1:return d=a.type,g=a.pendingProps,g=a.elementType===d?g:Ri(d,g),uA(n,a,d,g,s);case 3:e:{if(mu(a),n===null)throw Error(u(387));d=a.pendingProps,S=a.memoizedState,g=S.element,eA(n,a),fc(a,d,null,s);var k=a.memoizedState;if(d=k.element,S.isDehydrated)if(S={element:d,isDehydrated:!1,cache:k.cache,pendingSuspenseBoundaries:k.pendingSuspenseBoundaries,transitions:k.transitions},a.updateQueue.baseState=S,a.memoizedState=S,a.flags&256){g=ps(Error(u(423)),a),a=cA(n,a,d,s,g);break e}else if(d!==g){g=ps(Error(u(424)),a),a=cA(n,a,d,s,g);break e}else for(vr=Gi(a.stateNode.containerInfo.firstChild),gr=a,xn=!0,ri=null,s=Me(a,null,d,s),a.child=s;s;)s.flags=s.flags&-3|4096,s=s.sibling;else{if(ll(),d===g){a=li(n,a,s);break e}Ca(n,a,d,s)}a=a.child}return a;case 5:return nA(a),n===null&&um(a),d=a.type,g=a.pendingProps,S=n!==null?n.memoizedProps:null,k=g.children,Gd(d,g)?k=null:S!==null&&Gd(d,S)&&(a.flags|=32),Cm(n,a),Ca(n,a,k,s),a.child;case 6:return n===null&&um(a),null;case 13:return xp(n,a,s);case 4:return vm(a,a.stateNode.containerInfo),d=a.pendingProps,n===null?a.child=Gn(a,null,d,s):Ca(n,a,d,s),a.child;case 11:return d=a.type,g=a.pendingProps,g=a.elementType===d?g:Ri(d,g),yr(n,a,d,g,s);case 7:return Ca(n,a,a.pendingProps,s),a.child;case 8:return Ca(n,a,a.pendingProps.children,s),a.child;case 12:return Ca(n,a,a.pendingProps.children,s),a.child;case 10:e:{if(d=a.type._context,g=a.pendingProps,S=a.memoizedProps,k=g.value,_e(Qr,d._currentValue),d._currentValue=k,S!==null)if(Ti(S.value,k)){if(S.children===g.children&&!ca.current){a=li(n,a,s);break e}}else for(S=a.child,S!==null&&(S.return=a);S!==null;){var D=S.dependencies;if(D!==null){k=S.child;for(var G=D.firstContext;G!==null;){if(G.context===d){if(S.tag===1){G=xo(-1,s&-s),G.tag=2;var re=S.updateQueue;if(re!==null){re=re.shared;var Ue=re.pending;Ue===null?G.next=G:(G.next=Ue.next,Ue.next=G),re.pending=G}}S.lanes|=s,G=S.alternate,G!==null&&(G.lanes|=s),fm(S.return,s,a),D.lanes|=s;break}G=G.next}}else if(S.tag===10)k=S.type===a.type?null:S.child;else if(S.tag===18){if(k=S.return,k===null)throw Error(u(341));k.lanes|=s,D=k.alternate,D!==null&&(D.lanes|=s),fm(k,s,a),k=S.sibling}else k=S.child;if(k!==null)k.return=S;else for(k=S;k!==null;){if(k===a){k=null;break}if(S=k.sibling,S!==null){S.return=k.return,k=S;break}k=k.return}S=k}Ca(n,a,g.children,s),a=a.child}return a;case 9:return g=a.type,d=a.pendingProps.children,Mn(a,s),g=ii(g),d=d(g),a.flags|=1,Ca(n,a,d,s),a.child;case 14:return d=a.type,g=Ri(d,a.pendingProps),g=Ri(d.type,g),fs(n,a,d,g,s);case 15:return bt(n,a,a.type,a.pendingProps,s);case 17:return d=a.type,g=a.pendingProps,g=a.elementType===d?g:Ri(d,g),oi(n,a),a.tag=1,_n(d)?(n=!0,Aa(a)):n=!1,Mn(a,s),Sp(a,d,g),Tc(a,d,g,s),Rc(null,a,d,!0,n,s);case 19:return Xi(n,a,s);case 22:return bc(n,a,s)}throw Error(u(156,a.tag))};function kA(n,a){return vn(n,a)}function US(n,a,s,d){this.tag=n,this.key=s,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=a,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=d,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function ui(n,a,s,d){return new US(n,a,s,d)}function Om(n){return n=n.prototype,!(!n||!n.isReactComponent)}function SS(n){if(typeof n==\"function\")return Om(n)?1:0;if(n!=null){if(n=n.$$typeof,n===Ce)return 11;if(n===ke)return 14}return 2}function hl(n,a){var s=n.alternate;return s===null?(s=ui(n.tag,a,n.key,n.mode),s.elementType=n.elementType,s.type=n.type,s.stateNode=n.stateNode,s.alternate=n,n.alternate=s):(s.pendingProps=a,s.type=n.type,s.flags=0,s.subtreeFlags=0,s.deletions=null),s.flags=n.flags&14680064,s.childLanes=n.childLanes,s.lanes=n.lanes,s.child=n.child,s.memoizedProps=n.memoizedProps,s.memoizedState=n.memoizedState,s.updateQueue=n.updateQueue,a=n.dependencies,s.dependencies=a===null?null:{lanes:a.lanes,firstContext:a.firstContext},s.sibling=n.sibling,s.index=n.index,s.ref=n.ref,s}function qc(n,a,s,d,g,S){var k=2;if(d=n,typeof n==\"function\")Om(n)&&(k=1);else if(typeof n==\"string\")k=5;else e:switch(n){case ye:return Ro(s.children,g,S,a);case be:k=8,g|=8;break;case Pe:return n=ui(12,s,a,g|2),n.elementType=Pe,n.lanes=S,n;case qe:return n=ui(13,s,a,g),n.elementType=qe,n.lanes=S,n;case dt:return n=ui(19,s,a,g),n.elementType=dt,n.lanes=S,n;case Ke:return Al(s,g,S,a);default:if(typeof n==\"object\"&&n!==null)switch(n.$$typeof){case ut:k=10;break e;case gt:k=9;break e;case Ce:k=11;break e;case ke:k=14;break e;case pt:k=16,d=null;break e}throw Error(u(130,n==null?n:typeof n,\"\"))}return a=ui(k,s,a,g),a.elementType=n,a.type=d,a.lanes=S,a}function Ro(n,a,s,d){return n=ui(7,n,d,a),n.lanes=s,n}function Al(n,a,s,d){return n=ui(22,n,d,a),n.elementType=Ke,n.lanes=s,n.stateNode={isHidden:!1},n}function Vm(n,a,s){return n=ui(6,n,null,a),n.lanes=s,n}function wp(n,a,s){return a=ui(4,n.children!==null?n.children:[],n.key,a),a.lanes=s,a.stateNode={containerInfo:n.containerInfo,pendingChildren:null,implementation:n.implementation},a}function NA(n,a,s,d,g){this.tag=a,this.containerInfo=n,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=zs(0),this.expirationTimes=zs(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=zs(0),this.identifierPrefix=d,this.onRecoverableError=g,this.mutableSourceEagerHydrationData=null}function Ep(n,a,s,d,g,S,k,D,G){return n=new NA(n,a,s,D,G),a===1?(a=1,S===!0&&(a|=8)):a=0,S=ui(3,null,null,a),n.current=S,S.stateNode=n,S.memoizedState={element:d,isDehydrated:s,cache:null,transitions:null,pendingSuspenseBoundaries:null},Am(S),n}function yS(n,a,s){var d=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:me,key:d==null?null:\"\"+d,children:n,containerInfo:a,implementation:s}}function Im(n){if(!n)return Va;n=n._reactInternals;e:{if(xt(n)!==n||n.tag!==1)throw Error(u(170));var a=n;do{switch(a.tag){case 3:a=a.stateNode.context;break e;case 1:if(_n(a.type)){a=a.stateNode.__reactInternalMemoizedMergedChildContext;break e}}a=a.return}while(a!==null);throw Error(u(171))}if(n.tag===1){var s=n.type;if(_n(s))return dc(n,s,a)}return a}function wA(n,a,s,d,g,S,k,D,G){return n=Ep(s,d,!0,n,g,S,k,D,G),n.context=Im(null),s=n.current,d=ra(),g=to(s),S=xo(d,g),S.callback=a!=null?a:null,sl(s,S,g),n.current.lanes=g,fo(n,g,d),Fr(n,d),n}function Mp(n,a,s,d){var g=a.current,S=ra(),k=to(g);return s=Im(s),a.context===null?a.context=s:a.pendingContext=s,a=xo(S,k),a.payload={element:n},d=d===void 0?null:d,d!==null&&(a.callback=d),n=sl(g,a,k),n!==null&&($a(n,g,k,S),$d(n,g,k)),k}function Bp(n){if(n=n.current,!n.child)return null;switch(n.child.tag){case 5:return n.child.stateNode;default:return n.child.stateNode}}function qm(n,a){if(n=n.memoizedState,n!==null&&n.dehydrated!==null){var s=n.retryLane;n.retryLane=s!==0&&s<a?s:a}}function Qp(n,a){qm(n,a),(n=n.alternate)&&qm(n,a)}function EA(){return null}var Us=typeof reportError==\"function\"?reportError:function(n){console.error(n)};function Ym(n){this._internalRoot=n}Dp.prototype.render=Ym.prototype.render=function(n){var a=this._internalRoot;if(a===null)throw Error(u(409));Mp(n,a,null,null)},Dp.prototype.unmount=Ym.prototype.unmount=function(){var n=this._internalRoot;if(n!==null){this._internalRoot=null;var a=n.containerInfo;gs(function(){Mp(null,n,null,null)}),a[Uo]=null}};function Dp(n){this._internalRoot=n}Dp.prototype.unstable_scheduleHydration=function(n){if(n){var a=vt();n={blockedOn:null,target:n,priority:a};for(var s=0;s<ua.length&&a!==0&&a<ua[s].priority;s++);ua.splice(s,0,n),s===0&&Xu(n)}};function Gm(n){return!(!n||n.nodeType!==1&&n.nodeType!==9&&n.nodeType!==11)}function jp(n){return!(!n||n.nodeType!==1&&n.nodeType!==9&&n.nodeType!==11&&(n.nodeType!==8||n.nodeValue!==\" react-mount-point-unstable \"))}function MA(){}function KS(n,a,s,d,g){if(g){if(typeof d==\"function\"){var S=d;d=function(){var re=Bp(k);S.call(re)}}var k=wA(a,d,n,0,null,!1,!1,\"\",MA);return n._reactRootContainer=k,n[Uo]=k.current,ru(n.nodeType===8?n.parentNode:n),gs(),k}for(;g=n.lastChild;)n.removeChild(g);if(typeof d==\"function\"){var D=d;d=function(){var re=Bp(G);D.call(re)}}var G=Ep(n,0,!1,null,null,!1,!1,\"\",MA);return n._reactRootContainer=G,n[Uo]=G.current,ru(n.nodeType===8?n.parentNode:n),gs(function(){Mp(a,G,s,d)}),G}function Yc(n,a,s,d,g){var S=s._reactRootContainer;if(S){var k=S;if(typeof g==\"function\"){var D=g;g=function(){var G=Bp(k);D.call(G)}}Mp(a,k,n,g)}else k=KS(s,a,n,g,d);return Bp(k)}qt=function(n){switch(n.tag){case 3:var a=n.stateNode;if(a.current.memoizedState.isDehydrated){var s=yi(a.pendingLanes);s!==0&&(mo(a,s|1),Fr(a,Ft()),!(Lt&6)&&(vu=Ft()+500,zi()))}break;case 13:gs(function(){var d=Dr(n,1);if(d!==null){var g=ra();$a(d,n,1,g)}}),Qp(n,1)}},Pu=function(n){if(n.tag===13){var a=Dr(n,134217728);if(a!==null){var s=ra();$a(a,n,134217728,s)}Qp(n,134217728)}},Oi=function(n){if(n.tag===13){var a=to(n),s=Dr(n,a);if(s!==null){var d=ra();$a(s,n,a,d)}Qp(n,a)}},vt=function(){return Jt},Ps=function(n,a){var s=Jt;try{return Jt=n,a()}finally{Jt=s}},nn=function(n,a,s){switch(a){case\"input\":if(ya(n,s),a=s.name,s.type===\"radio\"&&a!=null){for(s=n;s.parentNode;)s=s.parentNode;for(s=s.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+a)+'][type=\"radio\"]'),a=0;a<s.length;a++){var d=s[a];if(d!==n&&d.form===n.form){var g=En(d);if(!g)throw Error(u(90));ma(d),ya(d,g)}}}break;case\"textarea\":dr(n,s);break;case\"select\":a=s.value,a!=null&&Kn(n,!!s.multiple,a,!1)}},Ol=Dm,Yo=gs;var xS={usingClientEntryPoint:!1,Events:[et,Ci,En,po,Ll,Dm]},Gc={findFiberByHostInstance:$l,bundleType:0,version:\"18.3.1\",rendererPackageName:\"react-dom\"},BA={bundleType:Gc.bundleType,version:Gc.version,rendererPackageName:Gc.rendererPackageName,rendererConfig:Gc.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:P.ReactCurrentDispatcher,findHostInstanceByFiber:function(n){return n=Yn(n),n===null?null:n.stateNode},findFiberByHostInstance:Gc.findFiberByHostInstance||EA,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:\"18.3.1-next-f1338f8080-20240426\"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"){var gl=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!gl.isDisabled&&gl.supportsFiber)try{Jo=gl.inject(BA),fr=gl}catch(n){}}return Jr.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=xS,Jr.createPortal=function(n,a){var s=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!Gm(a))throw Error(u(200));return yS(n,a,null,s)},Jr.createRoot=function(n,a){if(!Gm(n))throw Error(u(299));var s=!1,d=\"\",g=Us;return a!=null&&(a.unstable_strictMode===!0&&(s=!0),a.identifierPrefix!==void 0&&(d=a.identifierPrefix),a.onRecoverableError!==void 0&&(g=a.onRecoverableError)),a=Ep(n,1,!1,null,null,s,!1,d,g),n[Uo]=a.current,ru(n.nodeType===8?n.parentNode:n),new Ym(a)},Jr.findDOMNode=function(n){if(n==null)return null;if(n.nodeType===1)return n;var a=n._reactInternals;if(a===void 0)throw typeof n.render==\"function\"?Error(u(188)):(n=Object.keys(n).join(\",\"),Error(u(268,n)));return n=Yn(a),n=n===null?null:n.stateNode,n},Jr.flushSync=function(n){return gs(n)},Jr.hydrate=function(n,a,s){if(!jp(a))throw Error(u(200));return Yc(null,n,a,!0,s)},Jr.hydrateRoot=function(n,a,s){if(!Gm(n))throw Error(u(405));var d=s!=null&&s.hydratedSources||null,g=!1,S=\"\",k=Us;if(s!=null&&(s.unstable_strictMode===!0&&(g=!0),s.identifierPrefix!==void 0&&(S=s.identifierPrefix),s.onRecoverableError!==void 0&&(k=s.onRecoverableError)),a=wA(a,null,n,1,s!=null?s:null,g,!1,S,k),n[Uo]=a.current,ru(n),d)for(n=0;n<d.length;n++)s=d[n],g=s._getVersion,g=g(s._source),a.mutableSourceEagerHydrationData==null?a.mutableSourceEagerHydrationData=[s,g]:a.mutableSourceEagerHydrationData.push(s,g);return new Dp(a)},Jr.render=function(n,a,s){if(!jp(a))throw Error(u(200));return Yc(null,n,a,!1,s)},Jr.unmountComponentAtNode=function(n){if(!jp(n))throw Error(u(40));return n._reactRootContainer?(gs(function(){Yc(null,null,n,!1,function(){n._reactRootContainer=null,n[Uo]=null})}),!0):!1},Jr.unstable_batchedUpdates=Dm,Jr.unstable_renderSubtreeIntoContainer=function(n,a,s,d){if(!jp(s))throw Error(u(200));if(n==null||n._reactInternals===void 0)throw Error(u(38));return Yc(n,a,s,!1,d)},Jr.version=\"18.3.1-next-f1338f8080-20240426\",Jr}var zr={};/**\n * @license React\n * react-dom.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var yx;function Zk(){return yx||(yx=1,process.env.NODE_ENV!==\"production\"&&function(){typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(new Error);var i=Q,o=Ux(),u=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,p=!1;function A(e){p=e}function U(e){if(!p){for(var t=arguments.length,r=new Array(t>1?t-1:0),l=1;l<t;l++)r[l-1]=arguments[l];y(\"warn\",e,r)}}function m(e){if(!p){for(var t=arguments.length,r=new Array(t>1?t-1:0),l=1;l<t;l++)r[l-1]=arguments[l];y(\"error\",e,r)}}function y(e,t,r){{var l=u.ReactDebugCurrentFrame,c=l.getStackAddendum();c!==\"\"&&(t+=\"%s\",r=r.concat([c]));var f=r.map(function(v){return String(v)});f.unshift(\"Warning: \"+t),Function.prototype.apply.call(console[e],console,f)}}var K=0,F=1,R=2,b=3,N=4,E=5,O=6,B=7,L=8,q=9,W=10,Y=11,P=12,te=13,me=14,ye=15,be=16,Pe=17,ut=18,gt=19,Ce=21,qe=22,dt=23,ke=24,pt=25,Ke=!0,de=!1,ee=!1,fe=!1,j=!1,le=!0,$e=!0,Ve=!0,nt=!0,Ye=new Set,Ze={},Kt={};function Ct(e,t){Wt(e,t),Wt(e+\"Capture\",t)}function Wt(e,t){Ze[e]&&m(\"EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.\",e),Ze[e]=t;{var r=e.toLowerCase();Kt[r]=e,e===\"onDoubleClick\"&&(Kt.ondblclick=e)}for(var l=0;l<t.length;l++)Ye.add(t[l])}var Rn=typeof window!=\"undefined\"&&typeof window.document!=\"undefined\"&&typeof window.document.createElement!=\"undefined\",ma=Object.prototype.hasOwnProperty;function yn(e){{var t=typeof Symbol==\"function\"&&Symbol.toStringTag,r=t&&e[Symbol.toStringTag]||e.constructor.name||\"Object\";return r}}function Zn(e){try{return Dn(e),!1}catch(t){return!0}}function Dn(e){return\"\"+e}function jn(e,t){if(Zn(e))return m(\"The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before before using it here.\",t,yn(e)),Dn(e)}function ya(e){if(Zn(e))return m(\"The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.\",yn(e)),Dn(e)}function Nr(e,t){if(Zn(e))return m(\"The provided `%s` prop is an unsupported type %s. This value must be coerced to a string before before using it here.\",t,yn(e)),Dn(e)}function ja(e,t){if(Zn(e))return m(\"The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before before using it here.\",t,yn(e)),Dn(e)}function qn(e){if(Zn(e))return m(\"The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before before using it here.\",yn(e)),Dn(e)}function Kn(e){if(Zn(e))return m(\"Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before before using it here.\",yn(e)),Dn(e)}var Ln=0,la=1,dr=2,kn=3,sa=4,La=5,pr=6,wr=\":A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\",Re=wr+\"\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040\",ze=new RegExp(\"^[\"+wr+\"][\"+Re+\"]*$\"),kt={},_t={};function pn(e){return ma.call(_t,e)?!0:ma.call(kt,e)?!1:ze.test(e)?(_t[e]=!0,!0):(kt[e]=!0,m(\"Invalid attribute name: `%s`\",e),!1)}function Nn(e,t,r){return t!==null?t.type===Ln:r?!1:e.length>2&&(e[0]===\"o\"||e[0]===\"O\")&&(e[1]===\"n\"||e[1]===\"N\")}function gn(e,t,r,l){if(r!==null&&r.type===Ln)return!1;switch(typeof t){case\"function\":case\"symbol\":return!0;case\"boolean\":{if(l)return!1;if(r!==null)return!r.acceptsBooleans;var c=e.toLowerCase().slice(0,5);return c!==\"data-\"&&c!==\"aria-\"}default:return!1}}function ha(e,t,r,l){if(t===null||typeof t==\"undefined\"||gn(e,t,r,l))return!0;if(l)return!1;if(r!==null)switch(r.type){case kn:return!t;case sa:return t===!1;case La:return isNaN(t);case pr:return isNaN(t)||t<1}return!1}function fn(e){return nn.hasOwnProperty(e)?nn[e]:null}function tn(e,t,r,l,c,f,v){this.acceptsBooleans=t===dr||t===kn||t===sa,this.attributeName=l,this.attributeNamespace=c,this.mustUseProperty=r,this.propertyName=e,this.type=t,this.sanitizeURL=f,this.removeEmptyString=v}var nn={},Er=[\"children\",\"dangerouslySetInnerHTML\",\"defaultValue\",\"defaultChecked\",\"innerHTML\",\"suppressContentEditableWarning\",\"suppressHydrationWarning\",\"style\"];Er.forEach(function(e){nn[e]=new tn(e,Ln,!1,e,null,!1,!1)}),[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach(function(e){var t=e[0],r=e[1];nn[t]=new tn(t,la,!1,r,null,!1,!1)}),[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach(function(e){nn[e]=new tn(e,dr,!1,e.toLowerCase(),null,!1,!1)}),[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach(function(e){nn[e]=new tn(e,dr,!1,e,null,!1,!1)}),[\"allowFullScreen\",\"async\",\"autoFocus\",\"autoPlay\",\"controls\",\"default\",\"defer\",\"disabled\",\"disablePictureInPicture\",\"disableRemotePlayback\",\"formNoValidate\",\"hidden\",\"loop\",\"noModule\",\"noValidate\",\"open\",\"playsInline\",\"readOnly\",\"required\",\"reversed\",\"scoped\",\"seamless\",\"itemScope\"].forEach(function(e){nn[e]=new tn(e,kn,!1,e.toLowerCase(),null,!1,!1)}),[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach(function(e){nn[e]=new tn(e,kn,!0,e,null,!1,!1)}),[\"capture\",\"download\"].forEach(function(e){nn[e]=new tn(e,sa,!1,e,null,!1,!1)}),[\"cols\",\"rows\",\"size\",\"span\"].forEach(function(e){nn[e]=new tn(e,pr,!1,e,null,!1,!1)}),[\"rowSpan\",\"start\"].forEach(function(e){nn[e]=new tn(e,La,!1,e.toLowerCase(),null,!1,!1)});var Oa=/[\\-\\:]([a-z])/g,Zr=function(e){return e[1].toUpperCase()};[\"accent-height\",\"alignment-baseline\",\"arabic-form\",\"baseline-shift\",\"cap-height\",\"clip-path\",\"clip-rule\",\"color-interpolation\",\"color-interpolation-filters\",\"color-profile\",\"color-rendering\",\"dominant-baseline\",\"enable-background\",\"fill-opacity\",\"fill-rule\",\"flood-color\",\"flood-opacity\",\"font-family\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-weight\",\"glyph-name\",\"glyph-orientation-horizontal\",\"glyph-orientation-vertical\",\"horiz-adv-x\",\"horiz-origin-x\",\"image-rendering\",\"letter-spacing\",\"lighting-color\",\"marker-end\",\"marker-mid\",\"marker-start\",\"overline-position\",\"overline-thickness\",\"paint-order\",\"panose-1\",\"pointer-events\",\"rendering-intent\",\"shape-rendering\",\"stop-color\",\"stop-opacity\",\"strikethrough-position\",\"strikethrough-thickness\",\"stroke-dasharray\",\"stroke-dashoffset\",\"stroke-linecap\",\"stroke-linejoin\",\"stroke-miterlimit\",\"stroke-opacity\",\"stroke-width\",\"text-anchor\",\"text-decoration\",\"text-rendering\",\"underline-position\",\"underline-thickness\",\"unicode-bidi\",\"unicode-range\",\"units-per-em\",\"v-alphabetic\",\"v-hanging\",\"v-ideographic\",\"v-mathematical\",\"vector-effect\",\"vert-adv-y\",\"vert-origin-x\",\"vert-origin-y\",\"word-spacing\",\"writing-mode\",\"xmlns:xlink\",\"x-height\"].forEach(function(e){var t=e.replace(Oa,Zr);nn[t]=new tn(t,la,!1,e,null,!1,!1)}),[\"xlink:actuate\",\"xlink:arcrole\",\"xlink:role\",\"xlink:show\",\"xlink:title\",\"xlink:type\"].forEach(function(e){var t=e.replace(Oa,Zr);nn[t]=new tn(t,la,!1,e,\"http://www.w3.org/1999/xlink\",!1,!1)}),[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach(function(e){var t=e.replace(Oa,Zr);nn[t]=new tn(t,la,!1,e,\"http://www.w3.org/XML/1998/namespace\",!1,!1)}),[\"tabIndex\",\"crossOrigin\"].forEach(function(e){nn[e]=new tn(e,la,!1,e.toLowerCase(),null,!1,!1)});var po=\"xlinkHref\";nn[po]=new tn(\"xlinkHref\",la,!1,\"xlink:href\",\"http://www.w3.org/1999/xlink\",!0,!1),[\"src\",\"href\",\"action\",\"formAction\"].forEach(function(e){nn[e]=new tn(e,la,!1,e.toLowerCase(),null,!0,!0)});var Ll=/^[\\u0000-\\u001F ]*j[\\r\\n\\t]*a[\\r\\n\\t]*v[\\r\\n\\t]*a[\\r\\n\\t]*s[\\r\\n\\t]*c[\\r\\n\\t]*r[\\r\\n\\t]*i[\\r\\n\\t]*p[\\r\\n\\t]*t[\\r\\n\\t]*\\:/i,Ol=!1;function Yo(e){!Ol&&Ll.test(e)&&(Ol=!0,m(\"A future version of React will block javascript: URLs as a security precaution. Use event handlers instead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s.\",JSON.stringify(e)))}function Go(e,t,r,l){if(l.mustUseProperty){var c=l.propertyName;return e[c]}else{jn(r,t),l.sanitizeURL&&Yo(\"\"+r);var f=l.attributeName,v=null;if(l.type===sa){if(e.hasAttribute(f)){var x=e.getAttribute(f);return x===\"\"?!0:ha(t,r,l,!1)?x:x===\"\"+r?r:x}}else if(e.hasAttribute(f)){if(ha(t,r,l,!1))return e.getAttribute(f);if(l.type===kn)return r;v=e.getAttribute(f)}return ha(t,r,l,!1)?v===null?r:v:v===\"\"+r?r:v}}function Vl(e,t,r,l){{if(!pn(t))return;if(!e.hasAttribute(t))return r===void 0?void 0:null;var c=e.getAttribute(t);return jn(r,t),c===\"\"+r?r:c}}function Wa(e,t,r,l){var c=fn(t);if(!Nn(t,c,l)){if(ha(t,r,c,l)&&(r=null),l||c===null){if(pn(t)){var f=t;r===null?e.removeAttribute(f):(jn(r,t),e.setAttribute(f,\"\"+r))}return}var v=c.mustUseProperty;if(v){var x=c.propertyName;if(r===null){var T=c.type;e[x]=T===kn?!1:\"\"}else e[x]=r;return}var w=c.attributeName,M=c.attributeNamespace;if(r===null)e.removeAttribute(w);else{var H=c.type,J;H===kn||H===sa&&r===!0?J=\"\":(jn(r,w),J=\"\"+r,c.sanitizeURL&&Yo(J.toString())),M?e.setAttributeNS(M,w,J):e.setAttribute(w,J)}}}var Ja=Symbol.for(\"react.element\"),Ka=Symbol.for(\"react.portal\"),Di=Symbol.for(\"react.fragment\"),gi=Symbol.for(\"react.strict_mode\"),ji=Symbol.for(\"react.profiler\"),Li=Symbol.for(\"react.provider\"),I=Symbol.for(\"react.context\"),he=Symbol.for(\"react.forward_ref\"),Ee=Symbol.for(\"react.suspense\"),Ie=Symbol.for(\"react.suspense_list\"),xt=Symbol.for(\"react.memo\"),Ut=Symbol.for(\"react.lazy\"),Bt=Symbol.for(\"react.scope\"),wt=Symbol.for(\"react.debug_trace_mode\"),Yn=Symbol.for(\"react.offscreen\"),mn=Symbol.for(\"react.legacy_hidden\"),vn=Symbol.for(\"react.cache\"),xa=Symbol.for(\"react.tracing_marker\"),vi=Symbol.iterator,Ui=\"@@iterator\";function Ft(e){if(e===null||typeof e!=\"object\")return null;var t=vi&&e[vi]||e[Ui];return typeof t==\"function\"?t:null}var Rt=Object.assign,Si=0,Il,ql,Wo,Ys,Jo,fr,Hu;function za(){}za.__reactDisabledLog=!0;function kd(){{if(Si===0){Il=console.log,ql=console.info,Wo=console.warn,Ys=console.error,Jo=console.group,fr=console.groupCollapsed,Hu=console.groupEnd;var e={configurable:!0,enumerable:!0,value:za,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}Si++}}function Nd(){{if(Si--,Si===0){var e={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:Rt({},e,{value:Il}),info:Rt({},e,{value:ql}),warn:Rt({},e,{value:Wo}),error:Rt({},e,{value:Ys}),group:Rt({},e,{value:Jo}),groupCollapsed:Rt({},e,{value:fr}),groupEnd:Rt({},e,{value:Hu})})}Si<0&&m(\"disabledDepth fell below zero. This is a bug in React. Please file an issue.\")}}var Gs=u.ReactCurrentDispatcher,zo;function Mr(e,t,r){{if(zo===void 0)try{throw Error()}catch(c){var l=c.stack.trim().match(/\\n( *(at )?)/);zo=l&&l[1]||\"\"}return`\n`+zo+e}}var yi=!1,Ki;{var Ws=typeof WeakMap==\"function\"?WeakMap:Map;Ki=new Ws}function Yl(e,t){if(!e||yi)return\"\";{var r=Ki.get(e);if(r!==void 0)return r}var l;yi=!0;var c=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var f;f=Gs.current,Gs.current=null,kd();try{if(t){var v=function(){throw Error()};if(Object.defineProperty(v.prototype,\"props\",{set:function(){throw Error()}}),typeof Reflect==\"object\"&&Reflect.construct){try{Reflect.construct(v,[])}catch(ie){l=ie}Reflect.construct(e,[],v)}else{try{v.call()}catch(ie){l=ie}e.call(v.prototype)}}else{try{throw Error()}catch(ie){l=ie}e()}}catch(ie){if(ie&&l&&typeof ie.stack==\"string\"){for(var x=ie.stack.split(`\n`),T=l.stack.split(`\n`),w=x.length-1,M=T.length-1;w>=1&&M>=0&&x[w]!==T[M];)M--;for(;w>=1&&M>=0;w--,M--)if(x[w]!==T[M]){if(w!==1||M!==1)do if(w--,M--,M<0||x[w]!==T[M]){var H=`\n`+x[w].replace(\" at new \",\" at \");return e.displayName&&H.includes(\"<anonymous>\")&&(H=H.replace(\"<anonymous>\",e.displayName)),typeof e==\"function\"&&Ki.set(e,H),H}while(w>=1&&M>=0);break}}}finally{yi=!1,Gs.current=f,Nd(),Error.prepareStackTrace=c}var J=e?e.displayName||e.name:\"\",ne=J?Mr(J):\"\";return typeof e==\"function\"&&Ki.set(e,ne),ne}function Ho(e,t,r){return Yl(e,!0)}function Js(e,t,r){return Yl(e,!1)}function zs(e){var t=e.prototype;return!!(t&&t.isReactComponent)}function fo(e,t,r){if(e==null)return\"\";if(typeof e==\"function\")return Yl(e,zs(e));if(typeof e==\"string\")return Mr(e);switch(e){case Ee:return Mr(\"Suspense\");case Ie:return Mr(\"SuspenseList\")}if(typeof e==\"object\")switch(e.$$typeof){case he:return Js(e.render);case xt:return fo(e.type,t,r);case Ut:{var l=e,c=l._payload,f=l._init;try{return fo(f(c),t,r)}catch(v){}}}return\"\"}function Of(e){switch(e._debugOwner&&e._debugOwner.type,e._debugSource,e.tag){case E:return Mr(e.type);case be:return Mr(\"Lazy\");case te:return Mr(\"Suspense\");case gt:return Mr(\"SuspenseList\");case K:case R:case ye:return Js(e.type);case Y:return Js(e.type.render);case F:return Ho(e.type);default:return\"\"}}function mo(e){try{var t=\"\",r=e;do t+=Of(r),r=r.return;while(r);return t}catch(l){return`\nError generating stack: `+l.message+`\n`+l.stack}}function Jt(e,t,r){var l=e.displayName;if(l)return l;var c=t.displayName||t.name||\"\";return c!==\"\"?r+\"(\"+c+\")\":r}function Hs(e){return e.displayName||\"Context\"}function qt(e){if(e==null)return null;if(typeof e.tag==\"number\"&&m(\"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"),typeof e==\"function\")return e.displayName||e.name||null;if(typeof e==\"string\")return e;switch(e){case Di:return\"Fragment\";case Ka:return\"Portal\";case ji:return\"Profiler\";case gi:return\"StrictMode\";case Ee:return\"Suspense\";case Ie:return\"SuspenseList\"}if(typeof e==\"object\")switch(e.$$typeof){case I:var t=e;return Hs(t)+\".Consumer\";case Li:var r=e;return Hs(r._context)+\".Provider\";case he:return Jt(e,e.render,\"ForwardRef\");case xt:var l=e.displayName||null;return l!==null?l:qt(e.type)||\"Memo\";case Ut:{var c=e,f=c._payload,v=c._init;try{return qt(v(f))}catch(x){return null}}}return null}function Pu(e,t,r){var l=t.displayName||t.name||\"\";return e.displayName||(l!==\"\"?r+\"(\"+l+\")\":r)}function Oi(e){return e.displayName||\"Context\"}function vt(e){var t=e.tag,r=e.type;switch(t){case ke:return\"Cache\";case q:var l=r;return Oi(l)+\".Consumer\";case W:var c=r;return Oi(c._context)+\".Provider\";case ut:return\"DehydratedFragment\";case Y:return Pu(r,r.render,\"ForwardRef\");case B:return\"Fragment\";case E:return r;case N:return\"Portal\";case b:return\"Root\";case O:return\"Text\";case be:return qt(r);case L:return r===gi?\"StrictMode\":\"Mode\";case qe:return\"Offscreen\";case P:return\"Profiler\";case Ce:return\"Scope\";case te:return\"Suspense\";case gt:return\"SuspenseList\";case pt:return\"TracingMarker\";case F:case K:case Pe:case R:case me:case ye:if(typeof r==\"function\")return r.displayName||r.name||null;if(typeof r==\"string\")return r;break}return null}var Ps=u.ReactDebugCurrentFrame,Fa=null,Vi=!1;function Ha(){{if(Fa===null)return null;var e=Fa._debugOwner;if(e!==null&&typeof e!=\"undefined\")return vt(e)}return null}function Ii(){return Fa===null?\"\":mo(Fa)}function Un(){Ps.getCurrentStack=null,Fa=null,Vi=!1}function an(e){Ps.getCurrentStack=e===null?null:Ii,Fa=e,Vi=!1}function Po(){return Fa}function ua(e){Vi=e}function Pa(e){return\"\"+e}function Xr(e){switch(typeof e){case\"boolean\":case\"number\":case\"string\":case\"undefined\":return e;case\"object\":return Kn(e),e;default:return\"\"}}var Gl={button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0};function Zu(e,t){Gl[t.type]||t.onChange||t.onInput||t.readOnly||t.disabled||t.value==null||m(\"You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.\"),t.onChange||t.readOnly||t.disabled||t.checked==null||m(\"You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.\")}function Xu(e){var t=e.type,r=e.nodeName;return r&&r.toLowerCase()===\"input\"&&(t===\"checkbox\"||t===\"radio\")}function Zo(e){return e._valueTracker}function Wl(e){e._valueTracker=null}function Vf(e){var t=\"\";return e&&(Xu(e)?t=e.checked?\"true\":\"false\":t=e.value),t}function _r(e){var t=Xu(e)?\"checked\":\"value\",r=Object.getOwnPropertyDescriptor(e.constructor.prototype,t);Kn(e[t]);var l=\"\"+e[t];if(!(e.hasOwnProperty(t)||typeof r==\"undefined\"||typeof r.get!=\"function\"||typeof r.set!=\"function\")){var c=r.get,f=r.set;Object.defineProperty(e,t,{configurable:!0,get:function(){return c.call(this)},set:function(x){Kn(x),l=\"\"+x,f.call(this,x)}}),Object.defineProperty(e,t,{enumerable:r.enumerable});var v={getValue:function(){return l},setValue:function(x){Kn(x),l=\"\"+x},stopTracking:function(){Wl(e),delete e[t]}};return v}}function xi(e){Zo(e)||(e._valueTracker=_r(e))}function qi(e){if(!e)return!1;var t=Zo(e);if(!t)return!0;var r=t.getValue(),l=Vf(e);return l!==r?(t.setValue(l),!0):!1}function $r(e){if(e=e||(typeof document!=\"undefined\"?document:void 0),typeof e==\"undefined\")return null;try{return e.activeElement||e.body}catch(t){return e.body}}var Zs=!1,Xs=!1,Xo=!1,Jl=!1;function _s(e){var t=e.type===\"checkbox\"||e.type===\"radio\";return t?e.checked!=null:e.value!=null}function $s(e,t){var r=e,l=t.checked,c=Rt({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:l!=null?l:r._wrapperState.initialChecked});return c}function Fi(e,t){Zu(\"input\",t),t.checked!==void 0&&t.defaultChecked!==void 0&&!Xs&&(m(\"%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components\",Ha()||\"A component\",t.type),Xs=!0),t.value!==void 0&&t.defaultValue!==void 0&&!Zs&&(m(\"%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.org/link/controlled-components\",Ha()||\"A component\",t.type),Zs=!0);var r=e,l=t.defaultValue==null?\"\":t.defaultValue;r._wrapperState={initialChecked:t.checked!=null?t.checked:t.defaultChecked,initialValue:Xr(t.value!=null?t.value:l),controlled:_s(t)}}function C(e,t){var r=e,l=t.checked;l!=null&&Wa(r,\"checked\",l,!1)}function V(e,t){var r=e;{var l=_s(t);!r._wrapperState.controlled&&l&&!Jl&&(m(\"A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components\"),Jl=!0),r._wrapperState.controlled&&!l&&!Xo&&(m(\"A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://reactjs.org/link/controlled-components\"),Xo=!0)}C(e,t);var c=Xr(t.value),f=t.type;if(c!=null)f===\"number\"?(c===0&&r.value===\"\"||r.value!=c)&&(r.value=Pa(c)):r.value!==Pa(c)&&(r.value=Pa(c));else if(f===\"submit\"||f===\"reset\"){r.removeAttribute(\"value\");return}t.hasOwnProperty(\"value\")?at(r,t.type,c):t.hasOwnProperty(\"defaultValue\")&&at(r,t.type,Xr(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(r.defaultChecked=!!t.defaultChecked)}function ae(e,t,r){var l=e;if(t.hasOwnProperty(\"value\")||t.hasOwnProperty(\"defaultValue\")){var c=t.type,f=c===\"submit\"||c===\"reset\";if(f&&(t.value===void 0||t.value===null))return;var v=Pa(l._wrapperState.initialValue);r||v!==l.value&&(l.value=v),l.defaultValue=v}var x=l.name;x!==\"\"&&(l.name=\"\"),l.defaultChecked=!l.defaultChecked,l.defaultChecked=!!l._wrapperState.initialChecked,x!==\"\"&&(l.name=x)}function oe(e,t){var r=e;V(r,t),Te(r,t)}function Te(e,t){var r=t.name;if(t.type===\"radio\"&&r!=null){for(var l=e;l.parentNode;)l=l.parentNode;jn(r,\"name\");for(var c=l.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+r)+'][type=\"radio\"]'),f=0;f<c.length;f++){var v=c[f];if(!(v===e||v.form!==e.form)){var x=_A(v);if(!x)throw new Error(\"ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.\");qi(v),V(v,x)}}}}function at(e,t,r){(t!==\"number\"||$r(e.ownerDocument)!==e)&&(r==null?e.defaultValue=Pa(e._wrapperState.initialValue):e.defaultValue!==Pa(r)&&(e.defaultValue=Pa(r)))}var we=!1,lt=!1,Qt=!1;function Yt(e,t){t.value==null&&(typeof t.children==\"object\"&&t.children!==null?i.Children.forEach(t.children,function(r){r!=null&&(typeof r==\"string\"||typeof r==\"number\"||lt||(lt=!0,m(\"Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to <option>.\")))}):t.dangerouslySetInnerHTML!=null&&(Qt||(Qt=!0,m(\"Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected.\")))),t.selected!=null&&!we&&(m(\"Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>.\"),we=!0)}function hn(e,t){t.value!=null&&e.setAttribute(\"value\",Pa(Xr(t.value)))}var rn=Array.isArray;function Nt(e){return rn(e)}var on;on=!1;function wn(){var e=Ha();return e?`\n\nCheck the render method of \\``+e+\"`.\":\"\"}var _o=[\"value\",\"defaultValue\"];function _u(e){{Zu(\"select\",e);for(var t=0;t<_o.length;t++){var r=_o[t];if(e[r]!=null){var l=Nt(e[r]);e.multiple&&!l?m(\"The `%s` prop supplied to <select> must be an array if `multiple` is true.%s\",r,wn()):!e.multiple&&l&&m(\"The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s\",r,wn())}}}}function ho(e,t,r,l){var c=e.options;if(t){for(var f=r,v={},x=0;x<f.length;x++)v[\"$\"+f[x]]=!0;for(var T=0;T<c.length;T++){var w=v.hasOwnProperty(\"$\"+c[T].value);c[T].selected!==w&&(c[T].selected=w),w&&l&&(c[T].defaultSelected=!0)}}else{for(var M=Pa(Xr(r)),H=null,J=0;J<c.length;J++){if(c[J].value===M){c[J].selected=!0,l&&(c[J].defaultSelected=!0);return}H===null&&!c[J].disabled&&(H=c[J])}H!==null&&(H.selected=!0)}}function $u(e,t){return Rt({},t,{value:void 0})}function zl(e,t){var r=e;_u(t),r._wrapperState={wasMultiple:!!t.multiple},t.value!==void 0&&t.defaultValue!==void 0&&!on&&(m(\"Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://reactjs.org/link/controlled-components\"),on=!0)}function If(e,t){var r=e;r.multiple=!!t.multiple;var l=t.value;l!=null?ho(r,!!t.multiple,l,!1):t.defaultValue!=null&&ho(r,!!t.multiple,t.defaultValue,!0)}function wd(e,t){var r=e,l=r._wrapperState.wasMultiple;r._wrapperState.wasMultiple=!!t.multiple;var c=t.value;c!=null?ho(r,!!t.multiple,c,!1):l!==!!t.multiple&&(t.defaultValue!=null?ho(r,!!t.multiple,t.defaultValue,!0):ho(r,!!t.multiple,t.multiple?[]:\"\",!1))}function qf(e,t){var r=e,l=t.value;l!=null&&ho(r,!!t.multiple,l,!1)}var yh=!1;function Yf(e,t){var r=e;if(t.dangerouslySetInnerHTML!=null)throw new Error(\"`dangerouslySetInnerHTML` does not make sense on <textarea>.\");var l=Rt({},t,{value:void 0,defaultValue:void 0,children:Pa(r._wrapperState.initialValue)});return l}function Gf(e,t){var r=e;Zu(\"textarea\",t),t.value!==void 0&&t.defaultValue!==void 0&&!yh&&(m(\"%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://reactjs.org/link/controlled-components\",Ha()||\"A component\"),yh=!0);var l=t.value;if(l==null){var c=t.children,f=t.defaultValue;if(c!=null){m(\"Use the `defaultValue` or `value` props instead of setting children on <textarea>.\");{if(f!=null)throw new Error(\"If you supply `defaultValue` on a <textarea>, do not pass children.\");if(Nt(c)){if(c.length>1)throw new Error(\"<textarea> can only have at most one child.\");c=c[0]}f=c}}f==null&&(f=\"\"),l=f}r._wrapperState={initialValue:Xr(l)}}function Kh(e,t){var r=e,l=Xr(t.value),c=Xr(t.defaultValue);if(l!=null){var f=Pa(l);f!==r.value&&(r.value=f),t.defaultValue==null&&r.defaultValue!==f&&(r.defaultValue=f)}c!=null&&(r.defaultValue=Pa(c))}function xh(e,t){var r=e,l=r.textContent;l===r._wrapperState.initialValue&&l!==\"\"&&l!==null&&(r.value=l)}function _U(e,t){Kh(e,t)}var Ao=\"http://www.w3.org/1999/xhtml\",Wf=\"http://www.w3.org/1998/Math/MathML\",Jf=\"http://www.w3.org/2000/svg\";function zf(e){switch(e){case\"svg\":return Jf;case\"math\":return Wf;default:return Ao}}function Hf(e,t){return e==null||e===Ao?zf(t):e===Jf&&t===\"foreignObject\"?Ao:e}var Fh=function(e){return typeof MSApp!=\"undefined\"&&MSApp.execUnsafeLocalFunction?function(t,r,l,c){MSApp.execUnsafeLocalFunction(function(){return e(t,r,l,c)})}:e},Ed,Th=Fh(function(e,t){if(e.namespaceURI===Jf&&!(\"innerHTML\"in e)){Ed=Ed||document.createElement(\"div\"),Ed.innerHTML=\"<svg>\"+t.valueOf().toString()+\"</svg>\";for(var r=Ed.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;r.firstChild;)e.appendChild(r.firstChild);return}e.innerHTML=t}),mr=1,go=3,Xn=8,vo=9,Pf=11,eu=function(e,t){if(t){var r=e.firstChild;if(r&&r===e.lastChild&&r.nodeType===go){r.nodeValue=t;return}}e.textContent=t},ec={animation:[\"animationDelay\",\"animationDirection\",\"animationDuration\",\"animationFillMode\",\"animationIterationCount\",\"animationName\",\"animationPlayState\",\"animationTimingFunction\"],background:[\"backgroundAttachment\",\"backgroundClip\",\"backgroundColor\",\"backgroundImage\",\"backgroundOrigin\",\"backgroundPositionX\",\"backgroundPositionY\",\"backgroundRepeat\",\"backgroundSize\"],backgroundPosition:[\"backgroundPositionX\",\"backgroundPositionY\"],border:[\"borderBottomColor\",\"borderBottomStyle\",\"borderBottomWidth\",\"borderImageOutset\",\"borderImageRepeat\",\"borderImageSlice\",\"borderImageSource\",\"borderImageWidth\",\"borderLeftColor\",\"borderLeftStyle\",\"borderLeftWidth\",\"borderRightColor\",\"borderRightStyle\",\"borderRightWidth\",\"borderTopColor\",\"borderTopStyle\",\"borderTopWidth\"],borderBlockEnd:[\"borderBlockEndColor\",\"borderBlockEndStyle\",\"borderBlockEndWidth\"],borderBlockStart:[\"borderBlockStartColor\",\"borderBlockStartStyle\",\"borderBlockStartWidth\"],borderBottom:[\"borderBottomColor\",\"borderBottomStyle\",\"borderBottomWidth\"],borderColor:[\"borderBottomColor\",\"borderLeftColor\",\"borderRightColor\",\"borderTopColor\"],borderImage:[\"borderImageOutset\",\"borderImageRepeat\",\"borderImageSlice\",\"borderImageSource\",\"borderImageWidth\"],borderInlineEnd:[\"borderInlineEndColor\",\"borderInlineEndStyle\",\"borderInlineEndWidth\"],borderInlineStart:[\"borderInlineStartColor\",\"borderInlineStartStyle\",\"borderInlineStartWidth\"],borderLeft:[\"borderLeftColor\",\"borderLeftStyle\",\"borderLeftWidth\"],borderRadius:[\"borderBottomLeftRadius\",\"borderBottomRightRadius\",\"borderTopLeftRadius\",\"borderTopRightRadius\"],borderRight:[\"borderRightColor\",\"borderRightStyle\",\"borderRightWidth\"],borderStyle:[\"borderBottomStyle\",\"borderLeftStyle\",\"borderRightStyle\",\"borderTopStyle\"],borderTop:[\"borderTopColor\",\"borderTopStyle\",\"borderTopWidth\"],borderWidth:[\"borderBottomWidth\",\"borderLeftWidth\",\"borderRightWidth\",\"borderTopWidth\"],columnRule:[\"columnRuleColor\",\"columnRuleStyle\",\"columnRuleWidth\"],columns:[\"columnCount\",\"columnWidth\"],flex:[\"flexBasis\",\"flexGrow\",\"flexShrink\"],flexFlow:[\"flexDirection\",\"flexWrap\"],font:[\"fontFamily\",\"fontFeatureSettings\",\"fontKerning\",\"fontLanguageOverride\",\"fontSize\",\"fontSizeAdjust\",\"fontStretch\",\"fontStyle\",\"fontVariant\",\"fontVariantAlternates\",\"fontVariantCaps\",\"fontVariantEastAsian\",\"fontVariantLigatures\",\"fontVariantNumeric\",\"fontVariantPosition\",\"fontWeight\",\"lineHeight\"],fontVariant:[\"fontVariantAlternates\",\"fontVariantCaps\",\"fontVariantEastAsian\",\"fontVariantLigatures\",\"fontVariantNumeric\",\"fontVariantPosition\"],gap:[\"columnGap\",\"rowGap\"],grid:[\"gridAutoColumns\",\"gridAutoFlow\",\"gridAutoRows\",\"gridTemplateAreas\",\"gridTemplateColumns\",\"gridTemplateRows\"],gridArea:[\"gridColumnEnd\",\"gridColumnStart\",\"gridRowEnd\",\"gridRowStart\"],gridColumn:[\"gridColumnEnd\",\"gridColumnStart\"],gridColumnGap:[\"columnGap\"],gridGap:[\"columnGap\",\"rowGap\"],gridRow:[\"gridRowEnd\",\"gridRowStart\"],gridRowGap:[\"rowGap\"],gridTemplate:[\"gridTemplateAreas\",\"gridTemplateColumns\",\"gridTemplateRows\"],listStyle:[\"listStyleImage\",\"listStylePosition\",\"listStyleType\"],margin:[\"marginBottom\",\"marginLeft\",\"marginRight\",\"marginTop\"],marker:[\"markerEnd\",\"markerMid\",\"markerStart\"],mask:[\"maskClip\",\"maskComposite\",\"maskImage\",\"maskMode\",\"maskOrigin\",\"maskPositionX\",\"maskPositionY\",\"maskRepeat\",\"maskSize\"],maskPosition:[\"maskPositionX\",\"maskPositionY\"],outline:[\"outlineColor\",\"outlineStyle\",\"outlineWidth\"],overflow:[\"overflowX\",\"overflowY\"],padding:[\"paddingBottom\",\"paddingLeft\",\"paddingRight\",\"paddingTop\"],placeContent:[\"alignContent\",\"justifyContent\"],placeItems:[\"alignItems\",\"justifyItems\"],placeSelf:[\"alignSelf\",\"justifySelf\"],textDecoration:[\"textDecorationColor\",\"textDecorationLine\",\"textDecorationStyle\"],textEmphasis:[\"textEmphasisColor\",\"textEmphasisStyle\"],transition:[\"transitionDelay\",\"transitionDuration\",\"transitionProperty\",\"transitionTimingFunction\"],wordWrap:[\"overflowWrap\"]},tc={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};function Ch(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}var bh=[\"Webkit\",\"ms\",\"Moz\",\"O\"];Object.keys(tc).forEach(function(e){bh.forEach(function(t){tc[Ch(t,e)]=tc[e]})});function Md(e,t,r){var l=t==null||typeof t==\"boolean\"||t===\"\";return l?\"\":!r&&typeof t==\"number\"&&t!==0&&!(tc.hasOwnProperty(e)&&tc[e])?t+\"px\":(ja(t,e),(\"\"+t).trim())}var Rh=/([A-Z])/g,kh=/^ms-/;function tu(e){return e.replace(Rh,\"-$1\").toLowerCase().replace(kh,\"-ms-\")}var Nh=function(){};{var $U=/^(?:webkit|moz|o)[A-Z]/,eS=/^-ms-/,wh=/-(.)/g,Zf=/;\\s*$/,Yi={},Hl={},Eh=!1,nc=!1,tS=function(e){return e.replace(wh,function(t,r){return r.toUpperCase()})},Mh=function(e){Yi.hasOwnProperty(e)&&Yi[e]||(Yi[e]=!0,m(\"Unsupported style property %s. Did you mean %s?\",e,tS(e.replace(eS,\"ms-\"))))},Xf=function(e){Yi.hasOwnProperty(e)&&Yi[e]||(Yi[e]=!0,m(\"Unsupported vendor-prefixed style property %s. Did you mean %s?\",e,e.charAt(0).toUpperCase()+e.slice(1)))},_f=function(e,t){Hl.hasOwnProperty(t)&&Hl[t]||(Hl[t]=!0,m(`Style property values shouldn't contain a semicolon. Try \"%s: %s\" instead.`,e,t.replace(Zf,\"\")))},Bh=function(e,t){Eh||(Eh=!0,m(\"`NaN` is an invalid value for the `%s` css style property.\",e))},Qh=function(e,t){nc||(nc=!0,m(\"`Infinity` is an invalid value for the `%s` css style property.\",e))};Nh=function(e,t){e.indexOf(\"-\")>-1?Mh(e):$U.test(e)?Xf(e):Zf.test(t)&&_f(e,t),typeof t==\"number\"&&(isNaN(t)?Bh(e,t):isFinite(t)||Qh(e,t))}}var Dh=Nh;function nS(e){{var t=\"\",r=\"\";for(var l in e)if(e.hasOwnProperty(l)){var c=e[l];if(c!=null){var f=l.indexOf(\"--\")===0;t+=r+(f?l:tu(l))+\":\",t+=Md(l,c,f),r=\";\"}}return t||null}}function jh(e,t){var r=e.style;for(var l in t)if(t.hasOwnProperty(l)){var c=l.indexOf(\"--\")===0;c||Dh(l,t[l]);var f=Md(l,t[l],c);l===\"float\"&&(l=\"cssFloat\"),c?r.setProperty(l,f):r[l]=f}}function aS(e){return e==null||typeof e==\"boolean\"||e===\"\"}function Lh(e){var t={};for(var r in e)for(var l=ec[r]||[r],c=0;c<l.length;c++)t[l[c]]=r;return t}function rS(e,t){{if(!t)return;var r=Lh(e),l=Lh(t),c={};for(var f in r){var v=r[f],x=l[f];if(x&&v!==x){var T=v+\",\"+x;if(c[T])continue;c[T]=!0,m(\"%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.\",aS(e[v])?\"Removing\":\"Updating\",v,x)}}}}var Ti={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0},ac=Rt({menuitem:!0},Ti),Oh=\"__html\";function Bd(e,t){if(t){if(ac[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw new Error(e+\" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.\");if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw new Error(\"Can only set one of `children` or `props.dangerouslySetInnerHTML`.\");if(typeof t.dangerouslySetInnerHTML!=\"object\"||!(Oh in t.dangerouslySetInnerHTML))throw new Error(\"`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://reactjs.org/link/dangerously-set-inner-html for more information.\")}if(!t.suppressContentEditableWarning&&t.contentEditable&&t.children!=null&&m(\"A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.\"),t.style!=null&&typeof t.style!=\"object\")throw new Error(\"The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.\")}}function $o(e,t){if(e.indexOf(\"-\")===-1)return typeof t.is==\"string\";switch(e){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}var rc={accept:\"accept\",acceptcharset:\"acceptCharset\",\"accept-charset\":\"acceptCharset\",accesskey:\"accessKey\",action:\"action\",allowfullscreen:\"allowFullScreen\",alt:\"alt\",as:\"as\",async:\"async\",autocapitalize:\"autoCapitalize\",autocomplete:\"autoComplete\",autocorrect:\"autoCorrect\",autofocus:\"autoFocus\",autoplay:\"autoPlay\",autosave:\"autoSave\",capture:\"capture\",cellpadding:\"cellPadding\",cellspacing:\"cellSpacing\",challenge:\"challenge\",charset:\"charSet\",checked:\"checked\",children:\"children\",cite:\"cite\",class:\"className\",classid:\"classID\",classname:\"className\",cols:\"cols\",colspan:\"colSpan\",content:\"content\",contenteditable:\"contentEditable\",contextmenu:\"contextMenu\",controls:\"controls\",controlslist:\"controlsList\",coords:\"coords\",crossorigin:\"crossOrigin\",dangerouslysetinnerhtml:\"dangerouslySetInnerHTML\",data:\"data\",datetime:\"dateTime\",default:\"default\",defaultchecked:\"defaultChecked\",defaultvalue:\"defaultValue\",defer:\"defer\",dir:\"dir\",disabled:\"disabled\",disablepictureinpicture:\"disablePictureInPicture\",disableremoteplayback:\"disableRemotePlayback\",download:\"download\",draggable:\"draggable\",enctype:\"encType\",enterkeyhint:\"enterKeyHint\",for:\"htmlFor\",form:\"form\",formmethod:\"formMethod\",formaction:\"formAction\",formenctype:\"formEncType\",formnovalidate:\"formNoValidate\",formtarget:\"formTarget\",frameborder:\"frameBorder\",headers:\"headers\",height:\"height\",hidden:\"hidden\",high:\"high\",href:\"href\",hreflang:\"hrefLang\",htmlfor:\"htmlFor\",httpequiv:\"httpEquiv\",\"http-equiv\":\"httpEquiv\",icon:\"icon\",id:\"id\",imagesizes:\"imageSizes\",imagesrcset:\"imageSrcSet\",innerhtml:\"innerHTML\",inputmode:\"inputMode\",integrity:\"integrity\",is:\"is\",itemid:\"itemID\",itemprop:\"itemProp\",itemref:\"itemRef\",itemscope:\"itemScope\",itemtype:\"itemType\",keyparams:\"keyParams\",keytype:\"keyType\",kind:\"kind\",label:\"label\",lang:\"lang\",list:\"list\",loop:\"loop\",low:\"low\",manifest:\"manifest\",marginwidth:\"marginWidth\",marginheight:\"marginHeight\",max:\"max\",maxlength:\"maxLength\",media:\"media\",mediagroup:\"mediaGroup\",method:\"method\",min:\"min\",minlength:\"minLength\",multiple:\"multiple\",muted:\"muted\",name:\"name\",nomodule:\"noModule\",nonce:\"nonce\",novalidate:\"noValidate\",open:\"open\",optimum:\"optimum\",pattern:\"pattern\",placeholder:\"placeholder\",playsinline:\"playsInline\",poster:\"poster\",preload:\"preload\",profile:\"profile\",radiogroup:\"radioGroup\",readonly:\"readOnly\",referrerpolicy:\"referrerPolicy\",rel:\"rel\",required:\"required\",reversed:\"reversed\",role:\"role\",rows:\"rows\",rowspan:\"rowSpan\",sandbox:\"sandbox\",scope:\"scope\",scoped:\"scoped\",scrolling:\"scrolling\",seamless:\"seamless\",selected:\"selected\",shape:\"shape\",size:\"size\",sizes:\"sizes\",span:\"span\",spellcheck:\"spellCheck\",src:\"src\",srcdoc:\"srcDoc\",srclang:\"srcLang\",srcset:\"srcSet\",start:\"start\",step:\"step\",style:\"style\",summary:\"summary\",tabindex:\"tabIndex\",target:\"target\",title:\"title\",type:\"type\",usemap:\"useMap\",value:\"value\",width:\"width\",wmode:\"wmode\",wrap:\"wrap\",about:\"about\",accentheight:\"accentHeight\",\"accent-height\":\"accentHeight\",accumulate:\"accumulate\",additive:\"additive\",alignmentbaseline:\"alignmentBaseline\",\"alignment-baseline\":\"alignmentBaseline\",allowreorder:\"allowReorder\",alphabetic:\"alphabetic\",amplitude:\"amplitude\",arabicform:\"arabicForm\",\"arabic-form\":\"arabicForm\",ascent:\"ascent\",attributename:\"attributeName\",attributetype:\"attributeType\",autoreverse:\"autoReverse\",azimuth:\"azimuth\",basefrequency:\"baseFrequency\",baselineshift:\"baselineShift\",\"baseline-shift\":\"baselineShift\",baseprofile:\"baseProfile\",bbox:\"bbox\",begin:\"begin\",bias:\"bias\",by:\"by\",calcmode:\"calcMode\",capheight:\"capHeight\",\"cap-height\":\"capHeight\",clip:\"clip\",clippath:\"clipPath\",\"clip-path\":\"clipPath\",clippathunits:\"clipPathUnits\",cliprule:\"clipRule\",\"clip-rule\":\"clipRule\",color:\"color\",colorinterpolation:\"colorInterpolation\",\"color-interpolation\":\"colorInterpolation\",colorinterpolationfilters:\"colorInterpolationFilters\",\"color-interpolation-filters\":\"colorInterpolationFilters\",colorprofile:\"colorProfile\",\"color-profile\":\"colorProfile\",colorrendering:\"colorRendering\",\"color-rendering\":\"colorRendering\",contentscripttype:\"contentScriptType\",contentstyletype:\"contentStyleType\",cursor:\"cursor\",cx:\"cx\",cy:\"cy\",d:\"d\",datatype:\"datatype\",decelerate:\"decelerate\",descent:\"descent\",diffuseconstant:\"diffuseConstant\",direction:\"direction\",display:\"display\",divisor:\"divisor\",dominantbaseline:\"dominantBaseline\",\"dominant-baseline\":\"dominantBaseline\",dur:\"dur\",dx:\"dx\",dy:\"dy\",edgemode:\"edgeMode\",elevation:\"elevation\",enablebackground:\"enableBackground\",\"enable-background\":\"enableBackground\",end:\"end\",exponent:\"exponent\",externalresourcesrequired:\"externalResourcesRequired\",fill:\"fill\",fillopacity:\"fillOpacity\",\"fill-opacity\":\"fillOpacity\",fillrule:\"fillRule\",\"fill-rule\":\"fillRule\",filter:\"filter\",filterres:\"filterRes\",filterunits:\"filterUnits\",floodopacity:\"floodOpacity\",\"flood-opacity\":\"floodOpacity\",floodcolor:\"floodColor\",\"flood-color\":\"floodColor\",focusable:\"focusable\",fontfamily:\"fontFamily\",\"font-family\":\"fontFamily\",fontsize:\"fontSize\",\"font-size\":\"fontSize\",fontsizeadjust:\"fontSizeAdjust\",\"font-size-adjust\":\"fontSizeAdjust\",fontstretch:\"fontStretch\",\"font-stretch\":\"fontStretch\",fontstyle:\"fontStyle\",\"font-style\":\"fontStyle\",fontvariant:\"fontVariant\",\"font-variant\":\"fontVariant\",fontweight:\"fontWeight\",\"font-weight\":\"fontWeight\",format:\"format\",from:\"from\",fx:\"fx\",fy:\"fy\",g1:\"g1\",g2:\"g2\",glyphname:\"glyphName\",\"glyph-name\":\"glyphName\",glyphorientationhorizontal:\"glyphOrientationHorizontal\",\"glyph-orientation-horizontal\":\"glyphOrientationHorizontal\",glyphorientationvertical:\"glyphOrientationVertical\",\"glyph-orientation-vertical\":\"glyphOrientationVertical\",glyphref:\"glyphRef\",gradienttransform:\"gradientTransform\",gradientunits:\"gradientUnits\",hanging:\"hanging\",horizadvx:\"horizAdvX\",\"horiz-adv-x\":\"horizAdvX\",horizoriginx:\"horizOriginX\",\"horiz-origin-x\":\"horizOriginX\",ideographic:\"ideographic\",imagerendering:\"imageRendering\",\"image-rendering\":\"imageRendering\",in2:\"in2\",in:\"in\",inlist:\"inlist\",intercept:\"intercept\",k1:\"k1\",k2:\"k2\",k3:\"k3\",k4:\"k4\",k:\"k\",kernelmatrix:\"kernelMatrix\",kernelunitlength:\"kernelUnitLength\",kerning:\"kerning\",keypoints:\"keyPoints\",keysplines:\"keySplines\",keytimes:\"keyTimes\",lengthadjust:\"lengthAdjust\",letterspacing:\"letterSpacing\",\"letter-spacing\":\"letterSpacing\",lightingcolor:\"lightingColor\",\"lighting-color\":\"lightingColor\",limitingconeangle:\"limitingConeAngle\",local:\"local\",markerend:\"markerEnd\",\"marker-end\":\"markerEnd\",markerheight:\"markerHeight\",markermid:\"markerMid\",\"marker-mid\":\"markerMid\",markerstart:\"markerStart\",\"marker-start\":\"markerStart\",markerunits:\"markerUnits\",markerwidth:\"markerWidth\",mask:\"mask\",maskcontentunits:\"maskContentUnits\",maskunits:\"maskUnits\",mathematical:\"mathematical\",mode:\"mode\",numoctaves:\"numOctaves\",offset:\"offset\",opacity:\"opacity\",operator:\"operator\",order:\"order\",orient:\"orient\",orientation:\"orientation\",origin:\"origin\",overflow:\"overflow\",overlineposition:\"overlinePosition\",\"overline-position\":\"overlinePosition\",overlinethickness:\"overlineThickness\",\"overline-thickness\":\"overlineThickness\",paintorder:\"paintOrder\",\"paint-order\":\"paintOrder\",panose1:\"panose1\",\"panose-1\":\"panose1\",pathlength:\"pathLength\",patterncontentunits:\"patternContentUnits\",patterntransform:\"patternTransform\",patternunits:\"patternUnits\",pointerevents:\"pointerEvents\",\"pointer-events\":\"pointerEvents\",points:\"points\",pointsatx:\"pointsAtX\",pointsaty:\"pointsAtY\",pointsatz:\"pointsAtZ\",prefix:\"prefix\",preservealpha:\"preserveAlpha\",preserveaspectratio:\"preserveAspectRatio\",primitiveunits:\"primitiveUnits\",property:\"property\",r:\"r\",radius:\"radius\",refx:\"refX\",refy:\"refY\",renderingintent:\"renderingIntent\",\"rendering-intent\":\"renderingIntent\",repeatcount:\"repeatCount\",repeatdur:\"repeatDur\",requiredextensions:\"requiredExtensions\",requiredfeatures:\"requiredFeatures\",resource:\"resource\",restart:\"restart\",result:\"result\",results:\"results\",rotate:\"rotate\",rx:\"rx\",ry:\"ry\",scale:\"scale\",security:\"security\",seed:\"seed\",shaperendering:\"shapeRendering\",\"shape-rendering\":\"shapeRendering\",slope:\"slope\",spacing:\"spacing\",specularconstant:\"specularConstant\",specularexponent:\"specularExponent\",speed:\"speed\",spreadmethod:\"spreadMethod\",startoffset:\"startOffset\",stddeviation:\"stdDeviation\",stemh:\"stemh\",stemv:\"stemv\",stitchtiles:\"stitchTiles\",stopcolor:\"stopColor\",\"stop-color\":\"stopColor\",stopopacity:\"stopOpacity\",\"stop-opacity\":\"stopOpacity\",strikethroughposition:\"strikethroughPosition\",\"strikethrough-position\":\"strikethroughPosition\",strikethroughthickness:\"strikethroughThickness\",\"strikethrough-thickness\":\"strikethroughThickness\",string:\"string\",stroke:\"stroke\",strokedasharray:\"strokeDasharray\",\"stroke-dasharray\":\"strokeDasharray\",strokedashoffset:\"strokeDashoffset\",\"stroke-dashoffset\":\"strokeDashoffset\",strokelinecap:\"strokeLinecap\",\"stroke-linecap\":\"strokeLinecap\",strokelinejoin:\"strokeLinejoin\",\"stroke-linejoin\":\"strokeLinejoin\",strokemiterlimit:\"strokeMiterlimit\",\"stroke-miterlimit\":\"strokeMiterlimit\",strokewidth:\"strokeWidth\",\"stroke-width\":\"strokeWidth\",strokeopacity:\"strokeOpacity\",\"stroke-opacity\":\"strokeOpacity\",suppresscontenteditablewarning:\"suppressContentEditableWarning\",suppresshydrationwarning:\"suppressHydrationWarning\",surfacescale:\"surfaceScale\",systemlanguage:\"systemLanguage\",tablevalues:\"tableValues\",targetx:\"targetX\",targety:\"targetY\",textanchor:\"textAnchor\",\"text-anchor\":\"textAnchor\",textdecoration:\"textDecoration\",\"text-decoration\":\"textDecoration\",textlength:\"textLength\",textrendering:\"textRendering\",\"text-rendering\":\"textRendering\",to:\"to\",transform:\"transform\",typeof:\"typeof\",u1:\"u1\",u2:\"u2\",underlineposition:\"underlinePosition\",\"underline-position\":\"underlinePosition\",underlinethickness:\"underlineThickness\",\"underline-thickness\":\"underlineThickness\",unicode:\"unicode\",unicodebidi:\"unicodeBidi\",\"unicode-bidi\":\"unicodeBidi\",unicoderange:\"unicodeRange\",\"unicode-range\":\"unicodeRange\",unitsperem:\"unitsPerEm\",\"units-per-em\":\"unitsPerEm\",unselectable:\"unselectable\",valphabetic:\"vAlphabetic\",\"v-alphabetic\":\"vAlphabetic\",values:\"values\",vectoreffect:\"vectorEffect\",\"vector-effect\":\"vectorEffect\",version:\"version\",vertadvy:\"vertAdvY\",\"vert-adv-y\":\"vertAdvY\",vertoriginx:\"vertOriginX\",\"vert-origin-x\":\"vertOriginX\",vertoriginy:\"vertOriginY\",\"vert-origin-y\":\"vertOriginY\",vhanging:\"vHanging\",\"v-hanging\":\"vHanging\",videographic:\"vIdeographic\",\"v-ideographic\":\"vIdeographic\",viewbox:\"viewBox\",viewtarget:\"viewTarget\",visibility:\"visibility\",vmathematical:\"vMathematical\",\"v-mathematical\":\"vMathematical\",vocab:\"vocab\",widths:\"widths\",wordspacing:\"wordSpacing\",\"word-spacing\":\"wordSpacing\",writingmode:\"writingMode\",\"writing-mode\":\"writingMode\",x1:\"x1\",x2:\"x2\",x:\"x\",xchannelselector:\"xChannelSelector\",xheight:\"xHeight\",\"x-height\":\"xHeight\",xlinkactuate:\"xlinkActuate\",\"xlink:actuate\":\"xlinkActuate\",xlinkarcrole:\"xlinkArcrole\",\"xlink:arcrole\":\"xlinkArcrole\",xlinkhref:\"xlinkHref\",\"xlink:href\":\"xlinkHref\",xlinkrole:\"xlinkRole\",\"xlink:role\":\"xlinkRole\",xlinkshow:\"xlinkShow\",\"xlink:show\":\"xlinkShow\",xlinktitle:\"xlinkTitle\",\"xlink:title\":\"xlinkTitle\",xlinktype:\"xlinkType\",\"xlink:type\":\"xlinkType\",xmlbase:\"xmlBase\",\"xml:base\":\"xmlBase\",xmllang:\"xmlLang\",\"xml:lang\":\"xmlLang\",xmlns:\"xmlns\",\"xml:space\":\"xmlSpace\",xmlnsxlink:\"xmlnsXlink\",\"xmlns:xlink\":\"xmlnsXlink\",xmlspace:\"xmlSpace\",y1:\"y1\",y2:\"y2\",y:\"y\",ychannelselector:\"yChannelSelector\",z:\"z\",zoomandpan:\"zoomAndPan\"},Qd={\"aria-current\":0,\"aria-description\":0,\"aria-details\":0,\"aria-disabled\":0,\"aria-hidden\":0,\"aria-invalid\":0,\"aria-keyshortcuts\":0,\"aria-label\":0,\"aria-roledescription\":0,\"aria-autocomplete\":0,\"aria-checked\":0,\"aria-expanded\":0,\"aria-haspopup\":0,\"aria-level\":0,\"aria-modal\":0,\"aria-multiline\":0,\"aria-multiselectable\":0,\"aria-orientation\":0,\"aria-placeholder\":0,\"aria-pressed\":0,\"aria-readonly\":0,\"aria-required\":0,\"aria-selected\":0,\"aria-sort\":0,\"aria-valuemax\":0,\"aria-valuemin\":0,\"aria-valuenow\":0,\"aria-valuetext\":0,\"aria-atomic\":0,\"aria-busy\":0,\"aria-live\":0,\"aria-relevant\":0,\"aria-dropeffect\":0,\"aria-grabbed\":0,\"aria-activedescendant\":0,\"aria-colcount\":0,\"aria-colindex\":0,\"aria-colspan\":0,\"aria-controls\":0,\"aria-describedby\":0,\"aria-errormessage\":0,\"aria-flowto\":0,\"aria-labelledby\":0,\"aria-owns\":0,\"aria-posinset\":0,\"aria-rowcount\":0,\"aria-rowindex\":0,\"aria-rowspan\":0,\"aria-setsize\":0},nu={},iS=new RegExp(\"^(aria)-[\"+Re+\"]*$\"),au=new RegExp(\"^(aria)[A-Z][\"+Re+\"]*$\");function $f(e,t){{if(ma.call(nu,t)&&nu[t])return!0;if(au.test(t)){var r=\"aria-\"+t.slice(4).toLowerCase(),l=Qd.hasOwnProperty(r)?r:null;if(l==null)return m(\"Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.\",t),nu[t]=!0,!0;if(t!==l)return m(\"Invalid ARIA attribute `%s`. Did you mean `%s`?\",t,l),nu[t]=!0,!0}if(iS.test(t)){var c=t.toLowerCase(),f=Qd.hasOwnProperty(c)?c:null;if(f==null)return nu[t]=!0,!1;if(t!==f)return m(\"Unknown ARIA attribute `%s`. Did you mean `%s`?\",t,f),nu[t]=!0,!0}}return!0}function ic(e,t){{var r=[];for(var l in t){var c=$f(e,l);c||r.push(l)}var f=r.map(function(v){return\"`\"+v+\"`\"}).join(\", \");r.length===1?m(\"Invalid aria prop %s on <%s> tag. For details, see https://reactjs.org/link/invalid-aria-props\",f,e):r.length>1&&m(\"Invalid aria props %s on <%s> tag. For details, see https://reactjs.org/link/invalid-aria-props\",f,e)}}function em(e,t){$o(e,t)||ic(e,t)}var tm=!1;function Dd(e,t){{if(e!==\"input\"&&e!==\"textarea\"&&e!==\"select\")return;t!=null&&t.value===null&&!tm&&(tm=!0,e===\"select\"&&t.multiple?m(\"`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.\",e):m(\"`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.\",e))}}var Pl=function(){};{var Ta={},nm=/^on./,jd=/^on[^A-Z]/,Vh=new RegExp(\"^(aria)-[\"+Re+\"]*$\"),Ih=new RegExp(\"^(aria)[A-Z][\"+Re+\"]*$\");Pl=function(e,t,r,l){if(ma.call(Ta,t)&&Ta[t])return!0;var c=t.toLowerCase();if(c===\"onfocusin\"||c===\"onfocusout\")return m(\"React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React.\"),Ta[t]=!0,!0;if(l!=null){var f=l.registrationNameDependencies,v=l.possibleRegistrationNames;if(f.hasOwnProperty(t))return!0;var x=v.hasOwnProperty(c)?v[c]:null;if(x!=null)return m(\"Invalid event handler property `%s`. Did you mean `%s`?\",t,x),Ta[t]=!0,!0;if(nm.test(t))return m(\"Unknown event handler property `%s`. It will be ignored.\",t),Ta[t]=!0,!0}else if(nm.test(t))return jd.test(t)&&m(\"Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.\",t),Ta[t]=!0,!0;if(Vh.test(t)||Ih.test(t))return!0;if(c===\"innerhtml\")return m(\"Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`.\"),Ta[t]=!0,!0;if(c===\"aria\")return m(\"The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead.\"),Ta[t]=!0,!0;if(c===\"is\"&&r!==null&&r!==void 0&&typeof r!=\"string\")return m(\"Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.\",typeof r),Ta[t]=!0,!0;if(typeof r==\"number\"&&isNaN(r))return m(\"Received NaN for the `%s` attribute. If this is expected, cast the value to a string.\",t),Ta[t]=!0,!0;var T=fn(t),w=T!==null&&T.type===Ln;if(rc.hasOwnProperty(c)){var M=rc[c];if(M!==t)return m(\"Invalid DOM property `%s`. Did you mean `%s`?\",t,M),Ta[t]=!0,!0}else if(!w&&t!==c)return m(\"React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.\",t,c),Ta[t]=!0,!0;return typeof r==\"boolean\"&&gn(t,r,T,!1)?(r?m('Received `%s` for a non-boolean attribute `%s`.\\n\\nIf you want to write it to the DOM, pass a string instead: %s=\"%s\" or %s={value.toString()}.',r,t,t,r,t):m('Received `%s` for a non-boolean attribute `%s`.\\n\\nIf you want to write it to the DOM, pass a string instead: %s=\"%s\" or %s={value.toString()}.\\n\\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.',r,t,t,r,t,t,t),Ta[t]=!0,!0):w?!0:gn(t,r,T,!1)?(Ta[t]=!0,!1):((r===\"false\"||r===\"true\")&&T!==null&&T.type===kn&&(m(\"Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?\",r,t,r===\"false\"?\"The browser will interpret it as a truthy value.\":'Although this works, it will not work as expected if you pass the string \"false\".',t,r),Ta[t]=!0),!0)}}var qh=function(e,t,r){{var l=[];for(var c in t){var f=Pl(e,c,t[c],r);f||l.push(c)}var v=l.map(function(x){return\"`\"+x+\"`\"}).join(\", \");l.length===1?m(\"Invalid value for prop %s on <%s> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://reactjs.org/link/attribute-behavior \",v,e):l.length>1&&m(\"Invalid values for props %s on <%s> tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://reactjs.org/link/attribute-behavior \",v,e)}};function Yh(e,t,r){$o(e,t)||qh(e,t,r)}var am=1,Ld=2,ei=4,rm=am|Ld|ei,Zl=null;function oS(e){Zl!==null&&m(\"Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue.\"),Zl=e}function lS(){Zl===null&&m(\"Expected currently replaying event to not be null. This error is likely caused by a bug in React. Please file an issue.\"),Zl=null}function oc(e){return e===Zl}function im(e){var t=e.target||e.srcElement||window;return t.correspondingUseElement&&(t=t.correspondingUseElement),t.nodeType===go?t.parentNode:t}var Od=null,Xl=null,$t=null;function Vd(e){var t=Fu(e);if(t){if(typeof Od!=\"function\")throw new Error(\"setRestoreImplementation() needs to be called to handle a target for controlled events. This error is likely caused by a bug in React. Please file an issue.\");var r=t.stateNode;if(r){var l=_A(r);Od(t.stateNode,t.type,l)}}}function Id(e){Od=e}function ru(e){Xl?$t?$t.push(e):$t=[e]:Xl=e}function Gh(){return Xl!==null||$t!==null}function qd(){if(Xl){var e=Xl,t=$t;if(Xl=null,$t=null,Vd(e),t)for(var r=0;r<t.length;r++)Vd(t[r])}}var iu=function(e,t){return e(t)},lc=function(){},el=!1;function Wh(){var e=Gh();e&&(lc(),qd())}function Jh(e,t,r){if(el)return e(t,r);el=!0;try{return iu(e,t,r)}finally{el=!1,Wh()}}function sS(e,t,r){iu=e,lc=r}function zh(e){return e===\"button\"||e===\"input\"||e===\"select\"||e===\"textarea\"}function Yd(e,t,r){switch(e){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":return!!(r.disabled&&zh(t));default:return!1}}function tl(e,t){var r=e.stateNode;if(r===null)return null;var l=_A(r);if(l===null)return null;var c=l[t];if(Yd(t,e.type,l))return null;if(c&&typeof c!=\"function\")throw new Error(\"Expected `\"+t+\"` listener to be a function, instead got a value of `\"+typeof c+\"` type.\");return c}var sc=!1;if(Rn)try{var _l={};Object.defineProperty(_l,\"passive\",{get:function(){sc=!0}}),window.addEventListener(\"test\",_l,_l),window.removeEventListener(\"test\",_l,_l)}catch(e){sc=!1}function Gd(e,t,r,l,c,f,v,x,T){var w=Array.prototype.slice.call(arguments,3);try{t.apply(r,w)}catch(M){this.onError(M)}}var Wd=Gd;if(typeof window!=\"undefined\"&&typeof window.dispatchEvent==\"function\"&&typeof document!=\"undefined\"&&typeof document.createEvent==\"function\"){var om=document.createElement(\"react\");Wd=function(t,r,l,c,f,v,x,T,w){if(typeof document==\"undefined\"||document===null)throw new Error(\"The `document` global was defined when React was initialized, but is not defined anymore. This can happen in a test environment if a component schedules an update from an asynchronous callback, but the test has already finished running. To solve this, you can either unmount the component at the end of your test (and ensure that any asynchronous operations get canceled in `componentWillUnmount`), or you can change the test itself to be asynchronous.\");var M=document.createEvent(\"Event\"),H=!1,J=!0,ne=window.event,ie=Object.getOwnPropertyDescriptor(window,\"event\");function se(){om.removeEventListener(ue,rt,!1),typeof window.event!=\"undefined\"&&window.hasOwnProperty(\"event\")&&(window.event=ne)}var Be=Array.prototype.slice.call(arguments,3);function rt(){H=!0,se(),r.apply(l,Be),J=!1}var Xe,Vt=!1,Dt=!1;function X(_){if(Xe=_.error,Vt=!0,Xe===null&&_.colno===0&&_.lineno===0&&(Dt=!0),_.defaultPrevented&&Xe!=null&&typeof Xe==\"object\")try{Xe._suppressLogging=!0}catch(Fe){}}var ue=\"react-\"+(t||\"invokeguardedcallback\");if(window.addEventListener(\"error\",X),om.addEventListener(ue,rt,!1),M.initEvent(ue,!1,!1),om.dispatchEvent(M),ie&&Object.defineProperty(window,\"event\",ie),H&&J&&(Vt?Dt&&(Xe=new Error(\"A cross-origin error was thrown. React doesn't have access to the actual error object in development. See https://reactjs.org/link/crossorigin-error for more information.\")):Xe=new Error(`An error was thrown inside one of your components, but React doesn't know what it was. This is likely due to browser flakiness. React does its best to preserve the \"Pause on exceptions\" behavior of the DevTools, which requires some DEV-mode only tricks. It's possible that these don't work in your browser. Try triggering the error in production mode, or switching to a modern browser. If you suspect that this is actually an issue with React, please file an issue.`),this.onError(Xe)),window.removeEventListener(\"error\",X),!H)return se(),Gd.apply(this,arguments)}}var Hh=Wd,ou=!1,Jd=null,lu=!1,Gi=null,Ph={onError:function(e){ou=!0,Jd=e}};function nl(e,t,r,l,c,f,v,x,T){ou=!1,Jd=null,Hh.apply(Ph,arguments)}function Wi(e,t,r,l,c,f,v,x,T){if(nl.apply(this,arguments),ou){var w=cc();lu||(lu=!0,Gi=w)}}function uc(){if(lu){var e=Gi;throw lu=!1,Gi=null,e}}function Uo(){return ou}function cc(){if(ou){var e=Jd;return ou=!1,Jd=null,e}else throw new Error(\"clearCaughtError was called but no error was captured. This error is likely caused by a bug in React. Please file an issue.\")}function su(e){return e._reactInternals}function uS(e){return e._reactInternals!==void 0}function $l(e,t){e._reactInternals=t}var et=0,Ci=1,En=2,jt=4,ti=16,ni=32,An=64,_e=128,Va=256,On=512,ca=1024,hr=2048,Ar=4096,_n=8192,uu=16384,Zh=32767,dc=32768,Aa=65536,zd=131072,Ji=1048576,cu=2097152,So=4194304,Hd=8388608,al=16777216,zi=33554432,rl=jt|ca|0,il=En|jt|ti|ni|On|Ar|_n,ol=jt|An|On|_n,yo=hr|ti,$n=So|Hd|cu,ai=u.ReactCurrentOwner;function Br(e){var t=e,r=e;if(e.alternate)for(;t.return;)t=t.return;else{var l=t;do t=l,(t.flags&(En|Ar))!==et&&(r=t.return),l=t.return;while(l)}return t.tag===b?r:null}function Hi(e){if(e.tag===te){var t=e.memoizedState;if(t===null){var r=e.alternate;r!==null&&(t=r.memoizedState)}if(t!==null)return t.dehydrated}return null}function Pi(e){return e.tag===b?e.stateNode.containerInfo:null}function es(e){return Br(e)===e}function Xh(e){{var t=ai.current;if(t!==null&&t.tag===F){var r=t,l=r.stateNode;l._warnedAboutRefsInRender||m(\"%s is accessing isMounted inside its render() function. render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.\",vt(r)||\"A component\"),l._warnedAboutRefsInRender=!0}}var c=su(e);return c?Br(c)===c:!1}function Pd(e){if(Br(e)!==e)throw new Error(\"Unable to find node on an unmounted component.\")}function Zd(e){var t=e.alternate;if(!t){var r=Br(e);if(r===null)throw new Error(\"Unable to find node on an unmounted component.\");return r!==e?null:e}for(var l=e,c=t;;){var f=l.return;if(f===null)break;var v=f.alternate;if(v===null){var x=f.return;if(x!==null){l=c=x;continue}break}if(f.child===v.child){for(var T=f.child;T;){if(T===l)return Pd(f),e;if(T===c)return Pd(f),t;T=T.sibling}throw new Error(\"Unable to find node on an unmounted component.\")}if(l.return!==c.return)l=f,c=v;else{for(var w=!1,M=f.child;M;){if(M===l){w=!0,l=f,c=v;break}if(M===c){w=!0,c=f,l=v;break}M=M.sibling}if(!w){for(M=v.child;M;){if(M===l){w=!0,l=v,c=f;break}if(M===c){w=!0,c=v,l=f;break}M=M.sibling}if(!w)throw new Error(\"Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.\")}}if(l.alternate!==c)throw new Error(\"Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.\")}if(l.tag!==b)throw new Error(\"Unable to find node on an unmounted component.\");return l.stateNode.current===l?e:t}function gr(e){var t=Zd(e);return t!==null?vr(t):null}function vr(e){if(e.tag===E||e.tag===O)return e;for(var t=e.child;t!==null;){var r=vr(t);if(r!==null)return r;t=t.sibling}return null}function xn(e){var t=Zd(e);return t!==null?ri(t):null}function ri(e){if(e.tag===E||e.tag===O)return e;for(var t=e.child;t!==null;){if(t.tag!==N){var r=ri(t);if(r!==null)return r}t=t.sibling}return null}var lm=o.unstable_scheduleCallback,_h=o.unstable_cancelCallback,sm=o.unstable_shouldYield,um=o.unstable_requestPaint,da=o.unstable_now,Xd=o.unstable_getCurrentPriorityLevel,pc=o.unstable_ImmediatePriority,ll=o.unstable_UserBlockingPriority,Ko=o.unstable_NormalPriority,cS=o.unstable_LowPriority,ts=o.unstable_IdlePriority,_d=o.unstable_yieldValue,$h=o.unstable_setDisableYieldValue,ns=null,Gn=null,Me=null,Qr=!1,Ur=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\";function du(e){if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__==\"undefined\")return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled)return!0;if(!t.supportsFiber)return m(\"The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://reactjs.org/link/react-devtools\"),!0;try{$e&&(e=Rt({},e,{getLaneLabelMap:as,injectProfilingHooks:ii})),ns=t.inject(e),Gn=t}catch(r){m(\"React instrumentation encountered an error: %s.\",r)}return!!t.checkDCE}function cm(e,t){if(Gn&&typeof Gn.onScheduleFiberRoot==\"function\")try{Gn.onScheduleFiberRoot(ns,e,t)}catch(r){Qr||(Qr=!0,m(\"React instrumentation encountered an error: %s\",r))}}function dm(e,t){if(Gn&&typeof Gn.onCommitFiberRoot==\"function\")try{var r=(e.current.flags&_e)===_e;if(Ve){var l;switch(t){case Za:l=pc;break;case Xi:l=ll;break;case oi:l=Ko;break;case li:l=ts;break;default:l=Ko;break}Gn.onCommitFiberRoot(ns,e,l,r)}}catch(c){Qr||(Qr=!0,m(\"React instrumentation encountered an error: %s\",c))}}function pm(e){if(Gn&&typeof Gn.onPostCommitFiberRoot==\"function\")try{Gn.onPostCommitFiberRoot(ns,e)}catch(t){Qr||(Qr=!0,m(\"React instrumentation encountered an error: %s\",t))}}function fm(e){if(Gn&&typeof Gn.onCommitFiberUnmount==\"function\")try{Gn.onCommitFiberUnmount(ns,e)}catch(t){Qr||(Qr=!0,m(\"React instrumentation encountered an error: %s\",t))}}function Mn(e){if(typeof _d==\"function\"&&($h(e),A(e)),Gn&&typeof Gn.setStrictMode==\"function\")try{Gn.setStrictMode(ns,e)}catch(t){Qr||(Qr=!0,m(\"React instrumentation encountered an error: %s\",t))}}function ii(e){Me=e}function as(){{for(var e=new Map,t=1,r=0;r<os;r++){var l=aA(t);e.set(t,l),t*=2}return e}}function mm(e){Me!==null&&typeof Me.markCommitStarted==\"function\"&&Me.markCommitStarted(e)}function hm(){Me!==null&&typeof Me.markCommitStopped==\"function\"&&Me.markCommitStopped()}function Dr(e){Me!==null&&typeof Me.markComponentRenderStarted==\"function\"&&Me.markComponentRenderStarted(e)}function jr(){Me!==null&&typeof Me.markComponentRenderStopped==\"function\"&&Me.markComponentRenderStopped()}function Am(e){Me!==null&&typeof Me.markComponentPassiveEffectMountStarted==\"function\"&&Me.markComponentPassiveEffectMountStarted(e)}function eA(){Me!==null&&typeof Me.markComponentPassiveEffectMountStopped==\"function\"&&Me.markComponentPassiveEffectMountStopped()}function xo(e){Me!==null&&typeof Me.markComponentPassiveEffectUnmountStarted==\"function\"&&Me.markComponentPassiveEffectUnmountStarted(e)}function sl(){Me!==null&&typeof Me.markComponentPassiveEffectUnmountStopped==\"function\"&&Me.markComponentPassiveEffectUnmountStopped()}function $d(e){Me!==null&&typeof Me.markComponentLayoutEffectMountStarted==\"function\"&&Me.markComponentLayoutEffectMountStarted(e)}function tA(){Me!==null&&typeof Me.markComponentLayoutEffectMountStopped==\"function\"&&Me.markComponentLayoutEffectMountStopped()}function fc(e){Me!==null&&typeof Me.markComponentLayoutEffectUnmountStarted==\"function\"&&Me.markComponentLayoutEffectUnmountStarted(e)}function gm(){Me!==null&&typeof Me.markComponentLayoutEffectUnmountStopped==\"function\"&&Me.markComponentLayoutEffectUnmountStopped()}function mc(e,t,r){Me!==null&&typeof Me.markComponentErrored==\"function\"&&Me.markComponentErrored(e,t,r)}function Zi(e,t,r){Me!==null&&typeof Me.markComponentSuspended==\"function\"&&Me.markComponentSuspended(e,t,r)}function hc(e){Me!==null&&typeof Me.markLayoutEffectsStarted==\"function\"&&Me.markLayoutEffectsStarted(e)}function Ac(){Me!==null&&typeof Me.markLayoutEffectsStopped==\"function\"&&Me.markLayoutEffectsStopped()}function rs(e){Me!==null&&typeof Me.markPassiveEffectsStarted==\"function\"&&Me.markPassiveEffectsStarted(e)}function vm(){Me!==null&&typeof Me.markPassiveEffectsStopped==\"function\"&&Me.markPassiveEffectsStopped()}function is(e){Me!==null&&typeof Me.markRenderStarted==\"function\"&&Me.markRenderStarted(e)}function nA(){Me!==null&&typeof Me.markRenderYielded==\"function\"&&Me.markRenderYielded()}function ep(){Me!==null&&typeof Me.markRenderStopped==\"function\"&&Me.markRenderStopped()}function Bn(e){Me!==null&&typeof Me.markRenderScheduled==\"function\"&&Me.markRenderScheduled(e)}function tp(e,t){Me!==null&&typeof Me.markForceUpdateScheduled==\"function\"&&Me.markForceUpdateScheduled(e,t)}function gc(e,t){Me!==null&&typeof Me.markStateUpdateScheduled==\"function\"&&Me.markStateUpdateScheduled(e,t)}var tt=0,Et=1,zt=2,ln=8,Ht=16,ea=Math.clz32?Math.clz32:vc,ga=Math.log,np=Math.LN2;function vc(e){var t=e>>>0;return t===0?32:31-(ga(t)/np|0)|0}var os=31,Ae=0,Gt=0,ct=1,ul=2,bi=4,Ia=8,Wn=16,Fo=32,cl=4194240,ls=64,ap=128,rp=256,ip=512,op=1024,lp=2048,sp=4096,up=8192,cp=16384,ss=32768,dp=65536,pu=131072,fu=262144,pp=524288,Uc=1048576,fp=2097152,Sc=130023424,us=4194304,mp=8388608,yc=16777216,hp=33554432,Ap=67108864,Um=us,Kc=134217728,Sm=268435455,xc=268435456,cs=536870912,Sr=1073741824;function aA(e){{if(e&ct)return\"Sync\";if(e&ul)return\"InputContinuousHydration\";if(e&bi)return\"InputContinuous\";if(e&Ia)return\"DefaultHydration\";if(e&Wn)return\"Default\";if(e&Fo)return\"TransitionHydration\";if(e&cl)return\"Transition\";if(e&Sc)return\"Retry\";if(e&Kc)return\"SelectiveHydration\";if(e&xc)return\"IdleHydration\";if(e&cs)return\"Idle\";if(e&Sr)return\"Offscreen\"}}var cn=-1,ds=ls,gp=us;function Fc(e){switch(dl(e)){case ct:return ct;case ul:return ul;case bi:return bi;case Ia:return Ia;case Wn:return Wn;case Fo:return Fo;case ls:case ap:case rp:case ip:case op:case lp:case sp:case up:case cp:case ss:case dp:case pu:case fu:case pp:case Uc:case fp:return e&cl;case us:case mp:case yc:case hp:case Ap:return e⪼case Kc:return Kc;case xc:return xc;case cs:return cs;case Sr:return Sr;default:return m(\"Should have found matching lanes. This is a bug in React.\"),e}}function vp(e,t){var r=e.pendingLanes;if(r===Ae)return Ae;var l=Ae,c=e.suspendedLanes,f=e.pingedLanes,v=r&Sm;if(v!==Ae){var x=v&~c;if(x!==Ae)l=Fc(x);else{var T=v&f;T!==Ae&&(l=Fc(T))}}else{var w=r&~c;w!==Ae?l=Fc(w):f!==Ae&&(l=Fc(f))}if(l===Ae)return Ae;if(t!==Ae&&t!==l&&(t&c)===Ae){var M=dl(l),H=dl(t);if(M>=H||M===Wn&&(H&cl)!==Ae)return t}(l&bi)!==Ae&&(l|=r&Wn);var J=e.entangledLanes;if(J!==Ae)for(var ne=e.entanglements,ie=l&J;ie>0;){var se=ta(ie),Be=1<<se;l|=ne[se],ie&=~Be}return l}function Ri(e,t){for(var r=e.eventTimes,l=cn;t>0;){var c=ta(t),f=1<<c,v=r[c];v>l&&(l=v),t&=~f}return l}function ym(e,t){switch(e){case ct:case ul:case bi:return t+250;case Ia:case Wn:case Fo:case ls:case ap:case rp:case ip:case op:case lp:case sp:case up:case cp:case ss:case dp:case pu:case fu:case pp:case Uc:case fp:return t+5e3;case us:case mp:case yc:case hp:case Ap:return cn;case Kc:case xc:case cs:case Sr:return cn;default:return m(\"Should have found matching lanes. This is a bug in React.\"),cn}}function Up(e,t){for(var r=e.pendingLanes,l=e.suspendedLanes,c=e.pingedLanes,f=e.expirationTimes,v=r;v>0;){var x=ta(v),T=1<<x,w=f[x];w===cn?((T&l)===Ae||(T&c)!==Ae)&&(f[x]=ym(T,t)):w<=t&&(e.expiredLanes|=T),v&=~T}}function rA(e){return Fc(e.pendingLanes)}function Sp(e){var t=e.pendingLanes&~Sr;return t!==Ae?t:t&Sr?Sr:Ae}function iA(e){return(e&ct)!==Ae}function Tc(e){return(e&Sm)!==Ae}function ps(e){return(e&Sc)===e}function Km(e){var t=ct|bi|Wn;return(e&t)===Ae}function xm(e){return(e&cl)===e}function yp(e,t){var r=ul|bi|Ia|Wn;return(t&r)!==Ae}function oA(e,t){return(t&e.expiredLanes)!==Ae}function Fm(e){return(e&cl)!==Ae}function Tm(){var e=ds;return ds<<=1,(ds&cl)===Ae&&(ds=ls),e}function lA(){var e=gp;return gp<<=1,(gp&Sc)===Ae&&(gp=us),e}function dl(e){return e&-e}function Cc(e){return dl(e)}function ta(e){return 31-ea(e)}function Ca(e){return ta(e)}function yr(e,t){return(e&t)!==Ae}function fs(e,t){return(e&t)===t}function bt(e,t){return e|t}function bc(e,t){return e&~t}function Cm(e,t){return e&t}function sA(e){return e}function uA(e,t){return e!==Gt&&e<t?e:t}function Rc(e){for(var t=[],r=0;r<os;r++)t.push(e);return t}function mu(e,t,r){e.pendingLanes|=t,t!==cs&&(e.suspendedLanes=Ae,e.pingedLanes=Ae);var l=e.eventTimes,c=Ca(t);l[c]=r}function cA(e,t){e.suspendedLanes|=t,e.pingedLanes&=~t;for(var r=e.expirationTimes,l=t;l>0;){var c=ta(l),f=1<<c;r[c]=cn,l&=~f}}function Kp(e,t,r){e.pingedLanes|=e.suspendedLanes&t}function bm(e,t){var r=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=Ae,e.pingedLanes=Ae,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t;for(var l=e.entanglements,c=e.eventTimes,f=e.expirationTimes,v=r;v>0;){var x=ta(v),T=1<<x;l[x]=Ae,c[x]=cn,f[x]=cn,v&=~T}}function xp(e,t){for(var r=e.entangledLanes|=t,l=e.entanglements,c=r;c;){var f=ta(c),v=1<<f;v&t|l[f]&t&&(l[f]|=t),c&=~v}}function Rm(e,t){var r=dl(t),l;switch(r){case bi:l=ul;break;case Wn:l=Ia;break;case ls:case ap:case rp:case ip:case op:case lp:case sp:case up:case cp:case ss:case dp:case pu:case fu:case pp:case Uc:case fp:case us:case mp:case yc:case hp:case Ap:l=Fo;break;case cs:l=xc;break;default:l=Gt;break}return(l&(e.suspendedLanes|t))!==Gt?Gt:l}function kc(e,t,r){if(Ur)for(var l=e.pendingUpdatersLaneMap;r>0;){var c=Ca(r),f=1<<c,v=l[c];v.add(t),r&=~f}}function dA(e,t){if(Ur)for(var r=e.pendingUpdatersLaneMap,l=e.memoizedUpdaters;t>0;){var c=Ca(t),f=1<<c,v=r[c];v.size>0&&(v.forEach(function(x){var T=x.alternate;(T===null||!l.has(T))&&l.add(x)}),v.clear()),t&=~f}}function km(e,t){return null}var Za=ct,Xi=bi,oi=Wn,li=cs,Nc=Gt;function si(){return Nc}function na(e){Nc=e}function pA(e,t){var r=Nc;try{return Nc=e,t()}finally{Nc=r}}function fA(e,t){return e!==0&&e<t?e:t}function wc(e,t){return e>t?e:t}function va(e,t){return e!==0&&e<t}function mA(e){var t=dl(e);return va(Za,t)?va(Xi,t)?Tc(t)?oi:li:Xi:Za}function Fp(e){var t=e.current.memoizedState;return t.isDehydrated}var Ec;function qa(e){Ec=e}function dS(e){Ec(e)}var Oe;function hu(e){Oe=e}var Tp;function hA(e){Tp=e}var AA;function Mc(e){AA=e}var Bc;function Nm(e){Bc=e}var Cp=!1,Qc=[],To=null,_i=null,$i=null,Jn=new Map,Xa=new Map,_a=[],gA=[\"mousedown\",\"mouseup\",\"touchcancel\",\"touchend\",\"touchstart\",\"auxclick\",\"dblclick\",\"pointercancel\",\"pointerdown\",\"pointerup\",\"dragend\",\"dragstart\",\"drop\",\"compositionend\",\"compositionstart\",\"keydown\",\"keypress\",\"keyup\",\"input\",\"textInput\",\"copy\",\"cut\",\"paste\",\"click\",\"change\",\"contextmenu\",\"reset\",\"submit\"];function vA(e){return gA.indexOf(e)>-1}function ki(e,t,r,l,c){return{blockedOn:e,domEventName:t,eventSystemFlags:r,nativeEvent:c,targetContainers:[l]}}function wm(e,t){switch(e){case\"focusin\":case\"focusout\":To=null;break;case\"dragenter\":case\"dragleave\":_i=null;break;case\"mouseover\":case\"mouseout\":$i=null;break;case\"pointerover\":case\"pointerout\":{var r=t.pointerId;Jn.delete(r);break}case\"gotpointercapture\":case\"lostpointercapture\":{var l=t.pointerId;Xa.delete(l);break}}}function Kr(e,t,r,l,c,f){if(e===null||e.nativeEvent!==f){var v=ki(t,r,l,c,f);if(t!==null){var x=Fu(t);x!==null&&Oe(x)}return v}e.eventSystemFlags|=l;var T=e.targetContainers;return c!==null&&T.indexOf(c)===-1&&T.push(c),e}function pS(e,t,r,l,c){switch(t){case\"focusin\":{var f=c;return To=Kr(To,e,t,r,l,f),!0}case\"dragenter\":{var v=c;return _i=Kr(_i,e,t,r,l,v),!0}case\"mouseover\":{var x=c;return $i=Kr($i,e,t,r,l,x),!0}case\"pointerover\":{var T=c,w=T.pointerId;return Jn.set(w,Kr(Jn.get(w)||null,e,t,r,l,T)),!0}case\"gotpointercapture\":{var M=c,H=M.pointerId;return Xa.set(H,Kr(Xa.get(H)||null,e,t,r,l,M)),!0}}return!1}function Em(e){var t=zc(e.target);if(t!==null){var r=Br(t);if(r!==null){var l=r.tag;if(l===te){var c=Hi(r);if(c!==null){e.blockedOn=c,Bc(e.priority,function(){Tp(r)});return}}else if(l===b){var f=r.stateNode;if(Fp(f)){e.blockedOn=Pi(r);return}}}}e.blockedOn=null}function UA(e){for(var t=AA(),r={blockedOn:null,target:e,priority:t},l=0;l<_a.length&&va(t,_a[l].priority);l++);_a.splice(l,0,r),l===0&&Em(r)}function Dc(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;t.length>0;){var r=t[0],l=gu(e.domEventName,e.eventSystemFlags,r,e.nativeEvent);if(l===null){var c=e.nativeEvent,f=new c.constructor(c.type,c);oS(f),c.target.dispatchEvent(f),lS()}else{var v=Fu(l);return v!==null&&Oe(v),e.blockedOn=l,!1}t.shift()}return!0}function Mm(e,t,r){Dc(e)&&r.delete(t)}function fS(){Cp=!1,To!==null&&Dc(To)&&(To=null),_i!==null&&Dc(_i)&&(_i=null),$i!==null&&Dc($i)&&($i=null),Jn.forEach(Mm),Xa.forEach(Mm)}function pl(e,t){e.blockedOn===t&&(e.blockedOn=null,Cp||(Cp=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,fS)))}function ms(e){if(Qc.length>0){pl(Qc[0],e);for(var t=1;t<Qc.length;t++){var r=Qc[t];r.blockedOn===e&&(r.blockedOn=null)}}To!==null&&pl(To,e),_i!==null&&pl(_i,e),$i!==null&&pl($i,e);var l=function(x){return pl(x,e)};Jn.forEach(l),Xa.forEach(l);for(var c=0;c<_a.length;c++){var f=_a[c];f.blockedOn===e&&(f.blockedOn=null)}for(;_a.length>0;){var v=_a[0];if(v.blockedOn!==null)break;Em(v),v.blockedOn===null&&_a.shift()}}var ba=u.ReactCurrentBatchConfig,Lt=!0;function pa(e){Lt=!!e}function aa(){return Lt}function Ra(e,t,r){var l=bp(t),c;switch(l){case Za:c=Lr;break;case Xi:c=Au;break;case oi:default:c=zn;break}return c.bind(null,t,r,e)}function Lr(e,t,r,l){var c=si(),f=ba.transition;ba.transition=null;try{na(Za),zn(e,t,r,l)}finally{na(c),ba.transition=f}}function Au(e,t,r,l){var c=si(),f=ba.transition;ba.transition=null;try{na(Xi),zn(e,t,r,l)}finally{na(c),ba.transition=f}}function zn(e,t,r,l){Lt&&jc(e,t,r,l)}function jc(e,t,r,l){var c=gu(e,t,r,l);if(c===null){NS(e,t,l,eo,r),wm(e,l);return}if(pS(c,e,t,r,l)){l.stopPropagation();return}if(wm(e,l),t&ei&&vA(e)){for(;c!==null;){var f=Fu(c);f!==null&&dS(f);var v=gu(e,t,r,l);if(v===null&&NS(e,t,l,eo,r),v===c)break;c=v}c!==null&&l.stopPropagation();return}NS(e,t,l,null,r)}var eo=null;function gu(e,t,r,l){eo=null;var c=im(l),f=zc(c);if(f!==null){var v=Br(f);if(v===null)f=null;else{var x=v.tag;if(x===te){var T=Hi(v);if(T!==null)return T;f=null}else if(x===b){var w=v.stateNode;if(Fp(w))return Pi(v);f=null}else v!==f&&(f=null)}}return eo=f,null}function bp(e){switch(e){case\"cancel\":case\"click\":case\"close\":case\"contextmenu\":case\"copy\":case\"cut\":case\"auxclick\":case\"dblclick\":case\"dragend\":case\"dragstart\":case\"drop\":case\"focusin\":case\"focusout\":case\"input\":case\"invalid\":case\"keydown\":case\"keypress\":case\"keyup\":case\"mousedown\":case\"mouseup\":case\"paste\":case\"pause\":case\"play\":case\"pointercancel\":case\"pointerdown\":case\"pointerup\":case\"ratechange\":case\"reset\":case\"resize\":case\"seeked\":case\"submit\":case\"touchcancel\":case\"touchend\":case\"touchstart\":case\"volumechange\":case\"change\":case\"selectionchange\":case\"textInput\":case\"compositionstart\":case\"compositionend\":case\"compositionupdate\":case\"beforeblur\":case\"afterblur\":case\"beforeinput\":case\"blur\":case\"fullscreenchange\":case\"focus\":case\"hashchange\":case\"popstate\":case\"select\":case\"selectstart\":return Za;case\"drag\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"mousemove\":case\"mouseout\":case\"mouseover\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"scroll\":case\"toggle\":case\"touchmove\":case\"wheel\":case\"mouseenter\":case\"mouseleave\":case\"pointerenter\":case\"pointerleave\":return Xi;case\"message\":{var t=Xd();switch(t){case pc:return Za;case ll:return Xi;case Ko:case cS:return oi;case ts:return li;default:return oi}}default:return oi}}function Lc(e,t,r){return e.addEventListener(t,r,!1),r}function xr(e,t,r){return e.addEventListener(t,r,!0),r}function Bm(e,t,r,l){return e.addEventListener(t,r,{capture:!0,passive:l}),r}function vu(e,t,r,l){return e.addEventListener(t,r,{passive:l}),r}var Or=null,Uu=null,hs=null;function fl(e){return Or=e,Uu=Oc(),!0}function Rp(){Or=null,Uu=null,hs=null}function Co(){if(hs)return hs;var e,t=Uu,r=t.length,l,c=Oc(),f=c.length;for(e=0;e<r&&t[e]===c[e];e++);var v=r-e;for(l=1;l<=v&&t[r-l]===c[f-l];l++);var x=l>1?1-l:void 0;return hs=c.slice(e,x),hs}function Oc(){return\"value\"in Or?Or.value:Or.textContent}function ml(e){var t,r=e.keyCode;return\"charCode\"in e?(t=e.charCode,t===0&&r===13&&(t=13)):t=r,t===10&&(t=13),t>=32||t===13?t:0}function Su(){return!0}function Vc(){return!1}function Ya(e){function t(r,l,c,f,v){this._reactName=r,this._targetInst=c,this.type=l,this.nativeEvent=f,this.target=v,this.currentTarget=null;for(var x in e)if(e.hasOwnProperty(x)){var T=e[x];T?this[x]=T(f):this[x]=f[x]}var w=f.defaultPrevented!=null?f.defaultPrevented:f.returnValue===!1;return w?this.isDefaultPrevented=Su:this.isDefaultPrevented=Vc,this.isPropagationStopped=Vc,this}return Rt(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var r=this.nativeEvent;r&&(r.preventDefault?r.preventDefault():typeof r.returnValue!=\"unknown\"&&(r.returnValue=!1),this.isDefaultPrevented=Su)},stopPropagation:function(){var r=this.nativeEvent;r&&(r.stopPropagation?r.stopPropagation():typeof r.cancelBubble!=\"unknown\"&&(r.cancelBubble=!0),this.isPropagationStopped=Su)},persist:function(){},isPersistent:Su}),t}var ra={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},to=Ya(ra),$a=Rt({},ra,{view:0,detail:0}),Fr=Ya($a),kp,Ic,As;function mS(e){e!==As&&(As&&e.type===\"mousemove\"?(kp=e.screenX-As.screenX,Ic=e.screenY-As.screenY):(kp=0,Ic=0),As=e)}var Ni=Rt({},$a,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Fn,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return\"movementX\"in e?e.movementX:(mS(e),kp)},movementY:function(e){return\"movementY\"in e?e.movementY:Ic}}),Qm=Ya(Ni),Dm=Rt({},Ni,{dataTransfer:0}),gs=Ya(Dm),jm=Rt({},$a,{relatedTarget:0}),bo=Ya(jm),SA=Rt({},ra,{animationName:0,elapsedTime:0,pseudoElement:0}),yA=Ya(SA),Lm=Rt({},ra,{clipboardData:function(e){return\"clipboardData\"in e?e.clipboardData:window.clipboardData}}),Np=Ya(Lm),hS=Rt({},ra,{data:0}),KA=Ya(hS),xA=KA,FA={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},vs={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"};function AS(e){if(e.key){var t=FA[e.key]||e.key;if(t!==\"Unidentified\")return t}if(e.type===\"keypress\"){var r=ml(e);return r===13?\"Enter\":String.fromCharCode(r)}return e.type===\"keydown\"||e.type===\"keyup\"?vs[e.keyCode]||\"Unidentified\":\"\"}var yu={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function TA(e){var t=this,r=t.nativeEvent;if(r.getModifierState)return r.getModifierState(e);var l=yu[e];return l?!!r[l]:!1}function Fn(e){return TA}var gS=Rt({},$a,{key:AS,code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Fn,charCode:function(e){return e.type===\"keypress\"?ml(e):0},keyCode:function(e){return e.type===\"keydown\"||e.type===\"keyup\"?e.keyCode:0},which:function(e){return e.type===\"keypress\"?ml(e):e.type===\"keydown\"||e.type===\"keyup\"?e.keyCode:0}}),CA=Ya(gS),vS=Rt({},Ni,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),bA=Ya(vS),RA=Rt({},$a,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Fn}),kA=Ya(RA),US=Rt({},ra,{propertyName:0,elapsedTime:0,pseudoElement:0}),ui=Ya(US),Om=Rt({},Ni,{deltaX:function(e){return\"deltaX\"in e?e.deltaX:\"wheelDeltaX\"in e?-e.wheelDeltaX:0},deltaY:function(e){return\"deltaY\"in e?e.deltaY:\"wheelDeltaY\"in e?-e.wheelDeltaY:\"wheelDelta\"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),SS=Ya(Om),hl=[9,13,27,32],qc=229,Ro=Rn&&\"CompositionEvent\"in window,Al=null;Rn&&\"documentMode\"in document&&(Al=document.documentMode);var Vm=Rn&&\"TextEvent\"in window&&!Al,wp=Rn&&(!Ro||Al&&Al>8&&Al<=11),NA=32,Ep=String.fromCharCode(NA);function yS(){Ct(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]),Ct(\"onCompositionEnd\",[\"compositionend\",\"focusout\",\"keydown\",\"keypress\",\"keyup\",\"mousedown\"]),Ct(\"onCompositionStart\",[\"compositionstart\",\"focusout\",\"keydown\",\"keypress\",\"keyup\",\"mousedown\"]),Ct(\"onCompositionUpdate\",[\"compositionupdate\",\"focusout\",\"keydown\",\"keypress\",\"keyup\",\"mousedown\"])}var Im=!1;function wA(e){return(e.ctrlKey||e.altKey||e.metaKey)&&!(e.ctrlKey&&e.altKey)}function Mp(e){switch(e){case\"compositionstart\":return\"onCompositionStart\";case\"compositionend\":return\"onCompositionEnd\";case\"compositionupdate\":return\"onCompositionUpdate\"}}function Bp(e,t){return e===\"keydown\"&&t.keyCode===qc}function qm(e,t){switch(e){case\"keyup\":return hl.indexOf(t.keyCode)!==-1;case\"keydown\":return t.keyCode!==qc;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function Qp(e){var t=e.detail;return typeof t==\"object\"&&\"data\"in t?t.data:null}function EA(e){return e.locale===\"ko\"}var Us=!1;function Ym(e,t,r,l,c){var f,v;if(Ro?f=Mp(t):Us?qm(t,l)&&(f=\"onCompositionEnd\"):Bp(t,l)&&(f=\"onCompositionStart\"),!f)return null;wp&&!EA(l)&&(!Us&&f===\"onCompositionStart\"?Us=fl(c):f===\"onCompositionEnd\"&&Us&&(v=Co()));var x=OA(r,f);if(x.length>0){var T=new KA(f,t,null,l,c);if(e.push({event:T,listeners:x}),v)T.data=v;else{var w=Qp(l);w!==null&&(T.data=w)}}}function Dp(e,t){switch(e){case\"compositionend\":return Qp(t);case\"keypress\":var r=t.which;return r!==NA?null:(Im=!0,Ep);case\"textInput\":var l=t.data;return l===Ep&&Im?null:l;default:return null}}function Gm(e,t){if(Us){if(e===\"compositionend\"||!Ro&&qm(e,t)){var r=Co();return Rp(),Us=!1,r}return null}switch(e){case\"paste\":return null;case\"keypress\":if(!wA(t)){if(t.char&&t.char.length>1)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case\"compositionend\":return wp&&!EA(t)?null:t.data;default:return null}}function jp(e,t,r,l,c){var f;if(Vm?f=Dp(t,l):f=Gm(t,l),!f)return null;var v=OA(r,\"onBeforeInput\");if(v.length>0){var x=new xA(\"onBeforeInput\",\"beforeinput\",null,l,c);e.push({event:x,listeners:v}),x.data=f}}function MA(e,t,r,l,c,f,v){Ym(e,t,r,l,c),jp(e,t,r,l,c)}var KS={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Yc(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t===\"input\"?!!KS[e.type]:t===\"textarea\"}/**\n * Checks if an event is supported in the current execution environment.\n *\n * NOTE: This will not work correctly for non-generic events such as `change`,\n * `reset`, `load`, `error`, and `select`.\n *\n * Borrows from Modernizr.\n *\n * @param {string} eventNameSuffix Event name, e.g. \"click\".\n * @return {boolean} True if the event is supported.\n * @internal\n * @license Modernizr 3.0.0pre (Custom Build) | MIT\n */function xS(e){if(!Rn)return!1;var t=\"on\"+e,r=t in document;if(!r){var l=document.createElement(\"div\");l.setAttribute(t,\"return;\"),r=typeof l[t]==\"function\"}return r}function Gc(){Ct(\"onChange\",[\"change\",\"click\",\"focusin\",\"focusout\",\"input\",\"keydown\",\"keyup\",\"selectionchange\"])}function BA(e,t,r,l){ru(l);var c=OA(t,\"onChange\");if(c.length>0){var f=new to(\"onChange\",\"change\",null,r,l);e.push({event:f,listeners:c})}}var gl=null,n=null;function a(e){var t=e.nodeName&&e.nodeName.toLowerCase();return t===\"select\"||t===\"input\"&&e.type===\"file\"}function s(e){var t=[];BA(t,n,e,im(e)),Jh(d,t)}function d(e){KC(e,0)}function g(e){var t=Yp(e);if(qi(t))return e}function S(e,t){if(e===\"change\")return t}var k=!1;Rn&&(k=xS(\"input\")&&(!document.documentMode||document.documentMode>9));function D(e,t){gl=e,n=t,gl.attachEvent(\"onpropertychange\",re)}function G(){gl&&(gl.detachEvent(\"onpropertychange\",re),gl=null,n=null)}function re(e){e.propertyName===\"value\"&&g(n)&&s(e)}function Ue(e,t,r){e===\"focusin\"?(G(),D(t,r)):e===\"focusout\"&&G()}function xe(e,t){if(e===\"selectionchange\"||e===\"keyup\"||e===\"keydown\")return g(n)}function ge(e){var t=e.nodeName;return t&&t.toLowerCase()===\"input\"&&(e.type===\"checkbox\"||e.type===\"radio\")}function De(e,t){if(e===\"click\")return g(t)}function Ge(e,t){if(e===\"input\"||e===\"change\")return g(t)}function He(e){var t=e._wrapperState;!t||!t.controlled||e.type!==\"number\"||at(e,\"number\",e.value)}function Hn(e,t,r,l,c,f,v){var x=r?Yp(r):window,T,w;if(a(x)?T=S:Yc(x)?k?T=Ge:(T=xe,w=Ue):ge(x)&&(T=De),T){var M=T(t,r);if(M){BA(e,M,l,c);return}}w&&w(t,x,r),t===\"focusout\"&&He(x)}function Z(){Wt(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]),Wt(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]),Wt(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]),Wt(\"onPointerLeave\",[\"pointerout\",\"pointerover\"])}function z(e,t,r,l,c,f,v){var x=t===\"mouseover\"||t===\"pointerover\",T=t===\"mouseout\"||t===\"pointerout\";if(x&&!oc(l)){var w=l.relatedTarget||l.fromElement;if(w&&(zc(w)||r0(w)))return}if(!(!T&&!x)){var M;if(c.window===c)M=c;else{var H=c.ownerDocument;H?M=H.defaultView||H.parentWindow:M=window}var J,ne;if(T){var ie=l.relatedTarget||l.toElement;if(J=r,ne=ie?zc(ie):null,ne!==null){var se=Br(ne);(ne!==se||ne.tag!==E&&ne.tag!==O)&&(ne=null)}}else J=null,ne=r;if(J!==ne){var Be=Qm,rt=\"onMouseLeave\",Xe=\"onMouseEnter\",Vt=\"mouse\";(t===\"pointerout\"||t===\"pointerover\")&&(Be=bA,rt=\"onPointerLeave\",Xe=\"onPointerEnter\",Vt=\"pointer\");var Dt=J==null?M:Yp(J),X=ne==null?M:Yp(ne),ue=new Be(rt,Vt+\"leave\",J,l,c);ue.target=Dt,ue.relatedTarget=X;var _=null,Fe=zc(c);if(Fe===r){var Le=new Be(Xe,Vt+\"enter\",ne,l,c);Le.target=X,Le.relatedTarget=Dt,_=Le}s4(e,ue,_,J,ne)}}}function $(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var Se=typeof Object.is==\"function\"?Object.is:$;function We(e,t){if(Se(e,t))return!0;if(typeof e!=\"object\"||e===null||typeof t!=\"object\"||t===null)return!1;var r=Object.keys(e),l=Object.keys(t);if(r.length!==l.length)return!1;for(var c=0;c<r.length;c++){var f=r[c];if(!ma.call(t,f)||!Se(e[f],t[f]))return!1}return!0}function ot(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function st(e){for(;e;){if(e.nextSibling)return e.nextSibling;e=e.parentNode}}function At(e,t){for(var r=ot(e),l=0,c=0;r;){if(r.nodeType===go){if(c=l+r.textContent.length,l<=t&&c>=t)return{node:r,offset:t-l};l=c}r=ot(st(r))}}function Ua(e){var t=e.ownerDocument,r=t&&t.defaultView||window,l=r.getSelection&&r.getSelection();if(!l||l.rangeCount===0)return null;var c=l.anchorNode,f=l.anchorOffset,v=l.focusNode,x=l.focusOffset;try{c.nodeType,v.nodeType}catch(T){return null}return Pt(e,c,f,v,x)}function Pt(e,t,r,l,c){var f=0,v=-1,x=-1,T=0,w=0,M=e,H=null;e:for(;;){for(var J=null;M===t&&(r===0||M.nodeType===go)&&(v=f+r),M===l&&(c===0||M.nodeType===go)&&(x=f+c),M.nodeType===go&&(f+=M.nodeValue.length),(J=M.firstChild)!==null;)H=M,M=J;for(;;){if(M===e)break e;if(H===t&&++T===r&&(v=f),H===l&&++w===c&&(x=f),(J=M.nextSibling)!==null)break;M=H,H=M.parentNode}M=J}return v===-1||x===-1?null:{start:v,end:x}}function vl(e,t){var r=e.ownerDocument||document,l=r&&r.defaultView||window;if(l.getSelection){var c=l.getSelection(),f=e.textContent.length,v=Math.min(t.start,f),x=t.end===void 0?v:Math.min(t.end,f);if(!c.extend&&v>x){var T=x;x=v,v=T}var w=At(e,v),M=At(e,x);if(w&&M){if(c.rangeCount===1&&c.anchorNode===w.node&&c.anchorOffset===w.offset&&c.focusNode===M.node&&c.focusOffset===M.offset)return;var H=r.createRange();H.setStart(w.node,w.offset),c.removeAllRanges(),v>x?(c.addRange(H),c.extend(M.node,M.offset)):(H.setEnd(M.node,M.offset),c.addRange(H))}}}function QA(e){return e&&e.nodeType===go}function dC(e,t){return!e||!t?!1:e===t?!0:QA(e)?!1:QA(t)?dC(e,t.parentNode):\"contains\"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1}function GQ(e){return e&&e.ownerDocument&&dC(e.ownerDocument.documentElement,e)}function WQ(e){try{return typeof e.contentWindow.location.href==\"string\"}catch(t){return!1}}function pC(){for(var e=window,t=$r();t instanceof e.HTMLIFrameElement;){if(WQ(t))e=t.contentWindow;else return t;t=$r(e.document)}return t}function FS(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===\"input\"&&(e.type===\"text\"||e.type===\"search\"||e.type===\"tel\"||e.type===\"url\"||e.type===\"password\")||t===\"textarea\"||e.contentEditable===\"true\")}function JQ(){var e=pC();return{focusedElem:e,selectionRange:FS(e)?HQ(e):null}}function zQ(e){var t=pC(),r=e.focusedElem,l=e.selectionRange;if(t!==r&&GQ(r)){l!==null&&FS(r)&&PQ(r,l);for(var c=[],f=r;f=f.parentNode;)f.nodeType===mr&&c.push({element:f,left:f.scrollLeft,top:f.scrollTop});typeof r.focus==\"function\"&&r.focus();for(var v=0;v<c.length;v++){var x=c[v];x.element.scrollLeft=x.left,x.element.scrollTop=x.top}}}function HQ(e){var t;return\"selectionStart\"in e?t={start:e.selectionStart,end:e.selectionEnd}:t=Ua(e),t||{start:0,end:0}}function PQ(e,t){var r=t.start,l=t.end;l===void 0&&(l=r),\"selectionStart\"in e?(e.selectionStart=r,e.selectionEnd=Math.min(l,e.value.length)):vl(e,t)}var ZQ=Rn&&\"documentMode\"in document&&document.documentMode<=11;function XQ(){Ct(\"onSelect\",[\"focusout\",\"contextmenu\",\"dragend\",\"focusin\",\"keydown\",\"keyup\",\"mousedown\",\"mouseup\",\"selectionchange\"])}var Lp=null,TS=null,Wm=null,CS=!1;function _Q(e){if(\"selectionStart\"in e&&FS(e))return{start:e.selectionStart,end:e.selectionEnd};var t=e.ownerDocument&&e.ownerDocument.defaultView||window,r=t.getSelection();return{anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}}function $Q(e){return e.window===e?e.document:e.nodeType===vo?e:e.ownerDocument}function fC(e,t,r){var l=$Q(r);if(!(CS||Lp==null||Lp!==$r(l))){var c=_Q(Lp);if(!Wm||!We(Wm,c)){Wm=c;var f=OA(TS,\"onSelect\");if(f.length>0){var v=new to(\"onSelect\",\"select\",null,t,r);e.push({event:v,listeners:f}),v.target=Lp}}}}function e4(e,t,r,l,c,f,v){var x=r?Yp(r):window;switch(t){case\"focusin\":(Yc(x)||x.contentEditable===\"true\")&&(Lp=x,TS=r,Wm=null);break;case\"focusout\":Lp=null,TS=null,Wm=null;break;case\"mousedown\":CS=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":CS=!1,fC(e,l,c);break;case\"selectionchange\":if(ZQ)break;case\"keydown\":case\"keyup\":fC(e,l,c)}}function DA(e,t){var r={};return r[e.toLowerCase()]=t.toLowerCase(),r[\"Webkit\"+e]=\"webkit\"+t,r[\"Moz\"+e]=\"moz\"+t,r}var Op={animationend:DA(\"Animation\",\"AnimationEnd\"),animationiteration:DA(\"Animation\",\"AnimationIteration\"),animationstart:DA(\"Animation\",\"AnimationStart\"),transitionend:DA(\"Transition\",\"TransitionEnd\")},bS={},mC={};Rn&&(mC=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete Op.animationend.animation,delete Op.animationiteration.animation,delete Op.animationstart.animation),\"TransitionEvent\"in window||delete Op.transitionend.transition);function jA(e){if(bS[e])return bS[e];if(!Op[e])return e;var t=Op[e];for(var r in t)if(t.hasOwnProperty(r)&&r in mC)return bS[e]=t[r];return e}var hC=jA(\"animationend\"),AC=jA(\"animationiteration\"),gC=jA(\"animationstart\"),vC=jA(\"transitionend\"),UC=new Map,SC=[\"abort\",\"auxClick\",\"cancel\",\"canPlay\",\"canPlayThrough\",\"click\",\"close\",\"contextMenu\",\"copy\",\"cut\",\"drag\",\"dragEnd\",\"dragEnter\",\"dragExit\",\"dragLeave\",\"dragOver\",\"dragStart\",\"drop\",\"durationChange\",\"emptied\",\"encrypted\",\"ended\",\"error\",\"gotPointerCapture\",\"input\",\"invalid\",\"keyDown\",\"keyPress\",\"keyUp\",\"load\",\"loadedData\",\"loadedMetadata\",\"loadStart\",\"lostPointerCapture\",\"mouseDown\",\"mouseMove\",\"mouseOut\",\"mouseOver\",\"mouseUp\",\"paste\",\"pause\",\"play\",\"playing\",\"pointerCancel\",\"pointerDown\",\"pointerMove\",\"pointerOut\",\"pointerOver\",\"pointerUp\",\"progress\",\"rateChange\",\"reset\",\"resize\",\"seeked\",\"seeking\",\"stalled\",\"submit\",\"suspend\",\"timeUpdate\",\"touchCancel\",\"touchEnd\",\"touchStart\",\"volumeChange\",\"scroll\",\"toggle\",\"touchMove\",\"waiting\",\"wheel\"];function Ku(e,t){UC.set(e,t),Ct(t,[e])}function t4(){for(var e=0;e<SC.length;e++){var t=SC[e],r=t.toLowerCase(),l=t[0].toUpperCase()+t.slice(1);Ku(r,\"on\"+l)}Ku(hC,\"onAnimationEnd\"),Ku(AC,\"onAnimationIteration\"),Ku(gC,\"onAnimationStart\"),Ku(\"dblclick\",\"onDoubleClick\"),Ku(\"focusin\",\"onFocus\"),Ku(\"focusout\",\"onBlur\"),Ku(vC,\"onTransitionEnd\")}function n4(e,t,r,l,c,f,v){var x=UC.get(t);if(x!==void 0){var T=to,w=t;switch(t){case\"keypress\":if(ml(l)===0)return;case\"keydown\":case\"keyup\":T=CA;break;case\"focusin\":w=\"focus\",T=bo;break;case\"focusout\":w=\"blur\",T=bo;break;case\"beforeblur\":case\"afterblur\":T=bo;break;case\"click\":if(l.button===2)return;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":T=Qm;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":T=gs;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":T=kA;break;case hC:case AC:case gC:T=yA;break;case vC:T=ui;break;case\"scroll\":T=Fr;break;case\"wheel\":T=SS;break;case\"copy\":case\"cut\":case\"paste\":T=Np;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":T=bA;break}var M=(f&ei)!==0;{var H=!M&&t===\"scroll\",J=o4(r,x,l.type,M,H);if(J.length>0){var ne=new T(x,w,null,l,c);e.push({event:ne,listeners:J})}}}}t4(),Z(),Gc(),XQ(),yS();function a4(e,t,r,l,c,f,v){n4(e,t,r,l,c,f);var x=(f&rm)===0;x&&(z(e,t,r,l,c),Hn(e,t,r,l,c),e4(e,t,r,l,c),MA(e,t,r,l,c))}var Jm=[\"abort\",\"canplay\",\"canplaythrough\",\"durationchange\",\"emptied\",\"encrypted\",\"ended\",\"error\",\"loadeddata\",\"loadedmetadata\",\"loadstart\",\"pause\",\"play\",\"playing\",\"progress\",\"ratechange\",\"resize\",\"seeked\",\"seeking\",\"stalled\",\"suspend\",\"timeupdate\",\"volumechange\",\"waiting\"],RS=new Set([\"cancel\",\"close\",\"invalid\",\"load\",\"scroll\",\"toggle\"].concat(Jm));function yC(e,t,r){var l=e.type||\"unknown-event\";e.currentTarget=r,Wi(l,t,void 0,e),e.currentTarget=null}function r4(e,t,r){var l;if(r)for(var c=t.length-1;c>=0;c--){var f=t[c],v=f.instance,x=f.currentTarget,T=f.listener;if(v!==l&&e.isPropagationStopped())return;yC(e,T,x),l=v}else for(var w=0;w<t.length;w++){var M=t[w],H=M.instance,J=M.currentTarget,ne=M.listener;if(H!==l&&e.isPropagationStopped())return;yC(e,ne,J),l=H}}function KC(e,t){for(var r=(t&ei)!==0,l=0;l<e.length;l++){var c=e[l],f=c.event,v=c.listeners;r4(f,v,r)}uc()}function i4(e,t,r,l,c){var f=im(r),v=[];a4(v,e,l,r,f,t),KC(v,t)}function Qn(e,t){RS.has(e)||m('Did not expect a listenToNonDelegatedEvent() call for \"%s\". This is a bug in React. Please file an issue.',e);var r=!1,l=QD(t),c=u4(e);l.has(c)||(xC(t,e,Ld,r),l.add(c))}function kS(e,t,r){RS.has(e)&&!t&&m('Did not expect a listenToNativeEvent() call for \"%s\" in the bubble phase. This is a bug in React. Please file an issue.',e);var l=0;t&&(l|=ei),xC(r,e,l,t)}var LA=\"_reactListening\"+Math.random().toString(36).slice(2);function zm(e){if(!e[LA]){e[LA]=!0,Ye.forEach(function(r){r!==\"selectionchange\"&&(RS.has(r)||kS(r,!1,e),kS(r,!0,e))});var t=e.nodeType===vo?e:e.ownerDocument;t!==null&&(t[LA]||(t[LA]=!0,kS(\"selectionchange\",!1,t)))}}function xC(e,t,r,l,c){var f=Ra(e,t,r),v=void 0;sc&&(t===\"touchstart\"||t===\"touchmove\"||t===\"wheel\")&&(v=!0),e=e,l?v!==void 0?Bm(e,t,f,v):xr(e,t,f):v!==void 0?vu(e,t,f,v):Lc(e,t,f)}function FC(e,t){return e===t||e.nodeType===Xn&&e.parentNode===t}function NS(e,t,r,l,c){var f=l;if(!(t&am)&&!(t&Ld)){var v=c;if(l!==null){var x=l;e:for(;;){if(x===null)return;var T=x.tag;if(T===b||T===N){var w=x.stateNode.containerInfo;if(FC(w,v))break;if(T===N)for(var M=x.return;M!==null;){var H=M.tag;if(H===b||H===N){var J=M.stateNode.containerInfo;if(FC(J,v))return}M=M.return}for(;w!==null;){var ne=zc(w);if(ne===null)return;var ie=ne.tag;if(ie===E||ie===O){x=f=ne;continue e}w=w.parentNode}}x=x.return}}}Jh(function(){return i4(e,t,r,f)})}function Hm(e,t,r){return{instance:e,listener:t,currentTarget:r}}function o4(e,t,r,l,c,f){for(var v=t!==null?t+\"Capture\":null,x=l?v:t,T=[],w=e,M=null;w!==null;){var H=w,J=H.stateNode,ne=H.tag;if(ne===E&&J!==null&&(M=J,x!==null)){var ie=tl(w,x);ie!=null&&T.push(Hm(w,ie,M))}if(c)break;w=w.return}return T}function OA(e,t){for(var r=t+\"Capture\",l=[],c=e;c!==null;){var f=c,v=f.stateNode,x=f.tag;if(x===E&&v!==null){var T=v,w=tl(c,r);w!=null&&l.unshift(Hm(c,w,T));var M=tl(c,t);M!=null&&l.push(Hm(c,M,T))}c=c.return}return l}function Vp(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==E);return e||null}function l4(e,t){for(var r=e,l=t,c=0,f=r;f;f=Vp(f))c++;for(var v=0,x=l;x;x=Vp(x))v++;for(;c-v>0;)r=Vp(r),c--;for(;v-c>0;)l=Vp(l),v--;for(var T=c;T--;){if(r===l||l!==null&&r===l.alternate)return r;r=Vp(r),l=Vp(l)}return null}function TC(e,t,r,l,c){for(var f=t._reactName,v=[],x=r;x!==null&&x!==l;){var T=x,w=T.alternate,M=T.stateNode,H=T.tag;if(w!==null&&w===l)break;if(H===E&&M!==null){var J=M;if(c){var ne=tl(x,f);ne!=null&&v.unshift(Hm(x,ne,J))}else if(!c){var ie=tl(x,f);ie!=null&&v.push(Hm(x,ie,J))}}x=x.return}v.length!==0&&e.push({event:t,listeners:v})}function s4(e,t,r,l,c){var f=l&&c?l4(l,c):null;l!==null&&TC(e,t,l,f,!1),c!==null&&r!==null&&TC(e,r,c,f,!0)}function u4(e,t){return e+\"__bubble\"}var ci=!1,Pm=\"dangerouslySetInnerHTML\",VA=\"suppressContentEditableWarning\",xu=\"suppressHydrationWarning\",CC=\"autoFocus\",Wc=\"children\",Jc=\"style\",IA=\"__html\",wS,qA,Zm,bC,YA,RC,kC;wS={dialog:!0,webview:!0},qA=function(e,t){em(e,t),Dd(e,t),Yh(e,t,{registrationNameDependencies:Ze,possibleRegistrationNames:Kt})},RC=Rn&&!document.documentMode,Zm=function(e,t,r){if(!ci){var l=GA(r),c=GA(t);c!==l&&(ci=!0,m(\"Prop `%s` did not match. Server: %s Client: %s\",e,JSON.stringify(c),JSON.stringify(l)))}},bC=function(e){if(!ci){ci=!0;var t=[];e.forEach(function(r){t.push(r)}),m(\"Extra attributes from the server: %s\",t)}},YA=function(e,t){t===!1?m(\"Expected `%s` listener to be a function, instead got `false`.\\n\\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.\",e,e,e):m(\"Expected `%s` listener to be a function, instead got a value of `%s` type.\",e,typeof t)},kC=function(e,t){var r=e.namespaceURI===Ao?e.ownerDocument.createElement(e.tagName):e.ownerDocument.createElementNS(e.namespaceURI,e.tagName);return r.innerHTML=t,r.innerHTML};var c4=/\\r\\n?/g,d4=/\\u0000|\\uFFFD/g;function GA(e){qn(e);var t=typeof e==\"string\"?e:\"\"+e;return t.replace(c4,`\n`).replace(d4,\"\")}function WA(e,t,r,l){var c=GA(t),f=GA(e);if(f!==c&&(l&&(ci||(ci=!0,m('Text content did not match. Server: \"%s\" Client: \"%s\"',f,c))),r&&Ke))throw new Error(\"Text content does not match server-rendered HTML.\")}function NC(e){return e.nodeType===vo?e:e.ownerDocument}function p4(){}function JA(e){e.onclick=p4}function f4(e,t,r,l,c){for(var f in l)if(l.hasOwnProperty(f)){var v=l[f];if(f===Jc)v&&Object.freeze(v),jh(t,v);else if(f===Pm){var x=v?v[IA]:void 0;x!=null&&Th(t,x)}else if(f===Wc)if(typeof v==\"string\"){var T=e!==\"textarea\"||v!==\"\";T&&eu(t,v)}else typeof v==\"number\"&&eu(t,\"\"+v);else f===VA||f===xu||f===CC||(Ze.hasOwnProperty(f)?v!=null&&(typeof v!=\"function\"&&YA(f,v),f===\"onScroll\"&&Qn(\"scroll\",t)):v!=null&&Wa(t,f,v,c))}}function m4(e,t,r,l){for(var c=0;c<t.length;c+=2){var f=t[c],v=t[c+1];f===Jc?jh(e,v):f===Pm?Th(e,v):f===Wc?eu(e,v):Wa(e,f,v,l)}}function h4(e,t,r,l){var c,f=NC(r),v,x=l;if(x===Ao&&(x=zf(e)),x===Ao){if(c=$o(e,t),!c&&e!==e.toLowerCase()&&m(\"<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.\",e),e===\"script\"){var T=f.createElement(\"div\");T.innerHTML=\"<script><\\/script>\";var w=T.firstChild;v=T.removeChild(w)}else if(typeof t.is==\"string\")v=f.createElement(e,{is:t.is});else if(v=f.createElement(e),e===\"select\"){var M=v;t.multiple?M.multiple=!0:t.size&&(M.size=t.size)}}else v=f.createElementNS(x,e);return x===Ao&&!c&&Object.prototype.toString.call(v)===\"[object HTMLUnknownElement]\"&&!ma.call(wS,e)&&(wS[e]=!0,m(\"The tag <%s> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.\",e)),v}function A4(e,t){return NC(t).createTextNode(e)}function g4(e,t,r,l){var c=$o(t,r);qA(t,r);var f;switch(t){case\"dialog\":Qn(\"cancel\",e),Qn(\"close\",e),f=r;break;case\"iframe\":case\"object\":case\"embed\":Qn(\"load\",e),f=r;break;case\"video\":case\"audio\":for(var v=0;v<Jm.length;v++)Qn(Jm[v],e);f=r;break;case\"source\":Qn(\"error\",e),f=r;break;case\"img\":case\"image\":case\"link\":Qn(\"error\",e),Qn(\"load\",e),f=r;break;case\"details\":Qn(\"toggle\",e),f=r;break;case\"input\":Fi(e,r),f=$s(e,r),Qn(\"invalid\",e);break;case\"option\":Yt(e,r),f=r;break;case\"select\":zl(e,r),f=$u(e,r),Qn(\"invalid\",e);break;case\"textarea\":Gf(e,r),f=Yf(e,r),Qn(\"invalid\",e);break;default:f=r}switch(Bd(t,f),f4(t,e,l,f,c),t){case\"input\":xi(e),ae(e,r,!1);break;case\"textarea\":xi(e),xh(e);break;case\"option\":hn(e,r);break;case\"select\":If(e,r);break;default:typeof f.onClick==\"function\"&&JA(e);break}}function v4(e,t,r,l,c){qA(t,l);var f=null,v,x;switch(t){case\"input\":v=$s(e,r),x=$s(e,l),f=[];break;case\"select\":v=$u(e,r),x=$u(e,l),f=[];break;case\"textarea\":v=Yf(e,r),x=Yf(e,l),f=[];break;default:v=r,x=l,typeof v.onClick!=\"function\"&&typeof x.onClick==\"function\"&&JA(e);break}Bd(t,x);var T,w,M=null;for(T in v)if(!(x.hasOwnProperty(T)||!v.hasOwnProperty(T)||v[T]==null))if(T===Jc){var H=v[T];for(w in H)H.hasOwnProperty(w)&&(M||(M={}),M[w]=\"\")}else T===Pm||T===Wc||T===VA||T===xu||T===CC||(Ze.hasOwnProperty(T)?f||(f=[]):(f=f||[]).push(T,null));for(T in x){var J=x[T],ne=v!=null?v[T]:void 0;if(!(!x.hasOwnProperty(T)||J===ne||J==null&&ne==null))if(T===Jc)if(J&&Object.freeze(J),ne){for(w in ne)ne.hasOwnProperty(w)&&(!J||!J.hasOwnProperty(w))&&(M||(M={}),M[w]=\"\");for(w in J)J.hasOwnProperty(w)&&ne[w]!==J[w]&&(M||(M={}),M[w]=J[w])}else M||(f||(f=[]),f.push(T,M)),M=J;else if(T===Pm){var ie=J?J[IA]:void 0,se=ne?ne[IA]:void 0;ie!=null&&se!==ie&&(f=f||[]).push(T,ie)}else T===Wc?(typeof J==\"string\"||typeof J==\"number\")&&(f=f||[]).push(T,\"\"+J):T===VA||T===xu||(Ze.hasOwnProperty(T)?(J!=null&&(typeof J!=\"function\"&&YA(T,J),T===\"onScroll\"&&Qn(\"scroll\",e)),!f&&ne!==J&&(f=[])):(f=f||[]).push(T,J))}return M&&(rS(M,x[Jc]),(f=f||[]).push(Jc,M)),f}function U4(e,t,r,l,c){r===\"input\"&&c.type===\"radio\"&&c.name!=null&&C(e,c);var f=$o(r,l),v=$o(r,c);switch(m4(e,t,f,v),r){case\"input\":V(e,c);break;case\"textarea\":Kh(e,c);break;case\"select\":wd(e,c);break}}function S4(e){{var t=e.toLowerCase();return rc.hasOwnProperty(t)&&rc[t]||null}}function y4(e,t,r,l,c,f,v){var x,T;switch(x=$o(t,r),qA(t,r),t){case\"dialog\":Qn(\"cancel\",e),Qn(\"close\",e);break;case\"iframe\":case\"object\":case\"embed\":Qn(\"load\",e);break;case\"video\":case\"audio\":for(var w=0;w<Jm.length;w++)Qn(Jm[w],e);break;case\"source\":Qn(\"error\",e);break;case\"img\":case\"image\":case\"link\":Qn(\"error\",e),Qn(\"load\",e);break;case\"details\":Qn(\"toggle\",e);break;case\"input\":Fi(e,r),Qn(\"invalid\",e);break;case\"option\":Yt(e,r);break;case\"select\":zl(e,r),Qn(\"invalid\",e);break;case\"textarea\":Gf(e,r),Qn(\"invalid\",e);break}Bd(t,r);{T=new Set;for(var M=e.attributes,H=0;H<M.length;H++){var J=M[H].name.toLowerCase();switch(J){case\"value\":break;case\"checked\":break;case\"selected\":break;default:T.add(M[H].name)}}}var ne=null;for(var ie in r)if(r.hasOwnProperty(ie)){var se=r[ie];if(ie===Wc)typeof se==\"string\"?e.textContent!==se&&(r[xu]!==!0&&WA(e.textContent,se,f,v),ne=[Wc,se]):typeof se==\"number\"&&e.textContent!==\"\"+se&&(r[xu]!==!0&&WA(e.textContent,se,f,v),ne=[Wc,\"\"+se]);else if(Ze.hasOwnProperty(ie))se!=null&&(typeof se!=\"function\"&&YA(ie,se),ie===\"onScroll\"&&Qn(\"scroll\",e));else if(v&&typeof x==\"boolean\"){var Be=void 0,rt=fn(ie);if(r[xu]!==!0){if(!(ie===VA||ie===xu||ie===\"value\"||ie===\"checked\"||ie===\"selected\")){if(ie===Pm){var Xe=e.innerHTML,Vt=se?se[IA]:void 0;if(Vt!=null){var Dt=kC(e,Vt);Dt!==Xe&&Zm(ie,Xe,Dt)}}else if(ie===Jc){if(T.delete(ie),RC){var X=nS(se);Be=e.getAttribute(\"style\"),X!==Be&&Zm(ie,Be,X)}}else if(x&&!j)T.delete(ie.toLowerCase()),Be=Vl(e,ie,se),se!==Be&&Zm(ie,Be,se);else if(!Nn(ie,rt,x)&&!ha(ie,se,rt,x)){var ue=!1;if(rt!==null)T.delete(rt.attributeName),Be=Go(e,ie,se,rt);else{var _=l;if(_===Ao&&(_=zf(t)),_===Ao)T.delete(ie.toLowerCase());else{var Fe=S4(ie);Fe!==null&&Fe!==ie&&(ue=!0,T.delete(Fe)),T.delete(ie)}Be=Vl(e,ie,se)}var Le=j;!Le&&se!==Be&&!ue&&Zm(ie,Be,se)}}}}}switch(v&&T.size>0&&r[xu]!==!0&&bC(T),t){case\"input\":xi(e),ae(e,r,!0);break;case\"textarea\":xi(e),xh(e);break;case\"select\":case\"option\":break;default:typeof r.onClick==\"function\"&&JA(e);break}return ne}function K4(e,t,r){var l=e.nodeValue!==t;return l}function ES(e,t){{if(ci)return;ci=!0,m(\"Did not expect server HTML to contain a <%s> in <%s>.\",t.nodeName.toLowerCase(),e.nodeName.toLowerCase())}}function MS(e,t){{if(ci)return;ci=!0,m('Did not expect server HTML to contain the text node \"%s\" in <%s>.',t.nodeValue,e.nodeName.toLowerCase())}}function BS(e,t,r){{if(ci)return;ci=!0,m(\"Expected server HTML to contain a matching <%s> in <%s>.\",t,e.nodeName.toLowerCase())}}function QS(e,t){{if(t===\"\"||ci)return;ci=!0,m('Expected server HTML to contain a matching text node for \"%s\" in <%s>.',t,e.nodeName.toLowerCase())}}function x4(e,t,r){switch(t){case\"input\":oe(e,r);return;case\"textarea\":_U(e,r);return;case\"select\":qf(e,r);return}}var Xm=function(){},_m=function(){};{var F4=[\"address\",\"applet\",\"area\",\"article\",\"aside\",\"base\",\"basefont\",\"bgsound\",\"blockquote\",\"body\",\"br\",\"button\",\"caption\",\"center\",\"col\",\"colgroup\",\"dd\",\"details\",\"dir\",\"div\",\"dl\",\"dt\",\"embed\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"frame\",\"frameset\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"head\",\"header\",\"hgroup\",\"hr\",\"html\",\"iframe\",\"img\",\"input\",\"isindex\",\"li\",\"link\",\"listing\",\"main\",\"marquee\",\"menu\",\"menuitem\",\"meta\",\"nav\",\"noembed\",\"noframes\",\"noscript\",\"object\",\"ol\",\"p\",\"param\",\"plaintext\",\"pre\",\"script\",\"section\",\"select\",\"source\",\"style\",\"summary\",\"table\",\"tbody\",\"td\",\"template\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"title\",\"tr\",\"track\",\"ul\",\"wbr\",\"xmp\"],wC=[\"applet\",\"caption\",\"html\",\"table\",\"td\",\"th\",\"marquee\",\"object\",\"template\",\"foreignObject\",\"desc\",\"title\"],T4=wC.concat([\"button\"]),C4=[\"dd\",\"dt\",\"li\",\"option\",\"optgroup\",\"p\",\"rp\",\"rt\"],EC={current:null,formTag:null,aTagInScope:null,buttonTagInScope:null,nobrTagInScope:null,pTagInButtonScope:null,listItemTagAutoclosing:null,dlItemTagAutoclosing:null};_m=function(e,t){var r=Rt({},e||EC),l={tag:t};return wC.indexOf(t)!==-1&&(r.aTagInScope=null,r.buttonTagInScope=null,r.nobrTagInScope=null),T4.indexOf(t)!==-1&&(r.pTagInButtonScope=null),F4.indexOf(t)!==-1&&t!==\"address\"&&t!==\"div\"&&t!==\"p\"&&(r.listItemTagAutoclosing=null,r.dlItemTagAutoclosing=null),r.current=l,t===\"form\"&&(r.formTag=l),t===\"a\"&&(r.aTagInScope=l),t===\"button\"&&(r.buttonTagInScope=l),t===\"nobr\"&&(r.nobrTagInScope=l),t===\"p\"&&(r.pTagInButtonScope=l),t===\"li\"&&(r.listItemTagAutoclosing=l),(t===\"dd\"||t===\"dt\")&&(r.dlItemTagAutoclosing=l),r};var b4=function(e,t){switch(t){case\"select\":return e===\"option\"||e===\"optgroup\"||e===\"#text\";case\"optgroup\":return e===\"option\"||e===\"#text\";case\"option\":return e===\"#text\";case\"tr\":return e===\"th\"||e===\"td\"||e===\"style\"||e===\"script\"||e===\"template\";case\"tbody\":case\"thead\":case\"tfoot\":return e===\"tr\"||e===\"style\"||e===\"script\"||e===\"template\";case\"colgroup\":return e===\"col\"||e===\"template\";case\"table\":return e===\"caption\"||e===\"colgroup\"||e===\"tbody\"||e===\"tfoot\"||e===\"thead\"||e===\"style\"||e===\"script\"||e===\"template\";case\"head\":return e===\"base\"||e===\"basefont\"||e===\"bgsound\"||e===\"link\"||e===\"meta\"||e===\"title\"||e===\"noscript\"||e===\"noframes\"||e===\"style\"||e===\"script\"||e===\"template\";case\"html\":return e===\"head\"||e===\"body\"||e===\"frameset\";case\"frameset\":return e===\"frame\";case\"#document\":return e===\"html\"}switch(e){case\"h1\":case\"h2\":case\"h3\":case\"h4\":case\"h5\":case\"h6\":return t!==\"h1\"&&t!==\"h2\"&&t!==\"h3\"&&t!==\"h4\"&&t!==\"h5\"&&t!==\"h6\";case\"rp\":case\"rt\":return C4.indexOf(t)===-1;case\"body\":case\"caption\":case\"col\":case\"colgroup\":case\"frameset\":case\"frame\":case\"head\":case\"html\":case\"tbody\":case\"td\":case\"tfoot\":case\"th\":case\"thead\":case\"tr\":return t==null}return!0},R4=function(e,t){switch(e){case\"address\":case\"article\":case\"aside\":case\"blockquote\":case\"center\":case\"details\":case\"dialog\":case\"dir\":case\"div\":case\"dl\":case\"fieldset\":case\"figcaption\":case\"figure\":case\"footer\":case\"header\":case\"hgroup\":case\"main\":case\"menu\":case\"nav\":case\"ol\":case\"p\":case\"section\":case\"summary\":case\"ul\":case\"pre\":case\"listing\":case\"table\":case\"hr\":case\"xmp\":case\"h1\":case\"h2\":case\"h3\":case\"h4\":case\"h5\":case\"h6\":return t.pTagInButtonScope;case\"form\":return t.formTag||t.pTagInButtonScope;case\"li\":return t.listItemTagAutoclosing;case\"dd\":case\"dt\":return t.dlItemTagAutoclosing;case\"button\":return t.buttonTagInScope;case\"a\":return t.aTagInScope;case\"nobr\":return t.nobrTagInScope}return null},MC={};Xm=function(e,t,r){r=r||EC;var l=r.current,c=l&&l.tag;t!=null&&(e!=null&&m(\"validateDOMNesting: when childText is passed, childTag should be null\"),e=\"#text\");var f=b4(e,c)?null:l,v=f?null:R4(e,r),x=f||v;if(x){var T=x.tag,w=!!f+\"|\"+e+\"|\"+T;if(!MC[w]){MC[w]=!0;var M=e,H=\"\";if(e===\"#text\"?/\\S/.test(t)?M=\"Text nodes\":(M=\"Whitespace text nodes\",H=\" Make sure you don't have any extra whitespace between tags on each line of your source code.\"):M=\"<\"+e+\">\",f){var J=\"\";T===\"table\"&&e===\"tr\"&&(J+=\" Add a <tbody>, <thead> or <tfoot> to your code to match the DOM tree generated by the browser.\"),m(\"validateDOMNesting(...): %s cannot appear as a child of <%s>.%s%s\",M,T,H,J)}else m(\"validateDOMNesting(...): %s cannot appear as a descendant of <%s>.\",M,T)}}}}var zA=\"suppressHydrationWarning\",HA=\"$\",PA=\"/$\",$m=\"$?\",e0=\"$!\",k4=\"style\",DS=null,jS=null;function N4(e){var t,r,l=e.nodeType;switch(l){case vo:case Pf:{t=l===vo?\"#document\":\"#fragment\";var c=e.documentElement;r=c?c.namespaceURI:Hf(null,\"\");break}default:{var f=l===Xn?e.parentNode:e,v=f.namespaceURI||null;t=f.tagName,r=Hf(v,t);break}}{var x=t.toLowerCase(),T=_m(null,x);return{namespace:r,ancestorInfo:T}}}function w4(e,t,r){{var l=e,c=Hf(l.namespace,t),f=_m(l.ancestorInfo,t);return{namespace:c,ancestorInfo:f}}}function jV(e){return e}function E4(e){DS=aa(),jS=JQ();var t=null;return pa(!1),t}function M4(e){zQ(jS),pa(DS),DS=null,jS=null}function B4(e,t,r,l,c){var f;{var v=l;if(Xm(e,null,v.ancestorInfo),typeof t.children==\"string\"||typeof t.children==\"number\"){var x=\"\"+t.children,T=_m(v.ancestorInfo,e);Xm(null,x,T)}f=v.namespace}var w=h4(e,t,r,f);return a0(c,w),WS(w,t),w}function Q4(e,t){e.appendChild(t)}function D4(e,t,r,l,c){switch(g4(e,t,r,l),t){case\"button\":case\"input\":case\"select\":case\"textarea\":return!!r.autoFocus;case\"img\":return!0;default:return!1}}function j4(e,t,r,l,c,f){{var v=f;if(typeof l.children!=typeof r.children&&(typeof l.children==\"string\"||typeof l.children==\"number\")){var x=\"\"+l.children,T=_m(v.ancestorInfo,t);Xm(null,x,T)}}return v4(e,t,r,l)}function LS(e,t){return e===\"textarea\"||e===\"noscript\"||typeof t.children==\"string\"||typeof t.children==\"number\"||typeof t.dangerouslySetInnerHTML==\"object\"&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}function L4(e,t,r,l){{var c=r;Xm(null,e,c.ancestorInfo)}var f=A4(e,t);return a0(l,f),f}function O4(){var e=window.event;return e===void 0?oi:bp(e.type)}var OS=typeof setTimeout==\"function\"?setTimeout:void 0,V4=typeof clearTimeout==\"function\"?clearTimeout:void 0,VS=-1,BC=typeof Promise==\"function\"?Promise:void 0,I4=typeof queueMicrotask==\"function\"?queueMicrotask:typeof BC!=\"undefined\"?function(e){return BC.resolve(null).then(e).catch(q4)}:OS;function q4(e){setTimeout(function(){throw e})}function Y4(e,t,r,l){switch(t){case\"button\":case\"input\":case\"select\":case\"textarea\":r.autoFocus&&e.focus();return;case\"img\":{r.src&&(e.src=r.src);return}}}function G4(e,t,r,l,c,f){U4(e,t,r,l,c),WS(e,c)}function QC(e){eu(e,\"\")}function W4(e,t,r){e.nodeValue=r}function J4(e,t){e.appendChild(t)}function z4(e,t){var r;e.nodeType===Xn?(r=e.parentNode,r.insertBefore(t,e)):(r=e,r.appendChild(t));var l=e._reactRootContainer;l==null&&r.onclick===null&&JA(r)}function H4(e,t,r){e.insertBefore(t,r)}function P4(e,t,r){e.nodeType===Xn?e.parentNode.insertBefore(t,r):e.insertBefore(t,r)}function Z4(e,t){e.removeChild(t)}function X4(e,t){e.nodeType===Xn?e.parentNode.removeChild(t):e.removeChild(t)}function IS(e,t){var r=t,l=0;do{var c=r.nextSibling;if(e.removeChild(r),c&&c.nodeType===Xn){var f=c.data;if(f===PA)if(l===0){e.removeChild(c),ms(t);return}else l--;else(f===HA||f===$m||f===e0)&&l++}r=c}while(r);ms(t)}function _4(e,t){e.nodeType===Xn?IS(e.parentNode,t):e.nodeType===mr&&IS(e,t),ms(e)}function $4(e){e=e;var t=e.style;typeof t.setProperty==\"function\"?t.setProperty(\"display\",\"none\",\"important\"):t.display=\"none\"}function eD(e){e.nodeValue=\"\"}function tD(e,t){e=e;var r=t[k4],l=r!=null&&r.hasOwnProperty(\"display\")?r.display:null;e.style.display=Md(\"display\",l)}function nD(e,t){e.nodeValue=t}function aD(e){e.nodeType===mr?e.textContent=\"\":e.nodeType===vo&&e.documentElement&&e.removeChild(e.documentElement)}function rD(e,t,r){return e.nodeType!==mr||t.toLowerCase()!==e.nodeName.toLowerCase()?null:e}function iD(e,t){return t===\"\"||e.nodeType!==go?null:e}function oD(e){return e.nodeType!==Xn?null:e}function DC(e){return e.data===$m}function qS(e){return e.data===e0}function lD(e){var t=e.nextSibling&&e.nextSibling.dataset,r,l,c;return t&&(r=t.dgst,l=t.msg,c=t.stck),{message:l,digest:r,stack:c}}function sD(e,t){e._reactRetry=t}function ZA(e){for(;e!=null;e=e.nextSibling){var t=e.nodeType;if(t===mr||t===go)break;if(t===Xn){var r=e.data;if(r===HA||r===e0||r===$m)break;if(r===PA)return null}}return e}function t0(e){return ZA(e.nextSibling)}function uD(e){return ZA(e.firstChild)}function cD(e){return ZA(e.firstChild)}function dD(e){return ZA(e.nextSibling)}function pD(e,t,r,l,c,f,v){a0(f,e),WS(e,r);var x;{var T=c;x=T.namespace}var w=(f.mode&Et)!==tt;return y4(e,t,r,x,l,w,v)}function fD(e,t,r,l){return a0(r,e),r.mode&Et,K4(e,t)}function mD(e,t){a0(t,e)}function hD(e){for(var t=e.nextSibling,r=0;t;){if(t.nodeType===Xn){var l=t.data;if(l===PA){if(r===0)return t0(t);r--}else(l===HA||l===e0||l===$m)&&r++}t=t.nextSibling}return null}function jC(e){for(var t=e.previousSibling,r=0;t;){if(t.nodeType===Xn){var l=t.data;if(l===HA||l===e0||l===$m){if(r===0)return t;r--}else l===PA&&r++}t=t.previousSibling}return null}function AD(e){ms(e)}function gD(e){ms(e)}function vD(e){return e!==\"head\"&&e!==\"body\"}function UD(e,t,r,l){var c=!0;WA(t.nodeValue,r,l,c)}function SD(e,t,r,l,c,f){if(t[zA]!==!0){var v=!0;WA(l.nodeValue,c,f,v)}}function yD(e,t){t.nodeType===mr?ES(e,t):t.nodeType===Xn||MS(e,t)}function KD(e,t){{var r=e.parentNode;r!==null&&(t.nodeType===mr?ES(r,t):t.nodeType===Xn||MS(r,t))}}function xD(e,t,r,l,c){(c||t[zA]!==!0)&&(l.nodeType===mr?ES(r,l):l.nodeType===Xn||MS(r,l))}function FD(e,t,r){BS(e,t)}function TD(e,t){QS(e,t)}function CD(e,t,r){{var l=e.parentNode;l!==null&&BS(l,t)}}function bD(e,t){{var r=e.parentNode;r!==null&&QS(r,t)}}function RD(e,t,r,l,c,f){(f||t[zA]!==!0)&&BS(r,l)}function kD(e,t,r,l,c){(c||t[zA]!==!0)&&QS(r,l)}function ND(e){m(\"An error occurred during hydration. The server HTML was replaced with client content in <%s>.\",e.nodeName.toLowerCase())}function wD(e){zm(e)}var Ip=Math.random().toString(36).slice(2),qp=\"__reactFiber$\"+Ip,YS=\"__reactProps$\"+Ip,n0=\"__reactContainer$\"+Ip,GS=\"__reactEvents$\"+Ip,ED=\"__reactListeners$\"+Ip,MD=\"__reactHandles$\"+Ip;function BD(e){delete e[qp],delete e[YS],delete e[GS],delete e[ED],delete e[MD]}function a0(e,t){t[qp]=e}function XA(e,t){t[n0]=e}function LC(e){e[n0]=null}function r0(e){return!!e[n0]}function zc(e){var t=e[qp];if(t)return t;for(var r=e.parentNode;r;){if(t=r[n0]||r[qp],t){var l=t.alternate;if(t.child!==null||l!==null&&l.child!==null)for(var c=jC(e);c!==null;){var f=c[qp];if(f)return f;c=jC(c)}return t}e=r,r=e.parentNode}return null}function Fu(e){var t=e[qp]||e[n0];return t&&(t.tag===E||t.tag===O||t.tag===te||t.tag===b)?t:null}function Yp(e){if(e.tag===E||e.tag===O)return e.stateNode;throw new Error(\"getNodeFromInstance: Invalid argument.\")}function _A(e){return e[YS]||null}function WS(e,t){e[YS]=t}function QD(e){var t=e[GS];return t===void 0&&(t=e[GS]=new Set),t}var OC={},VC=u.ReactDebugCurrentFrame;function $A(e){if(e){var t=e._owner,r=fo(e.type,e._source,t?t.type:null);VC.setExtraStackFrame(r)}else VC.setExtraStackFrame(null)}function ko(e,t,r,l,c){{var f=Function.call.bind(ma);for(var v in e)if(f(e,v)){var x=void 0;try{if(typeof e[v]!=\"function\"){var T=Error((l||\"React class\")+\": \"+r+\" type `\"+v+\"` is invalid; it must be a function, usually from the `prop-types` package, but received `\"+typeof e[v]+\"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.\");throw T.name=\"Invariant Violation\",T}x=e[v](t,v,l,r,null,\"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\")}catch(w){x=w}x&&!(x instanceof Error)&&($A(c),m(\"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).\",l||\"React class\",r,v,typeof x),$A(null)),x instanceof Error&&!(x.message in OC)&&(OC[x.message]=!0,$A(c),m(\"Failed %s type: %s\",r,x.message),$A(null))}}}var JS=[],eg;eg=[];var Ss=-1;function Tu(e){return{current:e}}function Tr(e,t){if(Ss<0){m(\"Unexpected pop.\");return}t!==eg[Ss]&&m(\"Unexpected Fiber popped.\"),e.current=JS[Ss],JS[Ss]=null,eg[Ss]=null,Ss--}function Cr(e,t,r){Ss++,JS[Ss]=e.current,eg[Ss]=r,e.current=t}var zS;zS={};var wi={};Object.freeze(wi);var ys=Tu(wi),Ul=Tu(!1),HS=wi;function Gp(e,t,r){return r&&Sl(t)?HS:ys.current}function IC(e,t,r){{var l=e.stateNode;l.__reactInternalMemoizedUnmaskedChildContext=t,l.__reactInternalMemoizedMaskedChildContext=r}}function Wp(e,t){{var r=e.type,l=r.contextTypes;if(!l)return wi;var c=e.stateNode;if(c&&c.__reactInternalMemoizedUnmaskedChildContext===t)return c.__reactInternalMemoizedMaskedChildContext;var f={};for(var v in l)f[v]=t[v];{var x=vt(e)||\"Unknown\";ko(l,f,\"context\",x)}return c&&IC(e,t,f),f}}function tg(){return Ul.current}function Sl(e){{var t=e.childContextTypes;return t!=null}}function ng(e){Tr(Ul,e),Tr(ys,e)}function PS(e){Tr(Ul,e),Tr(ys,e)}function qC(e,t,r){{if(ys.current!==wi)throw new Error(\"Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue.\");Cr(ys,t,e),Cr(Ul,r,e)}}function YC(e,t,r){{var l=e.stateNode,c=t.childContextTypes;if(typeof l.getChildContext!=\"function\"){{var f=vt(e)||\"Unknown\";zS[f]||(zS[f]=!0,m(\"%s.childContextTypes is specified but there is no getChildContext() method on the instance. You can either define getChildContext() on %s or remove childContextTypes from it.\",f,f))}return r}var v=l.getChildContext();for(var x in v)if(!(x in c))throw new Error((vt(e)||\"Unknown\")+'.getChildContext(): key \"'+x+'\" is not defined in childContextTypes.');{var T=vt(e)||\"Unknown\";ko(c,v,\"child context\",T)}return Rt({},r,v)}}function ag(e){{var t=e.stateNode,r=t&&t.__reactInternalMemoizedMergedChildContext||wi;return HS=ys.current,Cr(ys,r,e),Cr(Ul,Ul.current,e),!0}}function GC(e,t,r){{var l=e.stateNode;if(!l)throw new Error(\"Expected to have an instance by this point. This error is likely caused by a bug in React. Please file an issue.\");if(r){var c=YC(e,t,HS);l.__reactInternalMemoizedMergedChildContext=c,Tr(Ul,e),Tr(ys,e),Cr(ys,c,e),Cr(Ul,r,e)}else Tr(Ul,e),Cr(Ul,r,e)}}function DD(e){{if(!es(e)||e.tag!==F)throw new Error(\"Expected subtree parent to be a mounted class component. This error is likely caused by a bug in React. Please file an issue.\");var t=e;do{switch(t.tag){case b:return t.stateNode.context;case F:{var r=t.type;if(Sl(r))return t.stateNode.__reactInternalMemoizedMergedChildContext;break}}t=t.return}while(t!==null);throw new Error(\"Found unexpected detached subtree parent. This error is likely caused by a bug in React. Please file an issue.\")}}var Cu=0,rg=1,Ks=null,ZS=!1,XS=!1;function WC(e){Ks===null?Ks=[e]:Ks.push(e)}function jD(e){ZS=!0,WC(e)}function JC(){ZS&&bu()}function bu(){if(!XS&&Ks!==null){XS=!0;var e=0,t=si();try{var r=!0,l=Ks;for(na(Za);e<l.length;e++){var c=l[e];do c=c(r);while(c!==null)}Ks=null,ZS=!1}catch(f){throw Ks!==null&&(Ks=Ks.slice(e+1)),lm(pc,bu),f}finally{na(t),XS=!1}}return null}var Jp=[],zp=0,ig=null,og=0,no=[],ao=0,Hc=null,xs=1,Fs=\"\";function LD(e){return Zc(),(e.flags&Ji)!==et}function OD(e){return Zc(),og}function VD(){var e=Fs,t=xs,r=t&~ID(t);return r.toString(32)+e}function Pc(e,t){Zc(),Jp[zp++]=og,Jp[zp++]=ig,ig=e,og=t}function zC(e,t,r){Zc(),no[ao++]=xs,no[ao++]=Fs,no[ao++]=Hc,Hc=e;var l=xs,c=Fs,f=lg(l)-1,v=l&~(1<<f),x=r+1,T=lg(t)+f;if(T>30){var w=f-f%5,M=(1<<w)-1,H=(v&M).toString(32),J=v>>w,ne=f-w,ie=lg(t)+ne,se=x<<ne,Be=se|J,rt=H+c;xs=1<<ie|Be,Fs=rt}else{var Xe=x<<f,Vt=Xe|v,Dt=c;xs=1<<T|Vt,Fs=Dt}}function _S(e){Zc();var t=e.return;if(t!==null){var r=1,l=0;Pc(e,r),zC(e,r,l)}}function lg(e){return 32-ea(e)}function ID(e){return 1<<lg(e)-1}function $S(e){for(;e===ig;)ig=Jp[--zp],Jp[zp]=null,og=Jp[--zp],Jp[zp]=null;for(;e===Hc;)Hc=no[--ao],no[ao]=null,Fs=no[--ao],no[ao]=null,xs=no[--ao],no[ao]=null}function qD(){return Zc(),Hc!==null?{id:xs,overflow:Fs}:null}function YD(e,t){Zc(),no[ao++]=xs,no[ao++]=Fs,no[ao++]=Hc,xs=t.id,Fs=t.overflow,Hc=e}function Zc(){tr()||m(\"Expected to be hydrating. This is a bug in React. Please file an issue.\")}var er=null,ro=null,No=!1,Xc=!1,Ru=null;function GD(){No&&m(\"We should not be hydrating here. This is a bug in React. Please file a bug.\")}function HC(){Xc=!0}function WD(){return Xc}function JD(e){var t=e.stateNode.containerInfo;return ro=cD(t),er=e,No=!0,Ru=null,Xc=!1,!0}function zD(e,t,r){return ro=dD(t),er=e,No=!0,Ru=null,Xc=!1,r!==null&&YD(e,r),!0}function PC(e,t){switch(e.tag){case b:{yD(e.stateNode.containerInfo,t);break}case E:{var r=(e.mode&Et)!==tt;xD(e.type,e.memoizedProps,e.stateNode,t,r);break}case te:{var l=e.memoizedState;l.dehydrated!==null&&KD(l.dehydrated,t);break}}}function ZC(e,t){PC(e,t);var r=XO();r.stateNode=t,r.return=e;var l=e.deletions;l===null?(e.deletions=[r],e.flags|=ti):l.push(r)}function ey(e,t){{if(Xc)return;switch(e.tag){case b:{var r=e.stateNode.containerInfo;switch(t.tag){case E:var l=t.type;t.pendingProps,FD(r,l);break;case O:var c=t.pendingProps;TD(r,c);break}break}case E:{var f=e.type,v=e.memoizedProps,x=e.stateNode;switch(t.tag){case E:{var T=t.type,w=t.pendingProps,M=(e.mode&Et)!==tt;RD(f,v,x,T,w,M);break}case O:{var H=t.pendingProps,J=(e.mode&Et)!==tt;kD(f,v,x,H,J);break}}break}case te:{var ne=e.memoizedState,ie=ne.dehydrated;if(ie!==null)switch(t.tag){case E:var se=t.type;t.pendingProps,CD(ie,se);break;case O:var Be=t.pendingProps;bD(ie,Be);break}break}default:return}}}function XC(e,t){t.flags=t.flags&~Ar|En,ey(e,t)}function _C(e,t){switch(e.tag){case E:{var r=e.type;e.pendingProps;var l=rD(t,r);return l!==null?(e.stateNode=l,er=e,ro=uD(l),!0):!1}case O:{var c=e.pendingProps,f=iD(t,c);return f!==null?(e.stateNode=f,er=e,ro=null,!0):!1}case te:{var v=oD(t);if(v!==null){var x={dehydrated:v,treeContext:qD(),retryLane:Sr};e.memoizedState=x;var T=_O(v);return T.return=e,e.child=T,er=e,ro=null,!0}return!1}default:return!1}}function ty(e){return(e.mode&Et)!==tt&&(e.flags&_e)===et}function ny(e){throw new Error(\"Hydration failed because the initial UI does not match what was rendered on the server.\")}function ay(e){if(No){var t=ro;if(!t){ty(e)&&(ey(er,e),ny()),XC(er,e),No=!1,er=e;return}var r=t;if(!_C(e,t)){ty(e)&&(ey(er,e),ny()),t=t0(r);var l=er;if(!t||!_C(e,t)){XC(er,e),No=!1,er=e;return}ZC(l,r)}}}function HD(e,t,r){var l=e.stateNode,c=!Xc,f=pD(l,e.type,e.memoizedProps,t,r,e,c);return e.updateQueue=f,f!==null}function PD(e){var t=e.stateNode,r=e.memoizedProps,l=fD(t,r,e);if(l){var c=er;if(c!==null)switch(c.tag){case b:{var f=c.stateNode.containerInfo,v=(c.mode&Et)!==tt;UD(f,t,r,v);break}case E:{var x=c.type,T=c.memoizedProps,w=c.stateNode,M=(c.mode&Et)!==tt;SD(x,T,w,t,r,M);break}}}return l}function ZD(e){var t=e.memoizedState,r=t!==null?t.dehydrated:null;if(!r)throw new Error(\"Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.\");mD(r,e)}function XD(e){var t=e.memoizedState,r=t!==null?t.dehydrated:null;if(!r)throw new Error(\"Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.\");return hD(r)}function $C(e){for(var t=e.return;t!==null&&t.tag!==E&&t.tag!==b&&t.tag!==te;)t=t.return;er=t}function sg(e){if(e!==er)return!1;if(!No)return $C(e),No=!0,!1;if(e.tag!==b&&(e.tag!==E||vD(e.type)&&!LS(e.type,e.memoizedProps))){var t=ro;if(t)if(ty(e))eb(e),ny();else for(;t;)ZC(e,t),t=t0(t)}return $C(e),e.tag===te?ro=XD(e):ro=er?t0(e.stateNode):null,!0}function _D(){return No&&ro!==null}function eb(e){for(var t=ro;t;)PC(e,t),t=t0(t)}function Hp(){er=null,ro=null,No=!1,Xc=!1}function tb(){Ru!==null&&(HR(Ru),Ru=null)}function tr(){return No}function ry(e){Ru===null?Ru=[e]:Ru.push(e)}var $D=u.ReactCurrentBatchConfig,ej=null;function tj(){return $D.transition}var wo={recordUnsafeLifecycleWarnings:function(e,t){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(e,t){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}};{var nj=function(e){for(var t=null,r=e;r!==null;)r.mode&ln&&(t=r),r=r.return;return t},_c=function(e){var t=[];return e.forEach(function(r){t.push(r)}),t.sort().join(\", \")},i0=[],o0=[],l0=[],s0=[],u0=[],c0=[],$c=new Set;wo.recordUnsafeLifecycleWarnings=function(e,t){$c.has(e.type)||(typeof t.componentWillMount==\"function\"&&t.componentWillMount.__suppressDeprecationWarning!==!0&&i0.push(e),e.mode&ln&&typeof t.UNSAFE_componentWillMount==\"function\"&&o0.push(e),typeof t.componentWillReceiveProps==\"function\"&&t.componentWillReceiveProps.__suppressDeprecationWarning!==!0&&l0.push(e),e.mode&ln&&typeof t.UNSAFE_componentWillReceiveProps==\"function\"&&s0.push(e),typeof t.componentWillUpdate==\"function\"&&t.componentWillUpdate.__suppressDeprecationWarning!==!0&&u0.push(e),e.mode&ln&&typeof t.UNSAFE_componentWillUpdate==\"function\"&&c0.push(e))},wo.flushPendingUnsafeLifecycleWarnings=function(){var e=new Set;i0.length>0&&(i0.forEach(function(J){e.add(vt(J)||\"Component\"),$c.add(J.type)}),i0=[]);var t=new Set;o0.length>0&&(o0.forEach(function(J){t.add(vt(J)||\"Component\"),$c.add(J.type)}),o0=[]);var r=new Set;l0.length>0&&(l0.forEach(function(J){r.add(vt(J)||\"Component\"),$c.add(J.type)}),l0=[]);var l=new Set;s0.length>0&&(s0.forEach(function(J){l.add(vt(J)||\"Component\"),$c.add(J.type)}),s0=[]);var c=new Set;u0.length>0&&(u0.forEach(function(J){c.add(vt(J)||\"Component\"),$c.add(J.type)}),u0=[]);var f=new Set;if(c0.length>0&&(c0.forEach(function(J){f.add(vt(J)||\"Component\"),$c.add(J.type)}),c0=[]),t.size>0){var v=_c(t);m(`Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n\nPlease update the following components: %s`,v)}if(l.size>0){var x=_c(l);m(`Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state\n\nPlease update the following components: %s`,x)}if(f.size>0){var T=_c(f);m(`Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n\nPlease update the following components: %s`,T)}if(e.size>0){var w=_c(e);U(`componentWillMount has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move code with side effects to componentDidMount, and set initial state in the constructor.\n* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \\`npx react-codemod rename-unsafe-lifecycles\\` in your project source folder.\n\nPlease update the following components: %s`,w)}if(r.size>0){var M=_c(r);U(`componentWillReceiveProps has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://reactjs.org/link/derived-state\n* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \\`npx react-codemod rename-unsafe-lifecycles\\` in your project source folder.\n\nPlease update the following components: %s`,M)}if(c.size>0){var H=_c(c);U(`componentWillUpdate has been renamed, and is not recommended for use. See https://reactjs.org/link/unsafe-component-lifecycles for details.\n\n* Move data fetching code or side effects to componentDidUpdate.\n* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \\`npx react-codemod rename-unsafe-lifecycles\\` in your project source folder.\n\nPlease update the following components: %s`,H)}};var ug=new Map,nb=new Set;wo.recordLegacyContextWarning=function(e,t){var r=nj(e);if(r===null){m(\"Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue.\");return}if(!nb.has(e.type)){var l=ug.get(r);(e.type.contextTypes!=null||e.type.childContextTypes!=null||t!==null&&typeof t.getChildContext==\"function\")&&(l===void 0&&(l=[],ug.set(r,l)),l.push(e))}},wo.flushLegacyContextWarning=function(){ug.forEach(function(e,t){if(e.length!==0){var r=e[0],l=new Set;e.forEach(function(f){l.add(vt(f)||\"Component\"),nb.add(f.type)});var c=_c(l);try{an(r),m(`Legacy context API has been detected within a strict-mode tree.\n\nThe old API will be supported in all 16.x releases, but applications using it should migrate to the new version.\n\nPlease update the following components: %s\n\nLearn more about this warning here: https://reactjs.org/link/legacy-context`,c)}finally{Un()}}})},wo.discardPendingWarnings=function(){i0=[],o0=[],l0=[],s0=[],u0=[],c0=[],ug=new Map}}var iy,oy,ly,sy,uy,ab=function(e,t){};iy=!1,oy=!1,ly={},sy={},uy={},ab=function(e,t){if(!(e===null||typeof e!=\"object\")&&!(!e._store||e._store.validated||e.key!=null)){if(typeof e._store!=\"object\")throw new Error(\"React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.\");e._store.validated=!0;var r=vt(t)||\"Component\";sy[r]||(sy[r]=!0,m('Each child in a list should have a unique \"key\" prop. See https://reactjs.org/link/warning-keys for more information.'))}};function aj(e){return e.prototype&&e.prototype.isReactComponent}function d0(e,t,r){var l=r.ref;if(l!==null&&typeof l!=\"function\"&&typeof l!=\"object\"){if((e.mode&ln||le)&&!(r._owner&&r._self&&r._owner.stateNode!==r._self)&&!(r._owner&&r._owner.tag!==F)&&!(typeof r.type==\"function\"&&!aj(r.type))&&r._owner){var c=vt(e)||\"Component\";ly[c]||(m('Component \"%s\" contains the string ref \"%s\". Support for string refs will be removed in a future major release. We recommend using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref',c,l),ly[c]=!0)}if(r._owner){var f=r._owner,v;if(f){var x=f;if(x.tag!==F)throw new Error(\"Function components cannot have string refs. We recommend using useRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref\");v=x.stateNode}if(!v)throw new Error(\"Missing owner for string ref \"+l+\". This error is likely caused by a bug in React. Please file an issue.\");var T=v;Nr(l,\"ref\");var w=\"\"+l;if(t!==null&&t.ref!==null&&typeof t.ref==\"function\"&&t.ref._stringRef===w)return t.ref;var M=function(H){var J=T.refs;H===null?delete J[w]:J[w]=H};return M._stringRef=w,M}else{if(typeof l!=\"string\")throw new Error(\"Expected ref to be a function, a string, an object returned by React.createRef(), or null.\");if(!r._owner)throw new Error(\"Element ref was specified as a string (\"+l+`) but no owner was set. This could happen for one of the following reasons:\n1. You may be adding a ref to a function component\n2. You may be adding a ref to a component that was not created inside a component's render method\n3. You have multiple copies of React loaded\nSee https://reactjs.org/link/refs-must-have-owner for more information.`)}}return l}function cg(e,t){var r=Object.prototype.toString.call(t);throw new Error(\"Objects are not valid as a React child (found: \"+(r===\"[object Object]\"?\"object with keys {\"+Object.keys(t).join(\", \")+\"}\":r)+\"). If you meant to render a collection of children, use an array instead.\")}function dg(e){{var t=vt(e)||\"Component\";if(uy[t])return;uy[t]=!0,m(\"Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render. Or maybe you meant to call this function rather than return it.\")}}function rb(e){var t=e._payload,r=e._init;return r(t)}function ib(e){function t(X,ue){if(e){var _=X.deletions;_===null?(X.deletions=[ue],X.flags|=ti):_.push(ue)}}function r(X,ue){if(!e)return null;for(var _=ue;_!==null;)t(X,_),_=_.sibling;return null}function l(X,ue){for(var _=new Map,Fe=ue;Fe!==null;)Fe.key!==null?_.set(Fe.key,Fe):_.set(Fe.index,Fe),Fe=Fe.sibling;return _}function c(X,ue){var _=sd(X,ue);return _.index=0,_.sibling=null,_}function f(X,ue,_){if(X.index=_,!e)return X.flags|=Ji,ue;var Fe=X.alternate;if(Fe!==null){var Le=Fe.index;return Le<ue?(X.flags|=En,ue):Le}else return X.flags|=En,ue}function v(X){return e&&X.alternate===null&&(X.flags|=En),X}function x(X,ue,_,Fe){if(ue===null||ue.tag!==O){var Le=rx(_,X.mode,Fe);return Le.return=X,Le}else{var Qe=c(ue,_);return Qe.return=X,Qe}}function T(X,ue,_,Fe){var Le=_.type;if(Le===Di)return M(X,ue,_.props.children,Fe,_.key);if(ue!==null&&(ue.elementType===Le||ck(ue,_)||typeof Le==\"object\"&&Le!==null&&Le.$$typeof===Ut&&rb(Le)===ue.type)){var Qe=c(ue,_.props);return Qe.ref=d0(X,ue,_),Qe.return=X,Qe._debugSource=_._source,Qe._debugOwner=_._owner,Qe}var ft=ax(_,X.mode,Fe);return ft.ref=d0(X,ue,_),ft.return=X,ft}function w(X,ue,_,Fe){if(ue===null||ue.tag!==N||ue.stateNode.containerInfo!==_.containerInfo||ue.stateNode.implementation!==_.implementation){var Le=ix(_,X.mode,Fe);return Le.return=X,Le}else{var Qe=c(ue,_.children||[]);return Qe.return=X,Qe}}function M(X,ue,_,Fe,Le){if(ue===null||ue.tag!==B){var Qe=Ou(_,X.mode,Fe,Le);return Qe.return=X,Qe}else{var ft=c(ue,_);return ft.return=X,ft}}function H(X,ue,_){if(typeof ue==\"string\"&&ue!==\"\"||typeof ue==\"number\"){var Fe=rx(\"\"+ue,X.mode,_);return Fe.return=X,Fe}if(typeof ue==\"object\"&&ue!==null){switch(ue.$$typeof){case Ja:{var Le=ax(ue,X.mode,_);return Le.ref=d0(X,null,ue),Le.return=X,Le}case Ka:{var Qe=ix(ue,X.mode,_);return Qe.return=X,Qe}case Ut:{var ft=ue._payload,yt=ue._init;return H(X,yt(ft),_)}}if(Nt(ue)||Ft(ue)){var un=Ou(ue,X.mode,_,null);return un.return=X,un}cg(X,ue)}return typeof ue==\"function\"&&dg(X),null}function J(X,ue,_,Fe){var Le=ue!==null?ue.key:null;if(typeof _==\"string\"&&_!==\"\"||typeof _==\"number\")return Le!==null?null:x(X,ue,\"\"+_,Fe);if(typeof _==\"object\"&&_!==null){switch(_.$$typeof){case Ja:return _.key===Le?T(X,ue,_,Fe):null;case Ka:return _.key===Le?w(X,ue,_,Fe):null;case Ut:{var Qe=_._payload,ft=_._init;return J(X,ue,ft(Qe),Fe)}}if(Nt(_)||Ft(_))return Le!==null?null:M(X,ue,_,Fe,null);cg(X,_)}return typeof _==\"function\"&&dg(X),null}function ne(X,ue,_,Fe,Le){if(typeof Fe==\"string\"&&Fe!==\"\"||typeof Fe==\"number\"){var Qe=X.get(_)||null;return x(ue,Qe,\"\"+Fe,Le)}if(typeof Fe==\"object\"&&Fe!==null){switch(Fe.$$typeof){case Ja:{var ft=X.get(Fe.key===null?_:Fe.key)||null;return T(ue,ft,Fe,Le)}case Ka:{var yt=X.get(Fe.key===null?_:Fe.key)||null;return w(ue,yt,Fe,Le)}case Ut:var un=Fe._payload,Zt=Fe._init;return ne(X,ue,_,Zt(un),Le)}if(Nt(Fe)||Ft(Fe)){var fa=X.get(_)||null;return M(ue,fa,Fe,Le,null)}cg(ue,Fe)}return typeof Fe==\"function\"&&dg(ue),null}function ie(X,ue,_){{if(typeof X!=\"object\"||X===null)return ue;switch(X.$$typeof){case Ja:case Ka:ab(X,_);var Fe=X.key;if(typeof Fe!=\"string\")break;if(ue===null){ue=new Set,ue.add(Fe);break}if(!ue.has(Fe)){ue.add(Fe);break}m(\"Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted \u2014 the behavior is unsupported and could change in a future version.\",Fe);break;case Ut:var Le=X._payload,Qe=X._init;ie(Qe(Le),ue,_);break}}return ue}function se(X,ue,_,Fe){for(var Le=null,Qe=0;Qe<_.length;Qe++){var ft=_[Qe];Le=ie(ft,Le,X)}for(var yt=null,un=null,Zt=ue,fa=0,Xt=0,ia=null;Zt!==null&&Xt<_.length;Xt++){Zt.index>Xt?(ia=Zt,Zt=null):ia=Zt.sibling;var Rr=J(X,Zt,_[Xt],Fe);if(Rr===null){Zt===null&&(Zt=ia);break}e&&Zt&&Rr.alternate===null&&t(X,Zt),fa=f(Rr,fa,Xt),un===null?yt=Rr:un.sibling=Rr,un=Rr,Zt=ia}if(Xt===_.length){if(r(X,Zt),tr()){var sr=Xt;Pc(X,sr)}return yt}if(Zt===null){for(;Xt<_.length;Xt++){var Mi=H(X,_[Xt],Fe);Mi!==null&&(fa=f(Mi,fa,Xt),un===null?yt=Mi:un.sibling=Mi,un=Mi)}if(tr()){var Yr=Xt;Pc(X,Yr)}return yt}for(var Gr=l(X,Zt);Xt<_.length;Xt++){var kr=ne(Gr,X,Xt,_[Xt],Fe);kr!==null&&(e&&kr.alternate!==null&&Gr.delete(kr.key===null?Xt:kr.key),fa=f(kr,fa,Xt),un===null?yt=kr:un.sibling=kr,un=kr)}if(e&&Gr.forEach(function(mf){return t(X,mf)}),tr()){var ws=Xt;Pc(X,ws)}return yt}function Be(X,ue,_,Fe){var Le=Ft(_);if(typeof Le!=\"function\")throw new Error(\"An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.\");{typeof Symbol==\"function\"&&_[Symbol.toStringTag]===\"Generator\"&&(oy||m(\"Using Generators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. Keep in mind you might need to polyfill these features for older browsers.\"),oy=!0),_.entries===Le&&(iy||m(\"Using Maps as children is not supported. Use an array of keyed ReactElements instead.\"),iy=!0);var Qe=Le.call(_);if(Qe)for(var ft=null,yt=Qe.next();!yt.done;yt=Qe.next()){var un=yt.value;ft=ie(un,ft,X)}}var Zt=Le.call(_);if(Zt==null)throw new Error(\"An iterable object provided no iterator.\");for(var fa=null,Xt=null,ia=ue,Rr=0,sr=0,Mi=null,Yr=Zt.next();ia!==null&&!Yr.done;sr++,Yr=Zt.next()){ia.index>sr?(Mi=ia,ia=null):Mi=ia.sibling;var Gr=J(X,ia,Yr.value,Fe);if(Gr===null){ia===null&&(ia=Mi);break}e&&ia&&Gr.alternate===null&&t(X,ia),Rr=f(Gr,Rr,sr),Xt===null?fa=Gr:Xt.sibling=Gr,Xt=Gr,ia=Mi}if(Yr.done){if(r(X,ia),tr()){var kr=sr;Pc(X,kr)}return fa}if(ia===null){for(;!Yr.done;sr++,Yr=Zt.next()){var ws=H(X,Yr.value,Fe);ws!==null&&(Rr=f(ws,Rr,sr),Xt===null?fa=ws:Xt.sibling=ws,Xt=ws)}if(tr()){var mf=sr;Pc(X,mf)}return fa}for(var Y0=l(X,ia);!Yr.done;sr++,Yr=Zt.next()){var Rl=ne(Y0,X,sr,Yr.value,Fe);Rl!==null&&(e&&Rl.alternate!==null&&Y0.delete(Rl.key===null?sr:Rl.key),Rr=f(Rl,Rr,sr),Xt===null?fa=Rl:Xt.sibling=Rl,Xt=Rl)}if(e&&Y0.forEach(function(kV){return t(X,kV)}),tr()){var RV=sr;Pc(X,RV)}return fa}function rt(X,ue,_,Fe){if(ue!==null&&ue.tag===O){r(X,ue.sibling);var Le=c(ue,_);return Le.return=X,Le}r(X,ue);var Qe=rx(_,X.mode,Fe);return Qe.return=X,Qe}function Xe(X,ue,_,Fe){for(var Le=_.key,Qe=ue;Qe!==null;){if(Qe.key===Le){var ft=_.type;if(ft===Di){if(Qe.tag===B){r(X,Qe.sibling);var yt=c(Qe,_.props.children);return yt.return=X,yt._debugSource=_._source,yt._debugOwner=_._owner,yt}}else if(Qe.elementType===ft||ck(Qe,_)||typeof ft==\"object\"&&ft!==null&&ft.$$typeof===Ut&&rb(ft)===Qe.type){r(X,Qe.sibling);var un=c(Qe,_.props);return un.ref=d0(X,Qe,_),un.return=X,un._debugSource=_._source,un._debugOwner=_._owner,un}r(X,Qe);break}else t(X,Qe);Qe=Qe.sibling}if(_.type===Di){var Zt=Ou(_.props.children,X.mode,Fe,_.key);return Zt.return=X,Zt}else{var fa=ax(_,X.mode,Fe);return fa.ref=d0(X,ue,_),fa.return=X,fa}}function Vt(X,ue,_,Fe){for(var Le=_.key,Qe=ue;Qe!==null;){if(Qe.key===Le)if(Qe.tag===N&&Qe.stateNode.containerInfo===_.containerInfo&&Qe.stateNode.implementation===_.implementation){r(X,Qe.sibling);var ft=c(Qe,_.children||[]);return ft.return=X,ft}else{r(X,Qe);break}else t(X,Qe);Qe=Qe.sibling}var yt=ix(_,X.mode,Fe);return yt.return=X,yt}function Dt(X,ue,_,Fe){var Le=typeof _==\"object\"&&_!==null&&_.type===Di&&_.key===null;if(Le&&(_=_.props.children),typeof _==\"object\"&&_!==null){switch(_.$$typeof){case Ja:return v(Xe(X,ue,_,Fe));case Ka:return v(Vt(X,ue,_,Fe));case Ut:var Qe=_._payload,ft=_._init;return Dt(X,ue,ft(Qe),Fe)}if(Nt(_))return se(X,ue,_,Fe);if(Ft(_))return Be(X,ue,_,Fe);cg(X,_)}return typeof _==\"string\"&&_!==\"\"||typeof _==\"number\"?v(rt(X,ue,\"\"+_,Fe)):(typeof _==\"function\"&&dg(X),r(X,ue))}return Dt}var Pp=ib(!0),ob=ib(!1);function rj(e,t){if(e!==null&&t.child!==e.child)throw new Error(\"Resuming work not yet implemented.\");if(t.child!==null){var r=t.child,l=sd(r,r.pendingProps);for(t.child=l,l.return=t;r.sibling!==null;)r=r.sibling,l=l.sibling=sd(r,r.pendingProps),l.return=t;l.sibling=null}}function ij(e,t){for(var r=e.child;r!==null;)JO(r,t),r=r.sibling}var cy=Tu(null),dy;dy={};var pg=null,Zp=null,py=null,fg=!1;function mg(){pg=null,Zp=null,py=null,fg=!1}function lb(){fg=!0}function sb(){fg=!1}function ub(e,t,r){Cr(cy,t._currentValue,e),t._currentValue=r,t._currentRenderer!==void 0&&t._currentRenderer!==null&&t._currentRenderer!==dy&&m(\"Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported.\"),t._currentRenderer=dy}function fy(e,t){var r=cy.current;Tr(cy,t),e._currentValue=r}function my(e,t,r){for(var l=e;l!==null;){var c=l.alternate;if(fs(l.childLanes,t)?c!==null&&!fs(c.childLanes,t)&&(c.childLanes=bt(c.childLanes,t)):(l.childLanes=bt(l.childLanes,t),c!==null&&(c.childLanes=bt(c.childLanes,t))),l===r)break;l=l.return}l!==r&&m(\"Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue.\")}function oj(e,t,r){lj(e,t,r)}function lj(e,t,r){var l=e.child;for(l!==null&&(l.return=e);l!==null;){var c=void 0,f=l.dependencies;if(f!==null){c=l.child;for(var v=f.firstContext;v!==null;){if(v.context===t){if(l.tag===F){var x=Cc(r),T=Ts(cn,x);T.tag=Ag;var w=l.updateQueue;if(w!==null){var M=w.shared,H=M.pending;H===null?T.next=T:(T.next=H.next,H.next=T),M.pending=T}}l.lanes=bt(l.lanes,r);var J=l.alternate;J!==null&&(J.lanes=bt(J.lanes,r)),my(l.return,r,e),f.lanes=bt(f.lanes,r);break}v=v.next}}else if(l.tag===W)c=l.type===e.type?null:l.child;else if(l.tag===ut){var ne=l.return;if(ne===null)throw new Error(\"We just came from a parent so we must have had a parent. This is a bug in React.\");ne.lanes=bt(ne.lanes,r);var ie=ne.alternate;ie!==null&&(ie.lanes=bt(ie.lanes,r)),my(ne,r,e),c=l.sibling}else c=l.child;if(c!==null)c.return=l;else for(c=l;c!==null;){if(c===e){c=null;break}var se=c.sibling;if(se!==null){se.return=c.return,c=se;break}c=c.return}l=c}}function Xp(e,t){pg=e,Zp=null,py=null;var r=e.dependencies;if(r!==null){var l=r.firstContext;l!==null&&(yr(r.lanes,t)&&C0(),r.firstContext=null)}}function Sa(e){fg&&m(\"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().\");var t=e._currentValue;if(py!==e){var r={context:e,memoizedValue:t,next:null};if(Zp===null){if(pg===null)throw new Error(\"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().\");Zp=r,pg.dependencies={lanes:Ae,firstContext:r}}else Zp=Zp.next=r}return t}var ed=null;function hy(e){ed===null?ed=[e]:ed.push(e)}function sj(){if(ed!==null){for(var e=0;e<ed.length;e++){var t=ed[e],r=t.interleaved;if(r!==null){t.interleaved=null;var l=r.next,c=t.pending;if(c!==null){var f=c.next;c.next=l,r.next=f}t.pending=r}}ed=null}}function cb(e,t,r,l){var c=t.interleaved;return c===null?(r.next=r,hy(t)):(r.next=c.next,c.next=r),t.interleaved=r,hg(e,l)}function uj(e,t,r,l){var c=t.interleaved;c===null?(r.next=r,hy(t)):(r.next=c.next,c.next=r),t.interleaved=r}function cj(e,t,r,l){var c=t.interleaved;return c===null?(r.next=r,hy(t)):(r.next=c.next,c.next=r),t.interleaved=r,hg(e,l)}function di(e,t){return hg(e,t)}var dj=hg;function hg(e,t){e.lanes=bt(e.lanes,t);var r=e.alternate;r!==null&&(r.lanes=bt(r.lanes,t)),r===null&&(e.flags&(En|Ar))!==et&&ok(e);for(var l=e,c=e.return;c!==null;)c.childLanes=bt(c.childLanes,t),r=c.alternate,r!==null?r.childLanes=bt(r.childLanes,t):(c.flags&(En|Ar))!==et&&ok(e),l=c,c=c.return;if(l.tag===b){var f=l.stateNode;return f}else return null}var db=0,pb=1,Ag=2,Ay=3,gg=!1,gy,vg;gy=!1,vg=null;function vy(e){var t={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:Ae},effects:null};e.updateQueue=t}function fb(e,t){var r=t.updateQueue,l=e.updateQueue;if(r===l){var c={baseState:l.baseState,firstBaseUpdate:l.firstBaseUpdate,lastBaseUpdate:l.lastBaseUpdate,shared:l.shared,effects:l.effects};t.updateQueue=c}}function Ts(e,t){var r={eventTime:e,lane:t,tag:db,payload:null,callback:null,next:null};return r}function ku(e,t,r){var l=e.updateQueue;if(l===null)return null;var c=l.shared;if(vg===c&&!gy&&(m(\"An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.\"),gy=!0),uO()){var f=c.pending;return f===null?t.next=t:(t.next=f.next,f.next=t),c.pending=t,dj(e,r)}else return cj(e,c,t,r)}function Ug(e,t,r){var l=t.updateQueue;if(l!==null){var c=l.shared;if(Fm(r)){var f=c.lanes;f=Cm(f,e.pendingLanes);var v=bt(f,r);c.lanes=v,xp(e,v)}}}function Uy(e,t){var r=e.updateQueue,l=e.alternate;if(l!==null){var c=l.updateQueue;if(r===c){var f=null,v=null,x=r.firstBaseUpdate;if(x!==null){var T=x;do{var w={eventTime:T.eventTime,lane:T.lane,tag:T.tag,payload:T.payload,callback:T.callback,next:null};v===null?f=v=w:(v.next=w,v=w),T=T.next}while(T!==null);v===null?f=v=t:(v.next=t,v=t)}else f=v=t;r={baseState:c.baseState,firstBaseUpdate:f,lastBaseUpdate:v,shared:c.shared,effects:c.effects},e.updateQueue=r;return}}var M=r.lastBaseUpdate;M===null?r.firstBaseUpdate=t:M.next=t,r.lastBaseUpdate=t}function pj(e,t,r,l,c,f){switch(r.tag){case pb:{var v=r.payload;if(typeof v==\"function\"){lb();var x=v.call(f,l,c);{if(e.mode&ln){Mn(!0);try{v.call(f,l,c)}finally{Mn(!1)}}sb()}return x}return v}case Ay:e.flags=e.flags&~Aa|_e;case db:{var T=r.payload,w;if(typeof T==\"function\"){lb(),w=T.call(f,l,c);{if(e.mode&ln){Mn(!0);try{T.call(f,l,c)}finally{Mn(!1)}}sb()}}else w=T;return w==null?l:Rt({},l,w)}case Ag:return gg=!0,l}return l}function Sg(e,t,r,l){var c=e.updateQueue;gg=!1,vg=c.shared;var f=c.firstBaseUpdate,v=c.lastBaseUpdate,x=c.shared.pending;if(x!==null){c.shared.pending=null;var T=x,w=T.next;T.next=null,v===null?f=w:v.next=w,v=T;var M=e.alternate;if(M!==null){var H=M.updateQueue,J=H.lastBaseUpdate;J!==v&&(J===null?H.firstBaseUpdate=w:J.next=w,H.lastBaseUpdate=T)}}if(f!==null){var ne=c.baseState,ie=Ae,se=null,Be=null,rt=null,Xe=f;do{var Vt=Xe.lane,Dt=Xe.eventTime;if(fs(l,Vt)){if(rt!==null){var ue={eventTime:Dt,lane:Gt,tag:Xe.tag,payload:Xe.payload,callback:Xe.callback,next:null};rt=rt.next=ue}ne=pj(e,c,Xe,ne,t,r);var _=Xe.callback;if(_!==null&&Xe.lane!==Gt){e.flags|=An;var Fe=c.effects;Fe===null?c.effects=[Xe]:Fe.push(Xe)}}else{var X={eventTime:Dt,lane:Vt,tag:Xe.tag,payload:Xe.payload,callback:Xe.callback,next:null};rt===null?(Be=rt=X,se=ne):rt=rt.next=X,ie=bt(ie,Vt)}if(Xe=Xe.next,Xe===null){if(x=c.shared.pending,x===null)break;var Le=x,Qe=Le.next;Le.next=null,Xe=Qe,c.lastBaseUpdate=Le,c.shared.pending=null}}while(!0);rt===null&&(se=ne),c.baseState=se,c.firstBaseUpdate=Be,c.lastBaseUpdate=rt;var ft=c.shared.interleaved;if(ft!==null){var yt=ft;do ie=bt(ie,yt.lane),yt=yt.next;while(yt!==ft)}else f===null&&(c.shared.lanes=Ae);L0(ie),e.lanes=ie,e.memoizedState=ne}vg=null}function fj(e,t){if(typeof e!=\"function\")throw new Error(\"Invalid argument passed as callback. Expected a function. Instead \"+(\"received: \"+e));e.call(t)}function mb(){gg=!1}function yg(){return gg}function hb(e,t,r){var l=t.effects;if(t.effects=null,l!==null)for(var c=0;c<l.length;c++){var f=l[c],v=f.callback;v!==null&&(f.callback=null,fj(v,r))}}var p0={},Nu=Tu(p0),f0=Tu(p0),Kg=Tu(p0);function xg(e){if(e===p0)throw new Error(\"Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.\");return e}function Ab(){var e=xg(Kg.current);return e}function Sy(e,t){Cr(Kg,t,e),Cr(f0,e,e),Cr(Nu,p0,e);var r=N4(t);Tr(Nu,e),Cr(Nu,r,e)}function _p(e){Tr(Nu,e),Tr(f0,e),Tr(Kg,e)}function yy(){var e=xg(Nu.current);return e}function gb(e){xg(Kg.current);var t=xg(Nu.current),r=w4(t,e.type);t!==r&&(Cr(f0,e,e),Cr(Nu,r,e))}function Ky(e){f0.current===e&&(Tr(Nu,e),Tr(f0,e))}var mj=0,vb=1,Ub=1,m0=2,Eo=Tu(mj);function xy(e,t){return(e&t)!==0}function $p(e){return e&vb}function Fy(e,t){return e&vb|t}function hj(e,t){return e|t}function wu(e,t){Cr(Eo,t,e)}function ef(e){Tr(Eo,e)}function Aj(e,t){var r=e.memoizedState;return r!==null?r.dehydrated!==null:(e.memoizedProps,!0)}function Fg(e){for(var t=e;t!==null;){if(t.tag===te){var r=t.memoizedState;if(r!==null){var l=r.dehydrated;if(l===null||DC(l)||qS(l))return t}}else if(t.tag===gt&&t.memoizedProps.revealOrder!==void 0){var c=(t.flags&_e)!==et;if(c)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)return null;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var pi=0,ka=1,yl=2,Na=4,nr=8,Ty=[];function Cy(){for(var e=0;e<Ty.length;e++){var t=Ty[e];t._workInProgressVersionPrimary=null}Ty.length=0}function gj(e,t){var r=t._getVersion,l=r(t._source);e.mutableSourceEagerHydrationData==null?e.mutableSourceEagerHydrationData=[t,l]:e.mutableSourceEagerHydrationData.push(t,l)}var je=u.ReactCurrentDispatcher,h0=u.ReactCurrentBatchConfig,by,tf;by=new Set;var td=Ae,sn=null,wa=null,Ea=null,Tg=!1,A0=!1,g0=0,vj=0,Uj=25,ce=null,io=null,Eu=-1,Ry=!1;function en(){{var e=ce;io===null?io=[e]:io.push(e)}}function Ne(){{var e=ce;io!==null&&(Eu++,io[Eu]!==e&&Sj(e))}}function nf(e){e!=null&&!Nt(e)&&m(\"%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.\",ce,typeof e)}function Sj(e){{var t=vt(sn);if(!by.has(t)&&(by.add(t),io!==null)){for(var r=\"\",l=30,c=0;c<=Eu;c++){for(var f=io[c],v=c===Eu?e:f,x=c+1+\". \"+f;x.length<l;)x+=\" \";x+=v+`\n`,r+=x}m(`React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://reactjs.org/link/rules-of-hooks\n\n Previous render Next render\n ------------------------------------------------------\n%s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n`,t,r)}}}function br(){throw new Error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.`)}function ky(e,t){if(Ry)return!1;if(t===null)return m(\"%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.\",ce),!1;e.length!==t.length&&m(`The final argument passed to %s changed size between renders. The order and size of this array must remain constant.\n\nPrevious: %s\nIncoming: %s`,ce,\"[\"+t.join(\", \")+\"]\",\"[\"+e.join(\", \")+\"]\");for(var r=0;r<t.length&&r<e.length;r++)if(!Se(e[r],t[r]))return!1;return!0}function af(e,t,r,l,c,f){td=f,sn=t,io=e!==null?e._debugHookTypes:null,Eu=-1,Ry=e!==null&&e.type!==t.type,t.memoizedState=null,t.updateQueue=null,t.lanes=Ae,e!==null&&e.memoizedState!==null?je.current=Ib:io!==null?je.current=Vb:je.current=Ob;var v=r(l,c);if(A0){var x=0;do{if(A0=!1,g0=0,x>=Uj)throw new Error(\"Too many re-renders. React limits the number of renders to prevent an infinite loop.\");x+=1,Ry=!1,wa=null,Ea=null,t.updateQueue=null,Eu=-1,je.current=qb,v=r(l,c)}while(A0)}je.current=Lg,t._debugHookTypes=io;var T=wa!==null&&wa.next!==null;if(td=Ae,sn=null,wa=null,Ea=null,ce=null,io=null,Eu=-1,e!==null&&(e.flags&$n)!==(t.flags&$n)&&(e.mode&Et)!==tt&&m(\"Internal React error: Expected static flag was missing. Please notify the React team.\"),Tg=!1,T)throw new Error(\"Rendered fewer hooks than expected. This may be caused by an accidental early return statement.\");return v}function rf(){var e=g0!==0;return g0=0,e}function Sb(e,t,r){t.updateQueue=e.updateQueue,(t.mode&Ht)!==tt?t.flags&=-50333701:t.flags&=-2053,e.lanes=bc(e.lanes,r)}function yb(){if(je.current=Lg,Tg){for(var e=sn.memoizedState;e!==null;){var t=e.queue;t!==null&&(t.pending=null),e=e.next}Tg=!1}td=Ae,sn=null,wa=null,Ea=null,io=null,Eu=-1,ce=null,Bb=!1,A0=!1,g0=0}function Kl(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Ea===null?sn.memoizedState=Ea=e:Ea=Ea.next=e,Ea}function oo(){var e;if(wa===null){var t=sn.alternate;t!==null?e=t.memoizedState:e=null}else e=wa.next;var r;if(Ea===null?r=sn.memoizedState:r=Ea.next,r!==null)Ea=r,r=Ea.next,wa=e;else{if(e===null)throw new Error(\"Rendered more hooks than during the previous render.\");wa=e;var l={memoizedState:wa.memoizedState,baseState:wa.baseState,baseQueue:wa.baseQueue,queue:wa.queue,next:null};Ea===null?sn.memoizedState=Ea=l:Ea=Ea.next=l}return Ea}function Kb(){return{lastEffect:null,stores:null}}function Ny(e,t){return typeof t==\"function\"?t(e):t}function wy(e,t,r){var l=Kl(),c;r!==void 0?c=r(t):c=t,l.memoizedState=l.baseState=c;var f={pending:null,interleaved:null,lanes:Ae,dispatch:null,lastRenderedReducer:e,lastRenderedState:c};l.queue=f;var v=f.dispatch=Fj.bind(null,sn,f);return[l.memoizedState,v]}function Ey(e,t,r){var l=oo(),c=l.queue;if(c===null)throw new Error(\"Should have a queue. This is likely a bug in React. Please file an issue.\");c.lastRenderedReducer=e;var f=wa,v=f.baseQueue,x=c.pending;if(x!==null){if(v!==null){var T=v.next,w=x.next;v.next=w,x.next=T}f.baseQueue!==v&&m(\"Internal error: Expected work-in-progress queue to be a clone. This is a bug in React.\"),f.baseQueue=v=x,c.pending=null}if(v!==null){var M=v.next,H=f.baseState,J=null,ne=null,ie=null,se=M;do{var Be=se.lane;if(fs(td,Be)){if(ie!==null){var Xe={lane:Gt,action:se.action,hasEagerState:se.hasEagerState,eagerState:se.eagerState,next:null};ie=ie.next=Xe}if(se.hasEagerState)H=se.eagerState;else{var Vt=se.action;H=e(H,Vt)}}else{var rt={lane:Be,action:se.action,hasEagerState:se.hasEagerState,eagerState:se.eagerState,next:null};ie===null?(ne=ie=rt,J=H):ie=ie.next=rt,sn.lanes=bt(sn.lanes,Be),L0(Be)}se=se.next}while(se!==null&&se!==M);ie===null?J=H:ie.next=ne,Se(H,l.memoizedState)||C0(),l.memoizedState=H,l.baseState=J,l.baseQueue=ie,c.lastRenderedState=H}var Dt=c.interleaved;if(Dt!==null){var X=Dt;do{var ue=X.lane;sn.lanes=bt(sn.lanes,ue),L0(ue),X=X.next}while(X!==Dt)}else v===null&&(c.lanes=Ae);var _=c.dispatch;return[l.memoizedState,_]}function My(e,t,r){var l=oo(),c=l.queue;if(c===null)throw new Error(\"Should have a queue. This is likely a bug in React. Please file an issue.\");c.lastRenderedReducer=e;var f=c.dispatch,v=c.pending,x=l.memoizedState;if(v!==null){c.pending=null;var T=v.next,w=T;do{var M=w.action;x=e(x,M),w=w.next}while(w!==T);Se(x,l.memoizedState)||C0(),l.memoizedState=x,l.baseQueue===null&&(l.baseState=x),c.lastRenderedState=x}return[x,f]}function LV(e,t,r){}function OV(e,t,r){}function By(e,t,r){var l=sn,c=Kl(),f,v=tr();if(v){if(r===void 0)throw new Error(\"Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.\");f=r(),tf||f!==r()&&(m(\"The result of getServerSnapshot should be cached to avoid an infinite loop\"),tf=!0)}else{if(f=t(),!tf){var x=t();Se(f,x)||(m(\"The result of getSnapshot should be cached to avoid an infinite loop\"),tf=!0)}var T=av();if(T===null)throw new Error(\"Expected a work-in-progress root. This is a bug in React. Please file an issue.\");yp(T,td)||xb(l,t,f)}c.memoizedState=f;var w={value:f,getSnapshot:t};return c.queue=w,Ng(Tb.bind(null,l,w,e),[e]),l.flags|=hr,v0(ka|nr,Fb.bind(null,l,w,f,t),void 0,null),f}function Cg(e,t,r){var l=sn,c=oo(),f=t();if(!tf){var v=t();Se(f,v)||(m(\"The result of getSnapshot should be cached to avoid an infinite loop\"),tf=!0)}var x=c.memoizedState,T=!Se(x,f);T&&(c.memoizedState=f,C0());var w=c.queue;if(S0(Tb.bind(null,l,w,e),[e]),w.getSnapshot!==t||T||Ea!==null&&Ea.memoizedState.tag&ka){l.flags|=hr,v0(ka|nr,Fb.bind(null,l,w,f,t),void 0,null);var M=av();if(M===null)throw new Error(\"Expected a work-in-progress root. This is a bug in React. Please file an issue.\");yp(M,td)||xb(l,t,f)}return f}function xb(e,t,r){e.flags|=uu;var l={getSnapshot:t,value:r},c=sn.updateQueue;if(c===null)c=Kb(),sn.updateQueue=c,c.stores=[l];else{var f=c.stores;f===null?c.stores=[l]:f.push(l)}}function Fb(e,t,r,l){t.value=r,t.getSnapshot=l,Cb(t)&&bb(e)}function Tb(e,t,r){var l=function(){Cb(t)&&bb(e)};return r(l)}function Cb(e){var t=e.getSnapshot,r=e.value;try{var l=t();return!Se(r,l)}catch(c){return!0}}function bb(e){var t=di(e,ct);t!==null&&Da(t,e,ct,cn)}function bg(e){var t=Kl();typeof e==\"function\"&&(e=e()),t.memoizedState=t.baseState=e;var r={pending:null,interleaved:null,lanes:Ae,dispatch:null,lastRenderedReducer:Ny,lastRenderedState:e};t.queue=r;var l=r.dispatch=Tj.bind(null,sn,r);return[t.memoizedState,l]}function Qy(e){return Ey(Ny)}function Dy(e){return My(Ny)}function v0(e,t,r,l){var c={tag:e,create:t,destroy:r,deps:l,next:null},f=sn.updateQueue;if(f===null)f=Kb(),sn.updateQueue=f,f.lastEffect=c.next=c;else{var v=f.lastEffect;if(v===null)f.lastEffect=c.next=c;else{var x=v.next;v.next=c,c.next=x,f.lastEffect=c}}return c}function jy(e){var t=Kl();{var r={current:e};return t.memoizedState=r,r}}function Rg(e){var t=oo();return t.memoizedState}function U0(e,t,r,l){var c=Kl(),f=l===void 0?null:l;sn.flags|=e,c.memoizedState=v0(ka|t,r,void 0,f)}function kg(e,t,r,l){var c=oo(),f=l===void 0?null:l,v=void 0;if(wa!==null){var x=wa.memoizedState;if(v=x.destroy,f!==null){var T=x.deps;if(ky(f,T)){c.memoizedState=v0(t,r,v,f);return}}}sn.flags|=e,c.memoizedState=v0(ka|t,r,v,f)}function Ng(e,t){return(sn.mode&Ht)!==tt?U0(zi|hr|Hd,nr,e,t):U0(hr|Hd,nr,e,t)}function S0(e,t){return kg(hr,nr,e,t)}function Ly(e,t){return U0(jt,yl,e,t)}function wg(e,t){return kg(jt,yl,e,t)}function Oy(e,t){var r=jt;return r|=So,(sn.mode&Ht)!==tt&&(r|=al),U0(r,Na,e,t)}function Eg(e,t){return kg(jt,Na,e,t)}function Rb(e,t){if(typeof t==\"function\"){var r=t,l=e();return r(l),function(){r(null)}}else if(t!=null){var c=t;c.hasOwnProperty(\"current\")||m(\"Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.\",\"an object with keys {\"+Object.keys(c).join(\", \")+\"}\");var f=e();return c.current=f,function(){c.current=null}}}function Vy(e,t,r){typeof t!=\"function\"&&m(\"Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.\",t!==null?typeof t:\"null\");var l=r!=null?r.concat([e]):null,c=jt;return c|=So,(sn.mode&Ht)!==tt&&(c|=al),U0(c,Na,Rb.bind(null,t,e),l)}function Mg(e,t,r){typeof t!=\"function\"&&m(\"Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.\",t!==null?typeof t:\"null\");var l=r!=null?r.concat([e]):null;return kg(jt,Na,Rb.bind(null,t,e),l)}function yj(e,t){}var Bg=yj;function Iy(e,t){var r=Kl(),l=t===void 0?null:t;return r.memoizedState=[e,l],e}function Qg(e,t){var r=oo(),l=t===void 0?null:t,c=r.memoizedState;if(c!==null&&l!==null){var f=c[1];if(ky(l,f))return c[0]}return r.memoizedState=[e,l],e}function qy(e,t){var r=Kl(),l=t===void 0?null:t,c=e();return r.memoizedState=[c,l],c}function Dg(e,t){var r=oo(),l=t===void 0?null:t,c=r.memoizedState;if(c!==null&&l!==null){var f=c[1];if(ky(l,f))return c[0]}var v=e();return r.memoizedState=[v,l],v}function Yy(e){var t=Kl();return t.memoizedState=e,e}function kb(e){var t=oo(),r=wa,l=r.memoizedState;return wb(t,l,e)}function Nb(e){var t=oo();if(wa===null)return t.memoizedState=e,e;var r=wa.memoizedState;return wb(t,r,e)}function wb(e,t,r){var l=!Km(td);if(l){if(!Se(r,t)){var c=Tm();sn.lanes=bt(sn.lanes,c),L0(c),e.baseState=!0}return t}else return e.baseState&&(e.baseState=!1,C0()),e.memoizedState=r,r}function Kj(e,t,r){var l=si();na(fA(l,Xi)),e(!0);var c=h0.transition;h0.transition={};var f=h0.transition;h0.transition._updatedFibers=new Set;try{e(!1),t()}finally{if(na(l),h0.transition=c,c===null&&f._updatedFibers){var v=f._updatedFibers.size;v>10&&U(\"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.\"),f._updatedFibers.clear()}}}function Gy(){var e=bg(!1),t=e[0],r=e[1],l=Kj.bind(null,r),c=Kl();return c.memoizedState=l,[t,l]}function Eb(){var e=Qy(),t=e[0],r=oo(),l=r.memoizedState;return[t,l]}function Mb(){var e=Dy(),t=e[0],r=oo(),l=r.memoizedState;return[t,l]}var Bb=!1;function xj(){return Bb}function Wy(){var e=Kl(),t=av(),r=t.identifierPrefix,l;if(tr()){var c=VD();l=\":\"+r+\"R\"+c;var f=g0++;f>0&&(l+=\"H\"+f.toString(32)),l+=\":\"}else{var v=vj++;l=\":\"+r+\"r\"+v.toString(32)+\":\"}return e.memoizedState=l,l}function jg(){var e=oo(),t=e.memoizedState;return t}function Fj(e,t,r){typeof arguments[3]==\"function\"&&m(\"State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().\");var l=ju(e),c={lane:l,action:r,hasEagerState:!1,eagerState:null,next:null};if(Qb(e))Db(t,c);else{var f=cb(e,t,c,l);if(f!==null){var v=qr();Da(f,e,l,v),jb(f,t,l)}}Lb(e,l)}function Tj(e,t,r){typeof arguments[3]==\"function\"&&m(\"State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().\");var l=ju(e),c={lane:l,action:r,hasEagerState:!1,eagerState:null,next:null};if(Qb(e))Db(t,c);else{var f=e.alternate;if(e.lanes===Ae&&(f===null||f.lanes===Ae)){var v=t.lastRenderedReducer;if(v!==null){var x;x=je.current,je.current=Mo;try{var T=t.lastRenderedState,w=v(T,r);if(c.hasEagerState=!0,c.eagerState=w,Se(w,T)){uj(e,t,c,l);return}}catch(J){}finally{je.current=x}}}var M=cb(e,t,c,l);if(M!==null){var H=qr();Da(M,e,l,H),jb(M,t,l)}}Lb(e,l)}function Qb(e){var t=e.alternate;return e===sn||t!==null&&t===sn}function Db(e,t){A0=Tg=!0;var r=e.pending;r===null?t.next=t:(t.next=r.next,r.next=t),e.pending=t}function jb(e,t,r){if(Fm(r)){var l=t.lanes;l=Cm(l,e.pendingLanes);var c=bt(l,r);t.lanes=c,xp(e,c)}}function Lb(e,t,r){gc(e,t)}var Lg={readContext:Sa,useCallback:br,useContext:br,useEffect:br,useImperativeHandle:br,useInsertionEffect:br,useLayoutEffect:br,useMemo:br,useReducer:br,useRef:br,useState:br,useDebugValue:br,useDeferredValue:br,useTransition:br,useMutableSource:br,useSyncExternalStore:br,useId:br,unstable_isNewReconciler:de},Ob=null,Vb=null,Ib=null,qb=null,xl=null,Mo=null,Og=null;{var Jy=function(){m(\"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().\")},St=function(){m(\"Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://reactjs.org/link/rules-of-hooks\")};Ob={readContext:function(e){return Sa(e)},useCallback:function(e,t){return ce=\"useCallback\",en(),nf(t),Iy(e,t)},useContext:function(e){return ce=\"useContext\",en(),Sa(e)},useEffect:function(e,t){return ce=\"useEffect\",en(),nf(t),Ng(e,t)},useImperativeHandle:function(e,t,r){return ce=\"useImperativeHandle\",en(),nf(r),Vy(e,t,r)},useInsertionEffect:function(e,t){return ce=\"useInsertionEffect\",en(),nf(t),Ly(e,t)},useLayoutEffect:function(e,t){return ce=\"useLayoutEffect\",en(),nf(t),Oy(e,t)},useMemo:function(e,t){ce=\"useMemo\",en(),nf(t);var r=je.current;je.current=xl;try{return qy(e,t)}finally{je.current=r}},useReducer:function(e,t,r){ce=\"useReducer\",en();var l=je.current;je.current=xl;try{return wy(e,t,r)}finally{je.current=l}},useRef:function(e){return ce=\"useRef\",en(),jy(e)},useState:function(e){ce=\"useState\",en();var t=je.current;je.current=xl;try{return bg(e)}finally{je.current=t}},useDebugValue:function(e,t){return ce=\"useDebugValue\",en(),void 0},useDeferredValue:function(e){return ce=\"useDeferredValue\",en(),Yy(e)},useTransition:function(){return ce=\"useTransition\",en(),Gy()},useMutableSource:function(e,t,r){return ce=\"useMutableSource\",en(),void 0},useSyncExternalStore:function(e,t,r){return ce=\"useSyncExternalStore\",en(),By(e,t,r)},useId:function(){return ce=\"useId\",en(),Wy()},unstable_isNewReconciler:de},Vb={readContext:function(e){return Sa(e)},useCallback:function(e,t){return ce=\"useCallback\",Ne(),Iy(e,t)},useContext:function(e){return ce=\"useContext\",Ne(),Sa(e)},useEffect:function(e,t){return ce=\"useEffect\",Ne(),Ng(e,t)},useImperativeHandle:function(e,t,r){return ce=\"useImperativeHandle\",Ne(),Vy(e,t,r)},useInsertionEffect:function(e,t){return ce=\"useInsertionEffect\",Ne(),Ly(e,t)},useLayoutEffect:function(e,t){return ce=\"useLayoutEffect\",Ne(),Oy(e,t)},useMemo:function(e,t){ce=\"useMemo\",Ne();var r=je.current;je.current=xl;try{return qy(e,t)}finally{je.current=r}},useReducer:function(e,t,r){ce=\"useReducer\",Ne();var l=je.current;je.current=xl;try{return wy(e,t,r)}finally{je.current=l}},useRef:function(e){return ce=\"useRef\",Ne(),jy(e)},useState:function(e){ce=\"useState\",Ne();var t=je.current;je.current=xl;try{return bg(e)}finally{je.current=t}},useDebugValue:function(e,t){return ce=\"useDebugValue\",Ne(),void 0},useDeferredValue:function(e){return ce=\"useDeferredValue\",Ne(),Yy(e)},useTransition:function(){return ce=\"useTransition\",Ne(),Gy()},useMutableSource:function(e,t,r){return ce=\"useMutableSource\",Ne(),void 0},useSyncExternalStore:function(e,t,r){return ce=\"useSyncExternalStore\",Ne(),By(e,t,r)},useId:function(){return ce=\"useId\",Ne(),Wy()},unstable_isNewReconciler:de},Ib={readContext:function(e){return Sa(e)},useCallback:function(e,t){return ce=\"useCallback\",Ne(),Qg(e,t)},useContext:function(e){return ce=\"useContext\",Ne(),Sa(e)},useEffect:function(e,t){return ce=\"useEffect\",Ne(),S0(e,t)},useImperativeHandle:function(e,t,r){return ce=\"useImperativeHandle\",Ne(),Mg(e,t,r)},useInsertionEffect:function(e,t){return ce=\"useInsertionEffect\",Ne(),wg(e,t)},useLayoutEffect:function(e,t){return ce=\"useLayoutEffect\",Ne(),Eg(e,t)},useMemo:function(e,t){ce=\"useMemo\",Ne();var r=je.current;je.current=Mo;try{return Dg(e,t)}finally{je.current=r}},useReducer:function(e,t,r){ce=\"useReducer\",Ne();var l=je.current;je.current=Mo;try{return Ey(e,t,r)}finally{je.current=l}},useRef:function(e){return ce=\"useRef\",Ne(),Rg()},useState:function(e){ce=\"useState\",Ne();var t=je.current;je.current=Mo;try{return Qy(e)}finally{je.current=t}},useDebugValue:function(e,t){return ce=\"useDebugValue\",Ne(),Bg()},useDeferredValue:function(e){return ce=\"useDeferredValue\",Ne(),kb(e)},useTransition:function(){return ce=\"useTransition\",Ne(),Eb()},useMutableSource:function(e,t,r){return ce=\"useMutableSource\",Ne(),void 0},useSyncExternalStore:function(e,t,r){return ce=\"useSyncExternalStore\",Ne(),Cg(e,t)},useId:function(){return ce=\"useId\",Ne(),jg()},unstable_isNewReconciler:de},qb={readContext:function(e){return Sa(e)},useCallback:function(e,t){return ce=\"useCallback\",Ne(),Qg(e,t)},useContext:function(e){return ce=\"useContext\",Ne(),Sa(e)},useEffect:function(e,t){return ce=\"useEffect\",Ne(),S0(e,t)},useImperativeHandle:function(e,t,r){return ce=\"useImperativeHandle\",Ne(),Mg(e,t,r)},useInsertionEffect:function(e,t){return ce=\"useInsertionEffect\",Ne(),wg(e,t)},useLayoutEffect:function(e,t){return ce=\"useLayoutEffect\",Ne(),Eg(e,t)},useMemo:function(e,t){ce=\"useMemo\",Ne();var r=je.current;je.current=Og;try{return Dg(e,t)}finally{je.current=r}},useReducer:function(e,t,r){ce=\"useReducer\",Ne();var l=je.current;je.current=Og;try{return My(e,t,r)}finally{je.current=l}},useRef:function(e){return ce=\"useRef\",Ne(),Rg()},useState:function(e){ce=\"useState\",Ne();var t=je.current;je.current=Og;try{return Dy(e)}finally{je.current=t}},useDebugValue:function(e,t){return ce=\"useDebugValue\",Ne(),Bg()},useDeferredValue:function(e){return ce=\"useDeferredValue\",Ne(),Nb(e)},useTransition:function(){return ce=\"useTransition\",Ne(),Mb()},useMutableSource:function(e,t,r){return ce=\"useMutableSource\",Ne(),void 0},useSyncExternalStore:function(e,t,r){return ce=\"useSyncExternalStore\",Ne(),Cg(e,t)},useId:function(){return ce=\"useId\",Ne(),jg()},unstable_isNewReconciler:de},xl={readContext:function(e){return Jy(),Sa(e)},useCallback:function(e,t){return ce=\"useCallback\",St(),en(),Iy(e,t)},useContext:function(e){return ce=\"useContext\",St(),en(),Sa(e)},useEffect:function(e,t){return ce=\"useEffect\",St(),en(),Ng(e,t)},useImperativeHandle:function(e,t,r){return ce=\"useImperativeHandle\",St(),en(),Vy(e,t,r)},useInsertionEffect:function(e,t){return ce=\"useInsertionEffect\",St(),en(),Ly(e,t)},useLayoutEffect:function(e,t){return ce=\"useLayoutEffect\",St(),en(),Oy(e,t)},useMemo:function(e,t){ce=\"useMemo\",St(),en();var r=je.current;je.current=xl;try{return qy(e,t)}finally{je.current=r}},useReducer:function(e,t,r){ce=\"useReducer\",St(),en();var l=je.current;je.current=xl;try{return wy(e,t,r)}finally{je.current=l}},useRef:function(e){return ce=\"useRef\",St(),en(),jy(e)},useState:function(e){ce=\"useState\",St(),en();var t=je.current;je.current=xl;try{return bg(e)}finally{je.current=t}},useDebugValue:function(e,t){return ce=\"useDebugValue\",St(),en(),void 0},useDeferredValue:function(e){return ce=\"useDeferredValue\",St(),en(),Yy(e)},useTransition:function(){return ce=\"useTransition\",St(),en(),Gy()},useMutableSource:function(e,t,r){return ce=\"useMutableSource\",St(),en(),void 0},useSyncExternalStore:function(e,t,r){return ce=\"useSyncExternalStore\",St(),en(),By(e,t,r)},useId:function(){return ce=\"useId\",St(),en(),Wy()},unstable_isNewReconciler:de},Mo={readContext:function(e){return Jy(),Sa(e)},useCallback:function(e,t){return ce=\"useCallback\",St(),Ne(),Qg(e,t)},useContext:function(e){return ce=\"useContext\",St(),Ne(),Sa(e)},useEffect:function(e,t){return ce=\"useEffect\",St(),Ne(),S0(e,t)},useImperativeHandle:function(e,t,r){return ce=\"useImperativeHandle\",St(),Ne(),Mg(e,t,r)},useInsertionEffect:function(e,t){return ce=\"useInsertionEffect\",St(),Ne(),wg(e,t)},useLayoutEffect:function(e,t){return ce=\"useLayoutEffect\",St(),Ne(),Eg(e,t)},useMemo:function(e,t){ce=\"useMemo\",St(),Ne();var r=je.current;je.current=Mo;try{return Dg(e,t)}finally{je.current=r}},useReducer:function(e,t,r){ce=\"useReducer\",St(),Ne();var l=je.current;je.current=Mo;try{return Ey(e,t,r)}finally{je.current=l}},useRef:function(e){return ce=\"useRef\",St(),Ne(),Rg()},useState:function(e){ce=\"useState\",St(),Ne();var t=je.current;je.current=Mo;try{return Qy(e)}finally{je.current=t}},useDebugValue:function(e,t){return ce=\"useDebugValue\",St(),Ne(),Bg()},useDeferredValue:function(e){return ce=\"useDeferredValue\",St(),Ne(),kb(e)},useTransition:function(){return ce=\"useTransition\",St(),Ne(),Eb()},useMutableSource:function(e,t,r){return ce=\"useMutableSource\",St(),Ne(),void 0},useSyncExternalStore:function(e,t,r){return ce=\"useSyncExternalStore\",St(),Ne(),Cg(e,t)},useId:function(){return ce=\"useId\",St(),Ne(),jg()},unstable_isNewReconciler:de},Og={readContext:function(e){return Jy(),Sa(e)},useCallback:function(e,t){return ce=\"useCallback\",St(),Ne(),Qg(e,t)},useContext:function(e){return ce=\"useContext\",St(),Ne(),Sa(e)},useEffect:function(e,t){return ce=\"useEffect\",St(),Ne(),S0(e,t)},useImperativeHandle:function(e,t,r){return ce=\"useImperativeHandle\",St(),Ne(),Mg(e,t,r)},useInsertionEffect:function(e,t){return ce=\"useInsertionEffect\",St(),Ne(),wg(e,t)},useLayoutEffect:function(e,t){return ce=\"useLayoutEffect\",St(),Ne(),Eg(e,t)},useMemo:function(e,t){ce=\"useMemo\",St(),Ne();var r=je.current;je.current=Mo;try{return Dg(e,t)}finally{je.current=r}},useReducer:function(e,t,r){ce=\"useReducer\",St(),Ne();var l=je.current;je.current=Mo;try{return My(e,t,r)}finally{je.current=l}},useRef:function(e){return ce=\"useRef\",St(),Ne(),Rg()},useState:function(e){ce=\"useState\",St(),Ne();var t=je.current;je.current=Mo;try{return Dy(e)}finally{je.current=t}},useDebugValue:function(e,t){return ce=\"useDebugValue\",St(),Ne(),Bg()},useDeferredValue:function(e){return ce=\"useDeferredValue\",St(),Ne(),Nb(e)},useTransition:function(){return ce=\"useTransition\",St(),Ne(),Mb()},useMutableSource:function(e,t,r){return ce=\"useMutableSource\",St(),Ne(),void 0},useSyncExternalStore:function(e,t,r){return ce=\"useSyncExternalStore\",St(),Ne(),Cg(e,t)},useId:function(){return ce=\"useId\",St(),Ne(),jg()},unstable_isNewReconciler:de}}var Mu=o.unstable_now,Yb=0,Vg=-1,y0=-1,Ig=-1,zy=!1,qg=!1;function Gb(){return zy}function Cj(){qg=!0}function bj(){zy=!1,qg=!1}function Rj(){zy=qg,qg=!1}function Wb(){return Yb}function Jb(){Yb=Mu()}function Hy(e){y0=Mu(),e.actualStartTime<0&&(e.actualStartTime=Mu())}function zb(e){y0=-1}function Yg(e,t){if(y0>=0){var r=Mu()-y0;e.actualDuration+=r,t&&(e.selfBaseDuration=r),y0=-1}}function Fl(e){if(Vg>=0){var t=Mu()-Vg;Vg=-1;for(var r=e.return;r!==null;){switch(r.tag){case b:var l=r.stateNode;l.effectDuration+=t;return;case P:var c=r.stateNode;c.effectDuration+=t;return}r=r.return}}}function Py(e){if(Ig>=0){var t=Mu()-Ig;Ig=-1;for(var r=e.return;r!==null;){switch(r.tag){case b:var l=r.stateNode;l!==null&&(l.passiveEffectDuration+=t);return;case P:var c=r.stateNode;c!==null&&(c.passiveEffectDuration+=t);return}r=r.return}}}function Tl(){Vg=Mu()}function Zy(){Ig=Mu()}function Xy(e){for(var t=e.child;t;)e.actualDuration+=t.actualDuration,t=t.sibling}function Bo(e,t){if(e&&e.defaultProps){var r=Rt({},t),l=e.defaultProps;for(var c in l)r[c]===void 0&&(r[c]=l[c]);return r}return t}var _y={},$y,eK,tK,nK,aK,Hb,Gg,rK,iK,oK,K0;{$y=new Set,eK=new Set,tK=new Set,nK=new Set,rK=new Set,aK=new Set,iK=new Set,oK=new Set,K0=new Set;var Pb=new Set;Gg=function(e,t){if(!(e===null||typeof e==\"function\")){var r=t+\"_\"+e;Pb.has(r)||(Pb.add(r),m(\"%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.\",t,e))}},Hb=function(e,t){if(t===void 0){var r=qt(e)||\"Component\";aK.has(r)||(aK.add(r),m(\"%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.\",r))}},Object.defineProperty(_y,\"_processChildContext\",{enumerable:!1,value:function(){throw new Error(\"_processChildContext is not available in React 16+. This likely means you have multiple copies of React and are attempting to nest a React 15 tree inside a React 16 tree using unstable_renderSubtreeIntoContainer, which isn't supported. Try to make sure you have only one copy of React (and ideally, switch to ReactDOM.createPortal).\")}}),Object.freeze(_y)}function lK(e,t,r,l){var c=e.memoizedState,f=r(l,c);{if(e.mode&ln){Mn(!0);try{f=r(l,c)}finally{Mn(!1)}}Hb(t,f)}var v=f==null?c:Rt({},c,f);if(e.memoizedState=v,e.lanes===Ae){var x=e.updateQueue;x.baseState=v}}var sK={isMounted:Xh,enqueueSetState:function(e,t,r){var l=su(e),c=qr(),f=ju(l),v=Ts(c,f);v.payload=t,r!=null&&(Gg(r,\"setState\"),v.callback=r);var x=ku(l,v,f);x!==null&&(Da(x,l,f,c),Ug(x,l,f)),gc(l,f)},enqueueReplaceState:function(e,t,r){var l=su(e),c=qr(),f=ju(l),v=Ts(c,f);v.tag=pb,v.payload=t,r!=null&&(Gg(r,\"replaceState\"),v.callback=r);var x=ku(l,v,f);x!==null&&(Da(x,l,f,c),Ug(x,l,f)),gc(l,f)},enqueueForceUpdate:function(e,t){var r=su(e),l=qr(),c=ju(r),f=Ts(l,c);f.tag=Ag,t!=null&&(Gg(t,\"forceUpdate\"),f.callback=t);var v=ku(r,f,c);v!==null&&(Da(v,r,c,l),Ug(v,r,c)),tp(r,c)}};function Zb(e,t,r,l,c,f,v){var x=e.stateNode;if(typeof x.shouldComponentUpdate==\"function\"){var T=x.shouldComponentUpdate(l,f,v);{if(e.mode&ln){Mn(!0);try{T=x.shouldComponentUpdate(l,f,v)}finally{Mn(!1)}}T===void 0&&m(\"%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.\",qt(t)||\"Component\")}return T}return t.prototype&&t.prototype.isPureReactComponent?!We(r,l)||!We(c,f):!0}function kj(e,t,r){var l=e.stateNode;{var c=qt(t)||\"Component\",f=l.render;f||(t.prototype&&typeof t.prototype.render==\"function\"?m(\"%s(...): No `render` method found on the returned component instance: did you accidentally return an object from the constructor?\",c):m(\"%s(...): No `render` method found on the returned component instance: you may have forgotten to define `render`.\",c)),l.getInitialState&&!l.getInitialState.isReactClassApproved&&!l.state&&m(\"getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?\",c),l.getDefaultProps&&!l.getDefaultProps.isReactClassApproved&&m(\"getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.\",c),l.propTypes&&m(\"propTypes was defined as an instance property on %s. Use a static property to define propTypes instead.\",c),l.contextType&&m(\"contextType was defined as an instance property on %s. Use a static property to define contextType instead.\",c),t.childContextTypes&&!K0.has(t)&&(e.mode&ln)===tt&&(K0.add(t),m(`%s uses the legacy childContextTypes API which is no longer supported and will be removed in the next major release. Use React.createContext() instead\n\n.Learn more about this warning here: https://reactjs.org/link/legacy-context`,c)),t.contextTypes&&!K0.has(t)&&(e.mode&ln)===tt&&(K0.add(t),m(`%s uses the legacy contextTypes API which is no longer supported and will be removed in the next major release. Use React.createContext() with static contextType instead.\n\nLearn more about this warning here: https://reactjs.org/link/legacy-context`,c)),l.contextTypes&&m(\"contextTypes was defined as an instance property on %s. Use a static property to define contextTypes instead.\",c),t.contextType&&t.contextTypes&&!iK.has(t)&&(iK.add(t),m(\"%s declares both contextTypes and contextType static properties. The legacy contextTypes property will be ignored.\",c)),typeof l.componentShouldUpdate==\"function\"&&m(\"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.\",c),t.prototype&&t.prototype.isPureReactComponent&&typeof l.shouldComponentUpdate!=\"undefined\"&&m(\"%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.\",qt(t)||\"A pure component\"),typeof l.componentDidUnmount==\"function\"&&m(\"%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?\",c),typeof l.componentDidReceiveProps==\"function\"&&m(\"%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().\",c),typeof l.componentWillRecieveProps==\"function\"&&m(\"%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?\",c),typeof l.UNSAFE_componentWillRecieveProps==\"function\"&&m(\"%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?\",c);var v=l.props!==r;l.props!==void 0&&v&&m(\"%s(...): When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.\",c,c),l.defaultProps&&m(\"Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.\",c,c),typeof l.getSnapshotBeforeUpdate==\"function\"&&typeof l.componentDidUpdate!=\"function\"&&!tK.has(t)&&(tK.add(t),m(\"%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.\",qt(t))),typeof l.getDerivedStateFromProps==\"function\"&&m(\"%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.\",c),typeof l.getDerivedStateFromError==\"function\"&&m(\"%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.\",c),typeof t.getSnapshotBeforeUpdate==\"function\"&&m(\"%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.\",c);var x=l.state;x&&(typeof x!=\"object\"||Nt(x))&&m(\"%s.state: must be set to an object or null\",c),typeof l.getChildContext==\"function\"&&typeof t.childContextTypes!=\"object\"&&m(\"%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().\",c)}}function Xb(e,t){t.updater=sK,e.stateNode=t,$l(t,e),t._reactInternalInstance=_y}function _b(e,t,r){var l=!1,c=wi,f=wi,v=t.contextType;if(\"contextType\"in t){var x=v===null||v!==void 0&&v.$$typeof===I&&v._context===void 0;if(!x&&!oK.has(t)){oK.add(t);var T=\"\";v===void 0?T=\" However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.\":typeof v!=\"object\"?T=\" However, it is set to a \"+typeof v+\".\":v.$$typeof===Li?T=\" Did you accidentally pass the Context.Provider instead?\":v._context!==void 0?T=\" Did you accidentally pass the Context.Consumer instead?\":T=\" However, it is set to an object with keys {\"+Object.keys(v).join(\", \")+\"}.\",m(\"%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s\",qt(t)||\"Component\",T)}}if(typeof v==\"object\"&&v!==null)f=Sa(v);else{c=Gp(e,t,!0);var w=t.contextTypes;l=w!=null,f=l?Wp(e,c):wi}var M=new t(r,f);if(e.mode&ln){Mn(!0);try{M=new t(r,f)}finally{Mn(!1)}}var H=e.memoizedState=M.state!==null&&M.state!==void 0?M.state:null;Xb(e,M);{if(typeof t.getDerivedStateFromProps==\"function\"&&H===null){var J=qt(t)||\"Component\";eK.has(J)||(eK.add(J),m(\"`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.\",J,M.state===null?\"null\":\"undefined\",J))}if(typeof t.getDerivedStateFromProps==\"function\"||typeof M.getSnapshotBeforeUpdate==\"function\"){var ne=null,ie=null,se=null;if(typeof M.componentWillMount==\"function\"&&M.componentWillMount.__suppressDeprecationWarning!==!0?ne=\"componentWillMount\":typeof M.UNSAFE_componentWillMount==\"function\"&&(ne=\"UNSAFE_componentWillMount\"),typeof M.componentWillReceiveProps==\"function\"&&M.componentWillReceiveProps.__suppressDeprecationWarning!==!0?ie=\"componentWillReceiveProps\":typeof M.UNSAFE_componentWillReceiveProps==\"function\"&&(ie=\"UNSAFE_componentWillReceiveProps\"),typeof M.componentWillUpdate==\"function\"&&M.componentWillUpdate.__suppressDeprecationWarning!==!0?se=\"componentWillUpdate\":typeof M.UNSAFE_componentWillUpdate==\"function\"&&(se=\"UNSAFE_componentWillUpdate\"),ne!==null||ie!==null||se!==null){var Be=qt(t)||\"Component\",rt=typeof t.getDerivedStateFromProps==\"function\"?\"getDerivedStateFromProps()\":\"getSnapshotBeforeUpdate()\";nK.has(Be)||(nK.add(Be),m(`Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n%s uses %s but also contains the following legacy lifecycles:%s%s%s\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://reactjs.org/link/unsafe-component-lifecycles`,Be,rt,ne!==null?`\n `+ne:\"\",ie!==null?`\n `+ie:\"\",se!==null?`\n `+se:\"\"))}}}return l&&IC(e,c,f),M}function Nj(e,t){var r=t.state;typeof t.componentWillMount==\"function\"&&t.componentWillMount(),typeof t.UNSAFE_componentWillMount==\"function\"&&t.UNSAFE_componentWillMount(),r!==t.state&&(m(\"%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.\",vt(e)||\"Component\"),sK.enqueueReplaceState(t,t.state,null))}function $b(e,t,r,l){var c=t.state;if(typeof t.componentWillReceiveProps==\"function\"&&t.componentWillReceiveProps(r,l),typeof t.UNSAFE_componentWillReceiveProps==\"function\"&&t.UNSAFE_componentWillReceiveProps(r,l),t.state!==c){{var f=vt(e)||\"Component\";$y.has(f)||($y.add(f),m(\"%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.\",f))}sK.enqueueReplaceState(t,t.state,null)}}function uK(e,t,r,l){kj(e,t,r);var c=e.stateNode;c.props=r,c.state=e.memoizedState,c.refs={},vy(e);var f=t.contextType;if(typeof f==\"object\"&&f!==null)c.context=Sa(f);else{var v=Gp(e,t,!0);c.context=Wp(e,v)}{if(c.state===r){var x=qt(t)||\"Component\";rK.has(x)||(rK.add(x),m(\"%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.\",x))}e.mode&ln&&wo.recordLegacyContextWarning(e,c),wo.recordUnsafeLifecycleWarnings(e,c)}c.state=e.memoizedState;var T=t.getDerivedStateFromProps;if(typeof T==\"function\"&&(lK(e,t,T,r),c.state=e.memoizedState),typeof t.getDerivedStateFromProps!=\"function\"&&typeof c.getSnapshotBeforeUpdate!=\"function\"&&(typeof c.UNSAFE_componentWillMount==\"function\"||typeof c.componentWillMount==\"function\")&&(Nj(e,c),Sg(e,r,c,l),c.state=e.memoizedState),typeof c.componentDidMount==\"function\"){var w=jt;w|=So,(e.mode&Ht)!==tt&&(w|=al),e.flags|=w}}function wj(e,t,r,l){var c=e.stateNode,f=e.memoizedProps;c.props=f;var v=c.context,x=t.contextType,T=wi;if(typeof x==\"object\"&&x!==null)T=Sa(x);else{var w=Gp(e,t,!0);T=Wp(e,w)}var M=t.getDerivedStateFromProps,H=typeof M==\"function\"||typeof c.getSnapshotBeforeUpdate==\"function\";!H&&(typeof c.UNSAFE_componentWillReceiveProps==\"function\"||typeof c.componentWillReceiveProps==\"function\")&&(f!==r||v!==T)&&$b(e,c,r,T),mb();var J=e.memoizedState,ne=c.state=J;if(Sg(e,r,c,l),ne=e.memoizedState,f===r&&J===ne&&!tg()&&!yg()){if(typeof c.componentDidMount==\"function\"){var ie=jt;ie|=So,(e.mode&Ht)!==tt&&(ie|=al),e.flags|=ie}return!1}typeof M==\"function\"&&(lK(e,t,M,r),ne=e.memoizedState);var se=yg()||Zb(e,t,f,r,J,ne,T);if(se){if(!H&&(typeof c.UNSAFE_componentWillMount==\"function\"||typeof c.componentWillMount==\"function\")&&(typeof c.componentWillMount==\"function\"&&c.componentWillMount(),typeof c.UNSAFE_componentWillMount==\"function\"&&c.UNSAFE_componentWillMount()),typeof c.componentDidMount==\"function\"){var Be=jt;Be|=So,(e.mode&Ht)!==tt&&(Be|=al),e.flags|=Be}}else{if(typeof c.componentDidMount==\"function\"){var rt=jt;rt|=So,(e.mode&Ht)!==tt&&(rt|=al),e.flags|=rt}e.memoizedProps=r,e.memoizedState=ne}return c.props=r,c.state=ne,c.context=T,se}function Ej(e,t,r,l,c){var f=t.stateNode;fb(e,t);var v=t.memoizedProps,x=t.type===t.elementType?v:Bo(t.type,v);f.props=x;var T=t.pendingProps,w=f.context,M=r.contextType,H=wi;if(typeof M==\"object\"&&M!==null)H=Sa(M);else{var J=Gp(t,r,!0);H=Wp(t,J)}var ne=r.getDerivedStateFromProps,ie=typeof ne==\"function\"||typeof f.getSnapshotBeforeUpdate==\"function\";!ie&&(typeof f.UNSAFE_componentWillReceiveProps==\"function\"||typeof f.componentWillReceiveProps==\"function\")&&(v!==T||w!==H)&&$b(t,f,l,H),mb();var se=t.memoizedState,Be=f.state=se;if(Sg(t,l,f,c),Be=t.memoizedState,v===T&&se===Be&&!tg()&&!yg()&&!ee)return typeof f.componentDidUpdate==\"function\"&&(v!==e.memoizedProps||se!==e.memoizedState)&&(t.flags|=jt),typeof f.getSnapshotBeforeUpdate==\"function\"&&(v!==e.memoizedProps||se!==e.memoizedState)&&(t.flags|=ca),!1;typeof ne==\"function\"&&(lK(t,r,ne,l),Be=t.memoizedState);var rt=yg()||Zb(t,r,x,l,se,Be,H)||ee;return rt?(!ie&&(typeof f.UNSAFE_componentWillUpdate==\"function\"||typeof f.componentWillUpdate==\"function\")&&(typeof f.componentWillUpdate==\"function\"&&f.componentWillUpdate(l,Be,H),typeof f.UNSAFE_componentWillUpdate==\"function\"&&f.UNSAFE_componentWillUpdate(l,Be,H)),typeof f.componentDidUpdate==\"function\"&&(t.flags|=jt),typeof f.getSnapshotBeforeUpdate==\"function\"&&(t.flags|=ca)):(typeof f.componentDidUpdate==\"function\"&&(v!==e.memoizedProps||se!==e.memoizedState)&&(t.flags|=jt),typeof f.getSnapshotBeforeUpdate==\"function\"&&(v!==e.memoizedProps||se!==e.memoizedState)&&(t.flags|=ca),t.memoizedProps=l,t.memoizedState=Be),f.props=l,f.state=Be,f.context=H,rt}function nd(e,t){return{value:e,source:t,stack:mo(t),digest:null}}function cK(e,t,r){return{value:e,source:null,stack:r!=null?r:null,digest:t!=null?t:null}}function Mj(e,t){return!0}function dK(e,t){try{var r=Mj(e,t);if(r===!1)return;var l=t.value,c=t.source,f=t.stack,v=f!==null?f:\"\";if(l!=null&&l._suppressLogging){if(e.tag===F)return;console.error(l)}var x=c?vt(c):null,T=x?\"The above error occurred in the <\"+x+\"> component:\":\"The above error occurred in one of your React components:\",w;if(e.tag===b)w=`Consider adding an error boundary to your tree to customize error handling behavior.\nVisit https://reactjs.org/link/error-boundaries to learn more about error boundaries.`;else{var M=vt(e)||\"Anonymous\";w=\"React will try to recreate this component tree from scratch \"+(\"using the error boundary you provided, \"+M+\".\")}var H=T+`\n`+v+`\n\n`+(\"\"+w);console.error(H)}catch(J){setTimeout(function(){throw J})}}var Bj=typeof WeakMap==\"function\"?WeakMap:Map;function eR(e,t,r){var l=Ts(cn,r);l.tag=Ay,l.payload={element:null};var c=t.value;return l.callback=function(){CO(c),dK(e,t)},l}function pK(e,t,r){var l=Ts(cn,r);l.tag=Ay;var c=e.type.getDerivedStateFromError;if(typeof c==\"function\"){var f=t.value;l.payload=function(){return c(f)},l.callback=function(){dk(e),dK(e,t)}}var v=e.stateNode;return v!==null&&typeof v.componentDidCatch==\"function\"&&(l.callback=function(){dk(e),dK(e,t),typeof c!=\"function\"&&FO(this);var T=t.value,w=t.stack;this.componentDidCatch(T,{componentStack:w!==null?w:\"\"}),typeof c!=\"function\"&&(yr(e.lanes,ct)||m(\"%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.\",vt(e)||\"Unknown\"))}),l}function tR(e,t,r){var l=e.pingCache,c;if(l===null?(l=e.pingCache=new Bj,c=new Set,l.set(t,c)):(c=l.get(t),c===void 0&&(c=new Set,l.set(t,c))),!c.has(r)){c.add(r);var f=bO.bind(null,e,t,r);Ur&&O0(e,r),t.then(f,f)}}function Qj(e,t,r,l){var c=e.updateQueue;if(c===null){var f=new Set;f.add(r),e.updateQueue=f}else c.add(r)}function Dj(e,t){var r=e.tag;if((e.mode&Et)===tt&&(r===K||r===Y||r===ye)){var l=e.alternate;l?(e.updateQueue=l.updateQueue,e.memoizedState=l.memoizedState,e.lanes=l.lanes):(e.updateQueue=null,e.memoizedState=null)}}function nR(e){var t=e;do{if(t.tag===te&&Aj(t))return t;t=t.return}while(t!==null);return null}function aR(e,t,r,l,c){if((e.mode&Et)===tt){if(e===t)e.flags|=Aa;else{if(e.flags|=_e,r.flags|=zd,r.flags&=-52805,r.tag===F){var f=r.alternate;if(f===null)r.tag=Pe;else{var v=Ts(cn,ct);v.tag=Ag,ku(r,v,ct)}}r.lanes=bt(r.lanes,ct)}return e}return e.flags|=Aa,e.lanes=c,e}function jj(e,t,r,l,c){if(r.flags|=dc,Ur&&O0(e,c),l!==null&&typeof l==\"object\"&&typeof l.then==\"function\"){var f=l;Dj(r),tr()&&r.mode&Et&&HC();var v=nR(t);if(v!==null){v.flags&=~Va,aR(v,t,r,e,c),v.mode&Et&&tR(e,f,c),Qj(v,e,f);return}else{if(!iA(c)){tR(e,f,c),WK();return}var x=new Error(\"A component suspended while responding to synchronous input. This will cause the UI to be replaced with a loading indicator. To fix, updates that suspend should be wrapped with startTransition.\");l=x}}else if(tr()&&r.mode&Et){HC();var T=nR(t);if(T!==null){(T.flags&Aa)===et&&(T.flags|=Va),aR(T,t,r,e,c),ry(nd(l,r));return}}l=nd(l,r),AO(l);var w=t;do{switch(w.tag){case b:{var M=l;w.flags|=Aa;var H=Cc(c);w.lanes=bt(w.lanes,H);var J=eR(w,M,H);Uy(w,J);return}case F:var ne=l,ie=w.type,se=w.stateNode;if((w.flags&_e)===et&&(typeof ie.getDerivedStateFromError==\"function\"||se!==null&&typeof se.componentDidCatch==\"function\"&&!nk(se))){w.flags|=Aa;var Be=Cc(c);w.lanes=bt(w.lanes,Be);var rt=pK(w,ne,Be);Uy(w,rt);return}break}w=w.return}while(w!==null)}function Lj(){return null}var x0=u.ReactCurrentOwner,Qo=!1,fK,F0,mK,hK,AK,ad,gK,Wg,T0;fK={},F0={},mK={},hK={},AK={},ad=!1,gK={},Wg={},T0={};function Vr(e,t,r,l){e===null?t.child=ob(t,null,r,l):t.child=Pp(t,e.child,r,l)}function Oj(e,t,r,l){t.child=Pp(t,e.child,null,l),t.child=Pp(t,null,r,l)}function rR(e,t,r,l,c){if(t.type!==t.elementType){var f=r.propTypes;f&&ko(f,l,\"prop\",qt(r))}var v=r.render,x=t.ref,T,w;Xp(t,c),Dr(t);{if(x0.current=t,ua(!0),T=af(e,t,v,l,x,c),w=rf(),t.mode&ln){Mn(!0);try{T=af(e,t,v,l,x,c),w=rf()}finally{Mn(!1)}}ua(!1)}return jr(),e!==null&&!Qo?(Sb(e,t,c),Cs(e,t,c)):(tr()&&w&&_S(t),t.flags|=Ci,Vr(e,t,T,c),t.child)}function iR(e,t,r,l,c){if(e===null){var f=r.type;if(GO(f)&&r.compare===null&&r.defaultProps===void 0){var v=f;return v=ff(f),t.tag=ye,t.type=v,SK(t,f),oR(e,t,v,l,c)}{var x=f.propTypes;if(x&&ko(x,l,\"prop\",qt(f)),r.defaultProps!==void 0){var T=qt(f)||\"Unknown\";T0[T]||(m(\"%s: Support for defaultProps will be removed from memo components in a future major release. Use JavaScript default parameters instead.\",T),T0[T]=!0)}}var w=nx(r.type,null,l,t,t.mode,c);return w.ref=t.ref,w.return=t,t.child=w,w}{var M=r.type,H=M.propTypes;H&&ko(H,l,\"prop\",qt(M))}var J=e.child,ne=CK(e,c);if(!ne){var ie=J.memoizedProps,se=r.compare;if(se=se!==null?se:We,se(ie,l)&&e.ref===t.ref)return Cs(e,t,c)}t.flags|=Ci;var Be=sd(J,l);return Be.ref=t.ref,Be.return=t,t.child=Be,Be}function oR(e,t,r,l,c){if(t.type!==t.elementType){var f=t.elementType;if(f.$$typeof===Ut){var v=f,x=v._payload,T=v._init;try{f=T(x)}catch(H){f=null}var w=f&&f.propTypes;w&&ko(w,l,\"prop\",qt(f))}}if(e!==null){var M=e.memoizedProps;if(We(M,l)&&e.ref===t.ref&&t.type===e.type)if(Qo=!1,t.pendingProps=l=M,CK(e,c))(e.flags&zd)!==et&&(Qo=!0);else return t.lanes=e.lanes,Cs(e,t,c)}return vK(e,t,r,l,c)}function lR(e,t,r){var l=t.pendingProps,c=l.children,f=e!==null?e.memoizedState:null;if(l.mode===\"hidden\"||fe)if((t.mode&Et)===tt){var v={baseLanes:Ae,cachePool:null,transitions:null};t.memoizedState=v,rv(t,r)}else if(yr(r,Sr)){var H={baseLanes:Ae,cachePool:null,transitions:null};t.memoizedState=H;var J=f!==null?f.baseLanes:r;rv(t,J)}else{var x=null,T;if(f!==null){var w=f.baseLanes;T=bt(w,r)}else T=r;t.lanes=t.childLanes=Sr;var M={baseLanes:T,cachePool:x,transitions:null};return t.memoizedState=M,t.updateQueue=null,rv(t,T),null}else{var ne;f!==null?(ne=bt(f.baseLanes,r),t.memoizedState=null):ne=r,rv(t,ne)}return Vr(e,t,c,r),t.child}function Vj(e,t,r){var l=t.pendingProps;return Vr(e,t,l,r),t.child}function Ij(e,t,r){var l=t.pendingProps.children;return Vr(e,t,l,r),t.child}function qj(e,t,r){{t.flags|=jt;{var l=t.stateNode;l.effectDuration=0,l.passiveEffectDuration=0}}var c=t.pendingProps,f=c.children;return Vr(e,t,f,r),t.child}function sR(e,t){var r=t.ref;(e===null&&r!==null||e!==null&&e.ref!==r)&&(t.flags|=On,t.flags|=cu)}function vK(e,t,r,l,c){if(t.type!==t.elementType){var f=r.propTypes;f&&ko(f,l,\"prop\",qt(r))}var v;{var x=Gp(t,r,!0);v=Wp(t,x)}var T,w;Xp(t,c),Dr(t);{if(x0.current=t,ua(!0),T=af(e,t,r,l,v,c),w=rf(),t.mode&ln){Mn(!0);try{T=af(e,t,r,l,v,c),w=rf()}finally{Mn(!1)}}ua(!1)}return jr(),e!==null&&!Qo?(Sb(e,t,c),Cs(e,t,c)):(tr()&&w&&_S(t),t.flags|=Ci,Vr(e,t,T,c),t.child)}function uR(e,t,r,l,c){{switch(iV(t)){case!1:{var f=t.stateNode,v=t.type,x=new v(t.memoizedProps,f.context),T=x.state;f.updater.enqueueSetState(f,T,null);break}case!0:{t.flags|=_e,t.flags|=Aa;var w=new Error(\"Simulated error coming from DevTools\"),M=Cc(c);t.lanes=bt(t.lanes,M);var H=pK(t,nd(w,t),M);Uy(t,H);break}}if(t.type!==t.elementType){var J=r.propTypes;J&&ko(J,l,\"prop\",qt(r))}}var ne;Sl(r)?(ne=!0,ag(t)):ne=!1,Xp(t,c);var ie=t.stateNode,se;ie===null?(zg(e,t),_b(t,r,l),uK(t,r,l,c),se=!0):e===null?se=wj(t,r,l,c):se=Ej(e,t,r,l,c);var Be=UK(e,t,r,se,ne,c);{var rt=t.stateNode;se&&rt.props!==l&&(ad||m(\"It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.\",vt(t)||\"a component\"),ad=!0)}return Be}function UK(e,t,r,l,c,f){sR(e,t);var v=(t.flags&_e)!==et;if(!l&&!v)return c&&GC(t,r,!1),Cs(e,t,f);var x=t.stateNode;x0.current=t;var T;if(v&&typeof r.getDerivedStateFromError!=\"function\")T=null,zb();else{Dr(t);{if(ua(!0),T=x.render(),t.mode&ln){Mn(!0);try{x.render()}finally{Mn(!1)}}ua(!1)}jr()}return t.flags|=Ci,e!==null&&v?Oj(e,t,T,f):Vr(e,t,T,f),t.memoizedState=x.state,c&&GC(t,r,!0),t.child}function cR(e){var t=e.stateNode;t.pendingContext?qC(e,t.pendingContext,t.pendingContext!==t.context):t.context&&qC(e,t.context,!1),Sy(e,t.containerInfo)}function Yj(e,t,r){if(cR(t),e===null)throw new Error(\"Should have a current fiber. This is a bug in React.\");var l=t.pendingProps,c=t.memoizedState,f=c.element;fb(e,t),Sg(t,l,null,r);var v=t.memoizedState;t.stateNode;var x=v.element;if(c.isDehydrated){var T={element:x,isDehydrated:!1,cache:v.cache,pendingSuspenseBoundaries:v.pendingSuspenseBoundaries,transitions:v.transitions},w=t.updateQueue;if(w.baseState=T,t.memoizedState=T,t.flags&Va){var M=nd(new Error(\"There was an error while hydrating. Because the error happened outside of a Suspense boundary, the entire root will switch to client rendering.\"),t);return dR(e,t,x,r,M)}else if(x!==f){var H=nd(new Error(\"This root received an early update, before anything was able hydrate. Switched the entire root to client rendering.\"),t);return dR(e,t,x,r,H)}else{JD(t);var J=ob(t,null,x,r);t.child=J;for(var ne=J;ne;)ne.flags=ne.flags&~En|Ar,ne=ne.sibling}}else{if(Hp(),x===f)return Cs(e,t,r);Vr(e,t,x,r)}return t.child}function dR(e,t,r,l,c){return Hp(),ry(c),t.flags|=Va,Vr(e,t,r,l),t.child}function Gj(e,t,r){gb(t),e===null&&ay(t);var l=t.type,c=t.pendingProps,f=e!==null?e.memoizedProps:null,v=c.children,x=LS(l,c);return x?v=null:f!==null&&LS(l,f)&&(t.flags|=ni),sR(e,t),Vr(e,t,v,r),t.child}function Wj(e,t){return e===null&&ay(t),null}function Jj(e,t,r,l){zg(e,t);var c=t.pendingProps,f=r,v=f._payload,x=f._init,T=x(v);t.type=T;var w=t.tag=WO(T),M=Bo(T,c),H;switch(w){case K:return SK(t,T),t.type=T=ff(T),H=vK(null,t,T,M,l),H;case F:return t.type=T=ZK(T),H=uR(null,t,T,M,l),H;case Y:return t.type=T=XK(T),H=rR(null,t,T,M,l),H;case me:{if(t.type!==t.elementType){var J=T.propTypes;J&&ko(J,M,\"prop\",qt(T))}return H=iR(null,t,T,Bo(T.type,M),l),H}}var ne=\"\";throw T!==null&&typeof T==\"object\"&&T.$$typeof===Ut&&(ne=\" Did you wrap a component in React.lazy() more than once?\"),new Error(\"Element type is invalid. Received a promise that resolves to: \"+T+\". \"+(\"Lazy element type must resolve to a class or function.\"+ne))}function zj(e,t,r,l,c){zg(e,t),t.tag=F;var f;return Sl(r)?(f=!0,ag(t)):f=!1,Xp(t,c),_b(t,r,l),uK(t,r,l,c),UK(null,t,r,!0,f,c)}function Hj(e,t,r,l){zg(e,t);var c=t.pendingProps,f;{var v=Gp(t,r,!1);f=Wp(t,v)}Xp(t,l);var x,T;Dr(t);{if(r.prototype&&typeof r.prototype.render==\"function\"){var w=qt(r)||\"Unknown\";fK[w]||(m(\"The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.\",w,w),fK[w]=!0)}t.mode&ln&&wo.recordLegacyContextWarning(t,null),ua(!0),x0.current=t,x=af(null,t,r,c,f,l),T=rf(),ua(!1)}if(jr(),t.flags|=Ci,typeof x==\"object\"&&x!==null&&typeof x.render==\"function\"&&x.$$typeof===void 0){var M=qt(r)||\"Unknown\";F0[M]||(m(\"The <%s /> component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can't use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don't use an arrow function since it cannot be called with `new` by React.\",M,M,M),F0[M]=!0)}if(typeof x==\"object\"&&x!==null&&typeof x.render==\"function\"&&x.$$typeof===void 0){{var H=qt(r)||\"Unknown\";F0[H]||(m(\"The <%s /> component appears to be a function component that returns a class instance. Change %s to a class that extends React.Component instead. If you can't use a class try assigning the prototype on the function as a workaround. `%s.prototype = React.Component.prototype`. Don't use an arrow function since it cannot be called with `new` by React.\",H,H,H),F0[H]=!0)}t.tag=F,t.memoizedState=null,t.updateQueue=null;var J=!1;return Sl(r)?(J=!0,ag(t)):J=!1,t.memoizedState=x.state!==null&&x.state!==void 0?x.state:null,vy(t),Xb(t,x),uK(t,r,c,l),UK(null,t,r,!0,J,l)}else{if(t.tag=K,t.mode&ln){Mn(!0);try{x=af(null,t,r,c,f,l),T=rf()}finally{Mn(!1)}}return tr()&&T&&_S(t),Vr(null,t,x,l),SK(t,r),t.child}}function SK(e,t){{if(t&&t.childContextTypes&&m(\"%s(...): childContextTypes cannot be defined on a function component.\",t.displayName||t.name||\"Component\"),e.ref!==null){var r=\"\",l=Ha();l&&(r+=`\n\nCheck the render method of \\``+l+\"`.\");var c=l||\"\",f=e._debugSource;f&&(c=f.fileName+\":\"+f.lineNumber),AK[c]||(AK[c]=!0,m(\"Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()?%s\",r))}if(t.defaultProps!==void 0){var v=qt(t)||\"Unknown\";T0[v]||(m(\"%s: Support for defaultProps will be removed from function components in a future major release. Use JavaScript default parameters instead.\",v),T0[v]=!0)}if(typeof t.getDerivedStateFromProps==\"function\"){var x=qt(t)||\"Unknown\";hK[x]||(m(\"%s: Function components do not support getDerivedStateFromProps.\",x),hK[x]=!0)}if(typeof t.contextType==\"object\"&&t.contextType!==null){var T=qt(t)||\"Unknown\";mK[T]||(m(\"%s: Function components do not support contextType.\",T),mK[T]=!0)}}}var yK={dehydrated:null,treeContext:null,retryLane:Gt};function KK(e){return{baseLanes:e,cachePool:Lj(),transitions:null}}function Pj(e,t){var r=null;return{baseLanes:bt(e.baseLanes,t),cachePool:r,transitions:e.transitions}}function Zj(e,t,r,l){if(t!==null){var c=t.memoizedState;if(c===null)return!1}return xy(e,m0)}function Xj(e,t){return bc(e.childLanes,t)}function pR(e,t,r){var l=t.pendingProps;oV(t)&&(t.flags|=_e);var c=Eo.current,f=!1,v=(t.flags&_e)!==et;if(v||Zj(c,e)?(f=!0,t.flags&=~_e):(e===null||e.memoizedState!==null)&&(c=hj(c,Ub)),c=$p(c),wu(t,c),e===null){ay(t);var x=t.memoizedState;if(x!==null){var T=x.dehydrated;if(T!==null)return nL(t,T)}var w=l.children,M=l.fallback;if(f){var H=_j(t,w,M,r),J=t.child;return J.memoizedState=KK(r),t.memoizedState=yK,H}else return xK(t,w)}else{var ne=e.memoizedState;if(ne!==null){var ie=ne.dehydrated;if(ie!==null)return aL(e,t,v,l,ie,ne,r)}if(f){var se=l.fallback,Be=l.children,rt=eL(e,t,Be,se,r),Xe=t.child,Vt=e.child.memoizedState;return Xe.memoizedState=Vt===null?KK(r):Pj(Vt,r),Xe.childLanes=Xj(e,r),t.memoizedState=yK,rt}else{var Dt=l.children,X=$j(e,t,Dt,r);return t.memoizedState=null,X}}}function xK(e,t,r){var l=e.mode,c={mode:\"visible\",children:t},f=FK(c,l);return f.return=e,e.child=f,f}function _j(e,t,r,l){var c=e.mode,f=e.child,v={mode:\"hidden\",children:t},x,T;return(c&Et)===tt&&f!==null?(x=f,x.childLanes=Ae,x.pendingProps=v,e.mode&zt&&(x.actualDuration=0,x.actualStartTime=-1,x.selfBaseDuration=0,x.treeBaseDuration=0),T=Ou(r,c,l,null)):(x=FK(v,c),T=Ou(r,c,l,null)),x.return=e,T.return=e,x.sibling=T,e.child=x,T}function FK(e,t,r){return fk(e,t,Ae,null)}function fR(e,t){return sd(e,t)}function $j(e,t,r,l){var c=e.child,f=c.sibling,v=fR(c,{mode:\"visible\",children:r});if((t.mode&Et)===tt&&(v.lanes=l),v.return=t,v.sibling=null,f!==null){var x=t.deletions;x===null?(t.deletions=[f],t.flags|=ti):x.push(f)}return t.child=v,v}function eL(e,t,r,l,c){var f=t.mode,v=e.child,x=v.sibling,T={mode:\"hidden\",children:r},w;if((f&Et)===tt&&t.child!==v){var M=t.child;w=M,w.childLanes=Ae,w.pendingProps=T,t.mode&zt&&(w.actualDuration=0,w.actualStartTime=-1,w.selfBaseDuration=v.selfBaseDuration,w.treeBaseDuration=v.treeBaseDuration),t.deletions=null}else w=fR(v,T),w.subtreeFlags=v.subtreeFlags&$n;var H;return x!==null?H=sd(x,l):(H=Ou(l,f,c,null),H.flags|=En),H.return=t,w.return=t,w.sibling=H,t.child=w,H}function Jg(e,t,r,l){l!==null&&ry(l),Pp(t,e.child,null,r);var c=t.pendingProps,f=c.children,v=xK(t,f);return v.flags|=En,t.memoizedState=null,v}function tL(e,t,r,l,c){var f=t.mode,v={mode:\"visible\",children:r},x=FK(v,f),T=Ou(l,f,c,null);return T.flags|=En,x.return=t,T.return=t,x.sibling=T,t.child=x,(t.mode&Et)!==tt&&Pp(t,e.child,null,c),T}function nL(e,t,r){return(e.mode&Et)===tt?(m(\"Cannot hydrate Suspense in legacy mode. Switch from ReactDOM.hydrate(element, container) to ReactDOMClient.hydrateRoot(container, <App />).render(element) or remove the Suspense components from the server rendered components.\"),e.lanes=ct):qS(t)?e.lanes=Ia:e.lanes=Sr,null}function aL(e,t,r,l,c,f,v){if(r)if(t.flags&Va){t.flags&=~Va;var X=cK(new Error(\"There was an error while hydrating this Suspense boundary. Switched to client rendering.\"));return Jg(e,t,v,X)}else{if(t.memoizedState!==null)return t.child=e.child,t.flags|=_e,null;var ue=l.children,_=l.fallback,Fe=tL(e,t,ue,_,v),Le=t.child;return Le.memoizedState=KK(v),t.memoizedState=yK,Fe}else{if(GD(),(t.mode&Et)===tt)return Jg(e,t,v,null);if(qS(c)){var x,T,w;{var M=lD(c);x=M.digest,T=M.message,w=M.stack}var H;T?H=new Error(T):H=new Error(\"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering.\");var J=cK(H,x,w);return Jg(e,t,v,J)}var ne=yr(v,e.childLanes);if(Qo||ne){var ie=av();if(ie!==null){var se=Rm(ie,v);if(se!==Gt&&se!==f.retryLane){f.retryLane=se;var Be=cn;di(e,se),Da(ie,e,se,Be)}}WK();var rt=cK(new Error(\"This Suspense boundary received an update before it finished hydrating. This caused the boundary to switch to client rendering. The usual way to fix this is to wrap the original update in startTransition.\"));return Jg(e,t,v,rt)}else if(DC(c)){t.flags|=_e,t.child=e.child;var Xe=RO.bind(null,e);return sD(c,Xe),null}else{zD(t,c,f.treeContext);var Vt=l.children,Dt=xK(t,Vt);return Dt.flags|=Ar,Dt}}}function mR(e,t,r){e.lanes=bt(e.lanes,t);var l=e.alternate;l!==null&&(l.lanes=bt(l.lanes,t)),my(e.return,t,r)}function rL(e,t,r){for(var l=t;l!==null;){if(l.tag===te){var c=l.memoizedState;c!==null&&mR(l,r,e)}else if(l.tag===gt)mR(l,r,e);else if(l.child!==null){l.child.return=l,l=l.child;continue}if(l===e)return;for(;l.sibling===null;){if(l.return===null||l.return===e)return;l=l.return}l.sibling.return=l.return,l=l.sibling}}function iL(e){for(var t=e,r=null;t!==null;){var l=t.alternate;l!==null&&Fg(l)===null&&(r=t),t=t.sibling}return r}function oL(e){if(e!==void 0&&e!==\"forwards\"&&e!==\"backwards\"&&e!==\"together\"&&!gK[e])if(gK[e]=!0,typeof e==\"string\")switch(e.toLowerCase()){case\"together\":case\"forwards\":case\"backwards\":{m('\"%s\" is not a valid value for revealOrder on <SuspenseList />. Use lowercase \"%s\" instead.',e,e.toLowerCase());break}case\"forward\":case\"backward\":{m('\"%s\" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use \"%ss\" instead.',e,e.toLowerCase());break}default:m('\"%s\" is not a supported revealOrder on <SuspenseList />. Did you mean \"together\", \"forwards\" or \"backwards\"?',e);break}else m('%s is not a supported value for revealOrder on <SuspenseList />. Did you mean \"together\", \"forwards\" or \"backwards\"?',e)}function lL(e,t){e!==void 0&&!Wg[e]&&(e!==\"collapsed\"&&e!==\"hidden\"?(Wg[e]=!0,m('\"%s\" is not a supported value for tail on <SuspenseList />. Did you mean \"collapsed\" or \"hidden\"?',e)):t!==\"forwards\"&&t!==\"backwards\"&&(Wg[e]=!0,m('<SuspenseList tail=\"%s\" /> is only valid if revealOrder is \"forwards\" or \"backwards\". Did you mean to specify revealOrder=\"forwards\"?',e)))}function hR(e,t){{var r=Nt(e),l=!r&&typeof Ft(e)==\"function\";if(r||l){var c=r?\"array\":\"iterable\";return m(\"A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>\",c,t,c),!1}}return!0}function sL(e,t){if((t===\"forwards\"||t===\"backwards\")&&e!==void 0&&e!==null&&e!==!1)if(Nt(e)){for(var r=0;r<e.length;r++)if(!hR(e[r],r))return}else{var l=Ft(e);if(typeof l==\"function\"){var c=l.call(e);if(c)for(var f=c.next(),v=0;!f.done;f=c.next()){if(!hR(f.value,v))return;v++}}else m('A single row was passed to a <SuspenseList revealOrder=\"%s\" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?',t)}}function TK(e,t,r,l,c){var f=e.memoizedState;f===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:l,tail:r,tailMode:c}:(f.isBackwards=t,f.rendering=null,f.renderingStartTime=0,f.last=l,f.tail=r,f.tailMode=c)}function AR(e,t,r){var l=t.pendingProps,c=l.revealOrder,f=l.tail,v=l.children;oL(c),lL(f,c),sL(v,c),Vr(e,t,v,r);var x=Eo.current,T=xy(x,m0);if(T)x=Fy(x,m0),t.flags|=_e;else{var w=e!==null&&(e.flags&_e)!==et;w&&rL(t,t.child,r),x=$p(x)}if(wu(t,x),(t.mode&Et)===tt)t.memoizedState=null;else switch(c){case\"forwards\":{var M=iL(t.child),H;M===null?(H=t.child,t.child=null):(H=M.sibling,M.sibling=null),TK(t,!1,H,M,f);break}case\"backwards\":{var J=null,ne=t.child;for(t.child=null;ne!==null;){var ie=ne.alternate;if(ie!==null&&Fg(ie)===null){t.child=ne;break}var se=ne.sibling;ne.sibling=J,J=ne,ne=se}TK(t,!0,J,null,f);break}case\"together\":{TK(t,!1,null,null,void 0);break}default:t.memoizedState=null}return t.child}function uL(e,t,r){Sy(t,t.stateNode.containerInfo);var l=t.pendingProps;return e===null?t.child=Pp(t,null,l,r):Vr(e,t,l,r),t.child}var gR=!1;function cL(e,t,r){var l=t.type,c=l._context,f=t.pendingProps,v=t.memoizedProps,x=f.value;{\"value\"in f||gR||(gR=!0,m(\"The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?\"));var T=t.type.propTypes;T&&ko(T,f,\"prop\",\"Context.Provider\")}if(ub(t,c,x),v!==null){var w=v.value;if(Se(w,x)){if(v.children===f.children&&!tg())return Cs(e,t,r)}else oj(t,c,r)}var M=f.children;return Vr(e,t,M,r),t.child}var vR=!1;function dL(e,t,r){var l=t.type;l._context===void 0?l!==l.Consumer&&(vR||(vR=!0,m(\"Rendering <Context> directly is not supported and will be removed in a future major release. Did you mean to render <Context.Consumer> instead?\"))):l=l._context;var c=t.pendingProps,f=c.children;typeof f!=\"function\"&&m(\"A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it.\"),Xp(t,r);var v=Sa(l);Dr(t);var x;return x0.current=t,ua(!0),x=f(v),ua(!1),jr(),t.flags|=Ci,Vr(e,t,x,r),t.child}function C0(){Qo=!0}function zg(e,t){(t.mode&Et)===tt&&e!==null&&(e.alternate=null,t.alternate=null,t.flags|=En)}function Cs(e,t,r){return e!==null&&(t.dependencies=e.dependencies),zb(),L0(t.lanes),yr(r,t.childLanes)?(rj(e,t),t.child):null}function pL(e,t,r){{var l=t.return;if(l===null)throw new Error(\"Cannot swap the root fiber.\");if(e.alternate=null,t.alternate=null,r.index=t.index,r.sibling=t.sibling,r.return=t.return,r.ref=t.ref,t===l.child)l.child=r;else{var c=l.child;if(c===null)throw new Error(\"Expected parent to have a child.\");for(;c.sibling!==t;)if(c=c.sibling,c===null)throw new Error(\"Expected to find the previous sibling.\");c.sibling=r}var f=l.deletions;return f===null?(l.deletions=[e],l.flags|=ti):f.push(e),r.flags|=En,r}}function CK(e,t){var r=e.lanes;return!!yr(r,t)}function fL(e,t,r){switch(t.tag){case b:cR(t),t.stateNode,Hp();break;case E:gb(t);break;case F:{var l=t.type;Sl(l)&&ag(t);break}case N:Sy(t,t.stateNode.containerInfo);break;case W:{var c=t.memoizedProps.value,f=t.type._context;ub(t,f,c);break}case P:{var v=yr(r,t.childLanes);v&&(t.flags|=jt);{var x=t.stateNode;x.effectDuration=0,x.passiveEffectDuration=0}}break;case te:{var T=t.memoizedState;if(T!==null){if(T.dehydrated!==null)return wu(t,$p(Eo.current)),t.flags|=_e,null;var w=t.child,M=w.childLanes;if(yr(r,M))return pR(e,t,r);wu(t,$p(Eo.current));var H=Cs(e,t,r);return H!==null?H.sibling:null}else wu(t,$p(Eo.current));break}case gt:{var J=(e.flags&_e)!==et,ne=yr(r,t.childLanes);if(J){if(ne)return AR(e,t,r);t.flags|=_e}var ie=t.memoizedState;if(ie!==null&&(ie.rendering=null,ie.tail=null,ie.lastEffect=null),wu(t,Eo.current),ne)break;return null}case qe:case dt:return t.lanes=Ae,lR(e,t,r)}return Cs(e,t,r)}function UR(e,t,r){if(t._debugNeedsRemount&&e!==null)return pL(e,t,nx(t.type,t.key,t.pendingProps,t._debugOwner||null,t.mode,t.lanes));if(e!==null){var l=e.memoizedProps,c=t.pendingProps;if(l!==c||tg()||t.type!==e.type)Qo=!0;else{var f=CK(e,r);if(!f&&(t.flags&_e)===et)return Qo=!1,fL(e,t,r);(e.flags&zd)!==et?Qo=!0:Qo=!1}}else if(Qo=!1,tr()&&LD(t)){var v=t.index,x=OD();zC(t,x,v)}switch(t.lanes=Ae,t.tag){case R:return Hj(e,t,t.type,r);case be:{var T=t.elementType;return Jj(e,t,T,r)}case K:{var w=t.type,M=t.pendingProps,H=t.elementType===w?M:Bo(w,M);return vK(e,t,w,H,r)}case F:{var J=t.type,ne=t.pendingProps,ie=t.elementType===J?ne:Bo(J,ne);return uR(e,t,J,ie,r)}case b:return Yj(e,t,r);case E:return Gj(e,t,r);case O:return Wj(e,t);case te:return pR(e,t,r);case N:return uL(e,t,r);case Y:{var se=t.type,Be=t.pendingProps,rt=t.elementType===se?Be:Bo(se,Be);return rR(e,t,se,rt,r)}case B:return Vj(e,t,r);case L:return Ij(e,t,r);case P:return qj(e,t,r);case W:return cL(e,t,r);case q:return dL(e,t,r);case me:{var Xe=t.type,Vt=t.pendingProps,Dt=Bo(Xe,Vt);if(t.type!==t.elementType){var X=Xe.propTypes;X&&ko(X,Dt,\"prop\",qt(Xe))}return Dt=Bo(Xe.type,Dt),iR(e,t,Xe,Dt,r)}case ye:return oR(e,t,t.type,t.pendingProps,r);case Pe:{var ue=t.type,_=t.pendingProps,Fe=t.elementType===ue?_:Bo(ue,_);return zj(e,t,ue,Fe,r)}case gt:return AR(e,t,r);case Ce:break;case qe:return lR(e,t,r)}throw new Error(\"Unknown unit of work tag (\"+t.tag+\"). This error is likely caused by a bug in React. Please file an issue.\")}function of(e){e.flags|=jt}function SR(e){e.flags|=On,e.flags|=cu}var yR,bK,KR,xR;yR=function(e,t,r,l){for(var c=t.child;c!==null;){if(c.tag===E||c.tag===O)Q4(e,c.stateNode);else if(c.tag!==N){if(c.child!==null){c.child.return=c,c=c.child;continue}}if(c===t)return;for(;c.sibling===null;){if(c.return===null||c.return===t)return;c=c.return}c.sibling.return=c.return,c=c.sibling}},bK=function(e,t){},KR=function(e,t,r,l,c){var f=e.memoizedProps;if(f!==l){var v=t.stateNode,x=yy(),T=j4(v,r,f,l,c,x);t.updateQueue=T,T&&of(t)}},xR=function(e,t,r,l){r!==l&&of(t)};function b0(e,t){if(!tr())switch(e.tailMode){case\"hidden\":{for(var r=e.tail,l=null;r!==null;)r.alternate!==null&&(l=r),r=r.sibling;l===null?e.tail=null:l.sibling=null;break}case\"collapsed\":{for(var c=e.tail,f=null;c!==null;)c.alternate!==null&&(f=c),c=c.sibling;f===null?!t&&e.tail!==null?e.tail.sibling=null:e.tail=null:f.sibling=null;break}}}function ar(e){var t=e.alternate!==null&&e.alternate.child===e.child,r=Ae,l=et;if(t){if((e.mode&zt)!==tt){for(var T=e.selfBaseDuration,w=e.child;w!==null;)r=bt(r,bt(w.lanes,w.childLanes)),l|=w.subtreeFlags&$n,l|=w.flags&$n,T+=w.treeBaseDuration,w=w.sibling;e.treeBaseDuration=T}else for(var M=e.child;M!==null;)r=bt(r,bt(M.lanes,M.childLanes)),l|=M.subtreeFlags&$n,l|=M.flags&$n,M.return=e,M=M.sibling;e.subtreeFlags|=l}else{if((e.mode&zt)!==tt){for(var c=e.actualDuration,f=e.selfBaseDuration,v=e.child;v!==null;)r=bt(r,bt(v.lanes,v.childLanes)),l|=v.subtreeFlags,l|=v.flags,c+=v.actualDuration,f+=v.treeBaseDuration,v=v.sibling;e.actualDuration=c,e.treeBaseDuration=f}else for(var x=e.child;x!==null;)r=bt(r,bt(x.lanes,x.childLanes)),l|=x.subtreeFlags,l|=x.flags,x.return=e,x=x.sibling;e.subtreeFlags|=l}return e.childLanes=r,t}function mL(e,t,r){if(_D()&&(t.mode&Et)!==tt&&(t.flags&_e)===et)return eb(t),Hp(),t.flags|=Va|dc|Aa,!1;var l=sg(t);if(r!==null&&r.dehydrated!==null)if(e===null){if(!l)throw new Error(\"A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.\");if(ZD(t),ar(t),(t.mode&zt)!==tt){var c=r!==null;if(c){var f=t.child;f!==null&&(t.treeBaseDuration-=f.treeBaseDuration)}}return!1}else{if(Hp(),(t.flags&_e)===et&&(t.memoizedState=null),t.flags|=jt,ar(t),(t.mode&zt)!==tt){var v=r!==null;if(v){var x=t.child;x!==null&&(t.treeBaseDuration-=x.treeBaseDuration)}}return!1}else return tb(),!0}function FR(e,t,r){var l=t.pendingProps;switch($S(t),t.tag){case R:case be:case ye:case K:case Y:case B:case L:case P:case q:case me:return ar(t),null;case F:{var c=t.type;return Sl(c)&&ng(t),ar(t),null}case b:{var f=t.stateNode;if(_p(t),PS(t),Cy(),f.pendingContext&&(f.context=f.pendingContext,f.pendingContext=null),e===null||e.child===null){var v=sg(t);if(v)of(t);else if(e!==null){var x=e.memoizedState;(!x.isDehydrated||(t.flags&Va)!==et)&&(t.flags|=ca,tb())}}return bK(e,t),ar(t),null}case E:{Ky(t);var T=Ab(),w=t.type;if(e!==null&&t.stateNode!=null)KR(e,t,w,l,T),e.ref!==t.ref&&SR(t);else{if(!l){if(t.stateNode===null)throw new Error(\"We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.\");return ar(t),null}var M=yy(),H=sg(t);if(H)HD(t,T,M)&&of(t);else{var J=B4(w,l,T,M,t);yR(J,t,!1,!1),t.stateNode=J,D4(J,w,l,T)&&of(t)}t.ref!==null&&SR(t)}return ar(t),null}case O:{var ne=l;if(e&&t.stateNode!=null){var ie=e.memoizedProps;xR(e,t,ie,ne)}else{if(typeof ne!=\"string\"&&t.stateNode===null)throw new Error(\"We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.\");var se=Ab(),Be=yy(),rt=sg(t);rt?PD(t)&&of(t):t.stateNode=L4(ne,se,Be,t)}return ar(t),null}case te:{ef(t);var Xe=t.memoizedState;if(e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){var Vt=mL(e,t,Xe);if(!Vt)return t.flags&Aa?t:null}if((t.flags&_e)!==et)return t.lanes=r,(t.mode&zt)!==tt&&Xy(t),t;var Dt=Xe!==null,X=e!==null&&e.memoizedState!==null;if(Dt!==X&&Dt){var ue=t.child;if(ue.flags|=_n,(t.mode&Et)!==tt){var _=e===null&&(t.memoizedProps.unstable_avoidThisFallback!==!0||!0);_||xy(Eo.current,Ub)?hO():WK()}}var Fe=t.updateQueue;if(Fe!==null&&(t.flags|=jt),ar(t),(t.mode&zt)!==tt&&Dt){var Le=t.child;Le!==null&&(t.treeBaseDuration-=Le.treeBaseDuration)}return null}case N:return _p(t),bK(e,t),e===null&&wD(t.stateNode.containerInfo),ar(t),null;case W:var Qe=t.type._context;return fy(Qe,t),ar(t),null;case Pe:{var ft=t.type;return Sl(ft)&&ng(t),ar(t),null}case gt:{ef(t);var yt=t.memoizedState;if(yt===null)return ar(t),null;var un=(t.flags&_e)!==et,Zt=yt.rendering;if(Zt===null)if(un)b0(yt,!1);else{var fa=gO()&&(e===null||(e.flags&_e)===et);if(!fa)for(var Xt=t.child;Xt!==null;){var ia=Fg(Xt);if(ia!==null){un=!0,t.flags|=_e,b0(yt,!1);var Rr=ia.updateQueue;return Rr!==null&&(t.updateQueue=Rr,t.flags|=jt),t.subtreeFlags=et,ij(t,r),wu(t,Fy(Eo.current,m0)),t.child}Xt=Xt.sibling}yt.tail!==null&&da()>WR()&&(t.flags|=_e,un=!0,b0(yt,!1),t.lanes=Um)}else{if(!un){var sr=Fg(Zt);if(sr!==null){t.flags|=_e,un=!0;var Mi=sr.updateQueue;if(Mi!==null&&(t.updateQueue=Mi,t.flags|=jt),b0(yt,!0),yt.tail===null&&yt.tailMode===\"hidden\"&&!Zt.alternate&&!tr())return ar(t),null}else da()*2-yt.renderingStartTime>WR()&&r!==Sr&&(t.flags|=_e,un=!0,b0(yt,!1),t.lanes=Um)}if(yt.isBackwards)Zt.sibling=t.child,t.child=Zt;else{var Yr=yt.last;Yr!==null?Yr.sibling=Zt:t.child=Zt,yt.last=Zt}}if(yt.tail!==null){var Gr=yt.tail;yt.rendering=Gr,yt.tail=Gr.sibling,yt.renderingStartTime=da(),Gr.sibling=null;var kr=Eo.current;return un?kr=Fy(kr,m0):kr=$p(kr),wu(t,kr),Gr}return ar(t),null}case Ce:break;case qe:case dt:{GK(t);var ws=t.memoizedState,mf=ws!==null;if(e!==null){var Y0=e.memoizedState,Rl=Y0!==null;Rl!==mf&&!fe&&(t.flags|=_n)}return!mf||(t.mode&Et)===tt?ar(t):yr(bl,Sr)&&(ar(t),t.subtreeFlags&(En|jt)&&(t.flags|=_n)),null}case ke:return null;case pt:return null}throw new Error(\"Unknown unit of work tag (\"+t.tag+\"). This error is likely caused by a bug in React. Please file an issue.\")}function hL(e,t,r){switch($S(t),t.tag){case F:{var l=t.type;Sl(l)&&ng(t);var c=t.flags;return c&Aa?(t.flags=c&~Aa|_e,(t.mode&zt)!==tt&&Xy(t),t):null}case b:{t.stateNode,_p(t),PS(t),Cy();var f=t.flags;return(f&Aa)!==et&&(f&_e)===et?(t.flags=f&~Aa|_e,t):null}case E:return Ky(t),null;case te:{ef(t);var v=t.memoizedState;if(v!==null&&v.dehydrated!==null){if(t.alternate===null)throw new Error(\"Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.\");Hp()}var x=t.flags;return x&Aa?(t.flags=x&~Aa|_e,(t.mode&zt)!==tt&&Xy(t),t):null}case gt:return ef(t),null;case N:return _p(t),null;case W:var T=t.type._context;return fy(T,t),null;case qe:case dt:return GK(t),null;case ke:return null;default:return null}}function TR(e,t,r){switch($S(t),t.tag){case F:{var l=t.type.childContextTypes;l!=null&&ng(t);break}case b:{t.stateNode,_p(t),PS(t),Cy();break}case E:{Ky(t);break}case N:_p(t);break;case te:ef(t);break;case gt:ef(t);break;case W:var c=t.type._context;fy(c,t);break;case qe:case dt:GK(t);break}}var CR=null;CR=new Set;var Hg=!1,rr=!1,AL=typeof WeakSet==\"function\"?WeakSet:Set,Je=null,lf=null,sf=null;function gL(e){nl(null,function(){throw e}),cc()}var vL=function(e,t){if(t.props=e.memoizedProps,t.state=e.memoizedState,e.mode&zt)try{Tl(),t.componentWillUnmount()}finally{Fl(e)}else t.componentWillUnmount()};function bR(e,t){try{Bu(Na,e)}catch(r){Sn(e,t,r)}}function RK(e,t,r){try{vL(e,r)}catch(l){Sn(e,t,l)}}function UL(e,t,r){try{r.componentDidMount()}catch(l){Sn(e,t,l)}}function RR(e,t){try{NR(e)}catch(r){Sn(e,t,r)}}function uf(e,t){var r=e.ref;if(r!==null)if(typeof r==\"function\"){var l;try{if(Ve&&nt&&e.mode&zt)try{Tl(),l=r(null)}finally{Fl(e)}else l=r(null)}catch(c){Sn(e,t,c)}typeof l==\"function\"&&m(\"Unexpected return value from a callback ref in %s. A callback ref should not return a function.\",vt(e))}else r.current=null}function Pg(e,t,r){try{r()}catch(l){Sn(e,t,l)}}var kR=!1;function SL(e,t){E4(e.containerInfo),Je=t,yL();var r=kR;return kR=!1,r}function yL(){for(;Je!==null;){var e=Je,t=e.child;(e.subtreeFlags&rl)!==et&&t!==null?(t.return=e,Je=t):KL()}}function KL(){for(;Je!==null;){var e=Je;an(e);try{xL(e)}catch(r){Sn(e,e.return,r)}Un();var t=e.sibling;if(t!==null){t.return=e.return,Je=t;return}Je=e.return}}function xL(e){var t=e.alternate,r=e.flags;if((r&ca)!==et){switch(an(e),e.tag){case K:case Y:case ye:break;case F:{if(t!==null){var l=t.memoizedProps,c=t.memoizedState,f=e.stateNode;e.type===e.elementType&&!ad&&(f.props!==e.memoizedProps&&m(\"Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",vt(e)||\"instance\"),f.state!==e.memoizedState&&m(\"Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",vt(e)||\"instance\"));var v=f.getSnapshotBeforeUpdate(e.elementType===e.type?l:Bo(e.type,l),c);{var x=CR;v===void 0&&!x.has(e.type)&&(x.add(e.type),m(\"%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.\",vt(e)))}f.__reactInternalSnapshotBeforeUpdate=v}break}case b:{{var T=e.stateNode;aD(T.containerInfo)}break}case E:case O:case N:case Pe:break;default:throw new Error(\"This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.\")}Un()}}function Do(e,t,r){var l=t.updateQueue,c=l!==null?l.lastEffect:null;if(c!==null){var f=c.next,v=f;do{if((v.tag&e)===e){var x=v.destroy;v.destroy=void 0,x!==void 0&&((e&nr)!==pi?xo(t):(e&Na)!==pi&&fc(t),(e&yl)!==pi&&V0(!0),Pg(t,r,x),(e&yl)!==pi&&V0(!1),(e&nr)!==pi?sl():(e&Na)!==pi&&gm())}v=v.next}while(v!==f)}}function Bu(e,t){var r=t.updateQueue,l=r!==null?r.lastEffect:null;if(l!==null){var c=l.next,f=c;do{if((f.tag&e)===e){(e&nr)!==pi?Am(t):(e&Na)!==pi&&$d(t);var v=f.create;(e&yl)!==pi&&V0(!0),f.destroy=v(),(e&yl)!==pi&&V0(!1),(e&nr)!==pi?eA():(e&Na)!==pi&&tA();{var x=f.destroy;if(x!==void 0&&typeof x!=\"function\"){var T=void 0;(f.tag&Na)!==et?T=\"useLayoutEffect\":(f.tag&yl)!==et?T=\"useInsertionEffect\":T=\"useEffect\";var w=void 0;x===null?w=\" You returned null. If your effect does not require clean up, return undefined (or nothing).\":typeof x.then==\"function\"?w=`\n\nIt looks like you wrote `+T+`(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:\n\n`+T+`(() => {\n async function fetchData() {\n // You can await here\n const response = await MyAPI.getData(someId);\n // ...\n }\n fetchData();\n}, [someId]); // Or [] if effect doesn't need props or state\n\nLearn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-fetching`:w=\" You returned: \"+x,m(\"%s must not return anything besides a function, which is used for clean-up.%s\",T,w)}}}f=f.next}while(f!==c)}}function FL(e,t){if((t.flags&jt)!==et)switch(t.tag){case P:{var r=t.stateNode.passiveEffectDuration,l=t.memoizedProps,c=l.id,f=l.onPostCommit,v=Wb(),x=t.alternate===null?\"mount\":\"update\";Gb()&&(x=\"nested-update\"),typeof f==\"function\"&&f(c,x,r,v);var T=t.return;e:for(;T!==null;){switch(T.tag){case b:var w=T.stateNode;w.passiveEffectDuration+=r;break e;case P:var M=T.stateNode;M.passiveEffectDuration+=r;break e}T=T.return}break}}}function TL(e,t,r,l){if((r.flags&ol)!==et)switch(r.tag){case K:case Y:case ye:{if(!rr)if(r.mode&zt)try{Tl(),Bu(Na|ka,r)}finally{Fl(r)}else Bu(Na|ka,r);break}case F:{var c=r.stateNode;if(r.flags&jt&&!rr)if(t===null)if(r.type===r.elementType&&!ad&&(c.props!==r.memoizedProps&&m(\"Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",vt(r)||\"instance\"),c.state!==r.memoizedState&&m(\"Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",vt(r)||\"instance\")),r.mode&zt)try{Tl(),c.componentDidMount()}finally{Fl(r)}else c.componentDidMount();else{var f=r.elementType===r.type?t.memoizedProps:Bo(r.type,t.memoizedProps),v=t.memoizedState;if(r.type===r.elementType&&!ad&&(c.props!==r.memoizedProps&&m(\"Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",vt(r)||\"instance\"),c.state!==r.memoizedState&&m(\"Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",vt(r)||\"instance\")),r.mode&zt)try{Tl(),c.componentDidUpdate(f,v,c.__reactInternalSnapshotBeforeUpdate)}finally{Fl(r)}else c.componentDidUpdate(f,v,c.__reactInternalSnapshotBeforeUpdate)}var x=r.updateQueue;x!==null&&(r.type===r.elementType&&!ad&&(c.props!==r.memoizedProps&&m(\"Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.\",vt(r)||\"instance\"),c.state!==r.memoizedState&&m(\"Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.\",vt(r)||\"instance\")),hb(r,x,c));break}case b:{var T=r.updateQueue;if(T!==null){var w=null;if(r.child!==null)switch(r.child.tag){case E:w=r.child.stateNode;break;case F:w=r.child.stateNode;break}hb(r,T,w)}break}case E:{var M=r.stateNode;if(t===null&&r.flags&jt){var H=r.type,J=r.memoizedProps;Y4(M,H,J)}break}case O:break;case N:break;case P:{{var ne=r.memoizedProps,ie=ne.onCommit,se=ne.onRender,Be=r.stateNode.effectDuration,rt=Wb(),Xe=t===null?\"mount\":\"update\";Gb()&&(Xe=\"nested-update\"),typeof se==\"function\"&&se(r.memoizedProps.id,Xe,r.actualDuration,r.treeBaseDuration,r.actualStartTime,rt);{typeof ie==\"function\"&&ie(r.memoizedProps.id,Xe,Be,rt),KO(r);var Vt=r.return;e:for(;Vt!==null;){switch(Vt.tag){case b:var Dt=Vt.stateNode;Dt.effectDuration+=Be;break e;case P:var X=Vt.stateNode;X.effectDuration+=Be;break e}Vt=Vt.return}}}break}case te:{ML(e,r);break}case gt:case Pe:case Ce:case qe:case dt:case pt:break;default:throw new Error(\"This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.\")}rr||r.flags&On&&NR(r)}function CL(e){switch(e.tag){case K:case Y:case ye:{if(e.mode&zt)try{Tl(),bR(e,e.return)}finally{Fl(e)}else bR(e,e.return);break}case F:{var t=e.stateNode;typeof t.componentDidMount==\"function\"&&UL(e,e.return,t),RR(e,e.return);break}case E:{RR(e,e.return);break}}}function bL(e,t){for(var r=null,l=e;;){if(l.tag===E){if(r===null){r=l;try{var c=l.stateNode;t?$4(c):tD(l.stateNode,l.memoizedProps)}catch(v){Sn(e,e.return,v)}}}else if(l.tag===O){if(r===null)try{var f=l.stateNode;t?eD(f):nD(f,l.memoizedProps)}catch(v){Sn(e,e.return,v)}}else if(!((l.tag===qe||l.tag===dt)&&l.memoizedState!==null&&l!==e)){if(l.child!==null){l.child.return=l,l=l.child;continue}}if(l===e)return;for(;l.sibling===null;){if(l.return===null||l.return===e)return;r===l&&(r=null),l=l.return}r===l&&(r=null),l.sibling.return=l.return,l=l.sibling}}function NR(e){var t=e.ref;if(t!==null){var r=e.stateNode,l;switch(e.tag){case E:l=r;break;default:l=r}if(typeof t==\"function\"){var c;if(e.mode&zt)try{Tl(),c=t(l)}finally{Fl(e)}else c=t(l);typeof c==\"function\"&&m(\"Unexpected return value from a callback ref in %s. A callback ref should not return a function.\",vt(e))}else t.hasOwnProperty(\"current\")||m(\"Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().\",vt(e)),t.current=l}}function RL(e){var t=e.alternate;t!==null&&(t.return=null),e.return=null}function wR(e){var t=e.alternate;t!==null&&(e.alternate=null,wR(t));{if(e.child=null,e.deletions=null,e.sibling=null,e.tag===E){var r=e.stateNode;r!==null&&BD(r)}e.stateNode=null,e._debugOwner=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}}function kL(e){for(var t=e.return;t!==null;){if(ER(t))return t;t=t.return}throw new Error(\"Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.\")}function ER(e){return e.tag===E||e.tag===b||e.tag===N}function MR(e){var t=e;e:for(;;){for(;t.sibling===null;){if(t.return===null||ER(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;t.tag!==E&&t.tag!==O&&t.tag!==ut;){if(t.flags&En||t.child===null||t.tag===N)continue e;t.child.return=t,t=t.child}if(!(t.flags&En))return t.stateNode}}function NL(e){var t=kL(e);switch(t.tag){case E:{var r=t.stateNode;t.flags&ni&&(QC(r),t.flags&=~ni);var l=MR(e);NK(e,l,r);break}case b:case N:{var c=t.stateNode.containerInfo,f=MR(e);kK(e,f,c);break}default:throw new Error(\"Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.\")}}function kK(e,t,r){var l=e.tag,c=l===E||l===O;if(c){var f=e.stateNode;t?P4(r,f,t):z4(r,f)}else if(l!==N){var v=e.child;if(v!==null){kK(v,t,r);for(var x=v.sibling;x!==null;)kK(x,t,r),x=x.sibling}}}function NK(e,t,r){var l=e.tag,c=l===E||l===O;if(c){var f=e.stateNode;t?H4(r,f,t):J4(r,f)}else if(l!==N){var v=e.child;if(v!==null){NK(v,t,r);for(var x=v.sibling;x!==null;)NK(x,t,r),x=x.sibling}}}var ir=null,jo=!1;function wL(e,t,r){{var l=t;e:for(;l!==null;){switch(l.tag){case E:{ir=l.stateNode,jo=!1;break e}case b:{ir=l.stateNode.containerInfo,jo=!0;break e}case N:{ir=l.stateNode.containerInfo,jo=!0;break e}}l=l.return}if(ir===null)throw new Error(\"Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.\");BR(e,t,r),ir=null,jo=!1}RL(r)}function Qu(e,t,r){for(var l=r.child;l!==null;)BR(e,t,l),l=l.sibling}function BR(e,t,r){switch(fm(r),r.tag){case E:rr||uf(r,t);case O:{{var l=ir,c=jo;ir=null,Qu(e,t,r),ir=l,jo=c,ir!==null&&(jo?X4(ir,r.stateNode):Z4(ir,r.stateNode))}return}case ut:{ir!==null&&(jo?_4(ir,r.stateNode):IS(ir,r.stateNode));return}case N:{{var f=ir,v=jo;ir=r.stateNode.containerInfo,jo=!0,Qu(e,t,r),ir=f,jo=v}return}case K:case Y:case me:case ye:{if(!rr){var x=r.updateQueue;if(x!==null){var T=x.lastEffect;if(T!==null){var w=T.next,M=w;do{var H=M,J=H.destroy,ne=H.tag;J!==void 0&&((ne&yl)!==pi?Pg(r,t,J):(ne&Na)!==pi&&(fc(r),r.mode&zt?(Tl(),Pg(r,t,J),Fl(r)):Pg(r,t,J),gm())),M=M.next}while(M!==w)}}}Qu(e,t,r);return}case F:{if(!rr){uf(r,t);var ie=r.stateNode;typeof ie.componentWillUnmount==\"function\"&&RK(r,t,ie)}Qu(e,t,r);return}case Ce:{Qu(e,t,r);return}case qe:{if(r.mode&Et){var se=rr;rr=se||r.memoizedState!==null,Qu(e,t,r),rr=se}else Qu(e,t,r);break}default:{Qu(e,t,r);return}}}function EL(e){e.memoizedState}function ML(e,t){var r=t.memoizedState;if(r===null){var l=t.alternate;if(l!==null){var c=l.memoizedState;if(c!==null){var f=c.dehydrated;f!==null&&gD(f)}}}}function QR(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var r=e.stateNode;r===null&&(r=e.stateNode=new AL),t.forEach(function(l){var c=kO.bind(null,e,l);if(!r.has(l)){if(r.add(l),Ur)if(lf!==null&&sf!==null)O0(sf,lf);else throw Error(\"Expected finished root and lanes to be set. This is a bug in React.\");l.then(c,c)}})}}function BL(e,t,r){lf=r,sf=e,an(t),DR(t,e),an(t),lf=null,sf=null}function Lo(e,t,r){var l=t.deletions;if(l!==null)for(var c=0;c<l.length;c++){var f=l[c];try{wL(e,t,f)}catch(T){Sn(f,t,T)}}var v=Po();if(t.subtreeFlags&il)for(var x=t.child;x!==null;)an(x),DR(x,e),x=x.sibling;an(v)}function DR(e,t,r){var l=e.alternate,c=e.flags;switch(e.tag){case K:case Y:case me:case ye:{if(Lo(t,e),Cl(e),c&jt){try{Do(yl|ka,e,e.return),Bu(yl|ka,e)}catch(ft){Sn(e,e.return,ft)}if(e.mode&zt){try{Tl(),Do(Na|ka,e,e.return)}catch(ft){Sn(e,e.return,ft)}Fl(e)}else try{Do(Na|ka,e,e.return)}catch(ft){Sn(e,e.return,ft)}}return}case F:{Lo(t,e),Cl(e),c&On&&l!==null&&uf(l,l.return);return}case E:{Lo(t,e),Cl(e),c&On&&l!==null&&uf(l,l.return);{if(e.flags&ni){var f=e.stateNode;try{QC(f)}catch(ft){Sn(e,e.return,ft)}}if(c&jt){var v=e.stateNode;if(v!=null){var x=e.memoizedProps,T=l!==null?l.memoizedProps:x,w=e.type,M=e.updateQueue;if(e.updateQueue=null,M!==null)try{G4(v,M,w,T,x,e)}catch(ft){Sn(e,e.return,ft)}}}}return}case O:{if(Lo(t,e),Cl(e),c&jt){if(e.stateNode===null)throw new Error(\"This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.\");var H=e.stateNode,J=e.memoizedProps,ne=l!==null?l.memoizedProps:J;try{W4(H,ne,J)}catch(ft){Sn(e,e.return,ft)}}return}case b:{if(Lo(t,e),Cl(e),c&jt&&l!==null){var ie=l.memoizedState;if(ie.isDehydrated)try{AD(t.containerInfo)}catch(ft){Sn(e,e.return,ft)}}return}case N:{Lo(t,e),Cl(e);return}case te:{Lo(t,e),Cl(e);var se=e.child;if(se.flags&_n){var Be=se.stateNode,rt=se.memoizedState,Xe=rt!==null;if(Be.isHidden=Xe,Xe){var Vt=se.alternate!==null&&se.alternate.memoizedState!==null;Vt||mO()}}if(c&jt){try{EL(e)}catch(ft){Sn(e,e.return,ft)}QR(e)}return}case qe:{var Dt=l!==null&&l.memoizedState!==null;if(e.mode&Et){var X=rr;rr=X||Dt,Lo(t,e),rr=X}else Lo(t,e);if(Cl(e),c&_n){var ue=e.stateNode,_=e.memoizedState,Fe=_!==null,Le=e;if(ue.isHidden=Fe,Fe&&!Dt&&(Le.mode&Et)!==tt){Je=Le;for(var Qe=Le.child;Qe!==null;)Je=Qe,DL(Qe),Qe=Qe.sibling}bL(Le,Fe)}return}case gt:{Lo(t,e),Cl(e),c&jt&&QR(e);return}case Ce:return;default:{Lo(t,e),Cl(e);return}}}function Cl(e){var t=e.flags;if(t&En){try{NL(e)}catch(r){Sn(e,e.return,r)}e.flags&=~En}t&Ar&&(e.flags&=~Ar)}function QL(e,t,r){lf=r,sf=t,Je=e,jR(e,t,r),lf=null,sf=null}function jR(e,t,r){for(var l=(e.mode&Et)!==tt;Je!==null;){var c=Je,f=c.child;if(c.tag===qe&&l){var v=c.memoizedState!==null,x=v||Hg;if(x){wK(e,t,r);continue}else{var T=c.alternate,w=T!==null&&T.memoizedState!==null,M=w||rr,H=Hg,J=rr;Hg=x,rr=M,rr&&!J&&(Je=c,jL(c));for(var ne=f;ne!==null;)Je=ne,jR(ne,t,r),ne=ne.sibling;Je=c,Hg=H,rr=J,wK(e,t,r);continue}}(c.subtreeFlags&ol)!==et&&f!==null?(f.return=c,Je=f):wK(e,t,r)}}function wK(e,t,r){for(;Je!==null;){var l=Je;if((l.flags&ol)!==et){var c=l.alternate;an(l);try{TL(t,c,l,r)}catch(v){Sn(l,l.return,v)}Un()}if(l===e){Je=null;return}var f=l.sibling;if(f!==null){f.return=l.return,Je=f;return}Je=l.return}}function DL(e){for(;Je!==null;){var t=Je,r=t.child;switch(t.tag){case K:case Y:case me:case ye:{if(t.mode&zt)try{Tl(),Do(Na,t,t.return)}finally{Fl(t)}else Do(Na,t,t.return);break}case F:{uf(t,t.return);var l=t.stateNode;typeof l.componentWillUnmount==\"function\"&&RK(t,t.return,l);break}case E:{uf(t,t.return);break}case qe:{var c=t.memoizedState!==null;if(c){LR(e);continue}break}}r!==null?(r.return=t,Je=r):LR(e)}}function LR(e){for(;Je!==null;){var t=Je;if(t===e){Je=null;return}var r=t.sibling;if(r!==null){r.return=t.return,Je=r;return}Je=t.return}}function jL(e){for(;Je!==null;){var t=Je,r=t.child;if(t.tag===qe){var l=t.memoizedState!==null;if(l){OR(e);continue}}r!==null?(r.return=t,Je=r):OR(e)}}function OR(e){for(;Je!==null;){var t=Je;an(t);try{CL(t)}catch(l){Sn(t,t.return,l)}if(Un(),t===e){Je=null;return}var r=t.sibling;if(r!==null){r.return=t.return,Je=r;return}Je=t.return}}function LL(e,t,r,l){Je=t,OL(t,e,r,l)}function OL(e,t,r,l){for(;Je!==null;){var c=Je,f=c.child;(c.subtreeFlags&yo)!==et&&f!==null?(f.return=c,Je=f):VL(e,t,r,l)}}function VL(e,t,r,l){for(;Je!==null;){var c=Je;if((c.flags&hr)!==et){an(c);try{IL(t,c,r,l)}catch(v){Sn(c,c.return,v)}Un()}if(c===e){Je=null;return}var f=c.sibling;if(f!==null){f.return=c.return,Je=f;return}Je=c.return}}function IL(e,t,r,l){switch(t.tag){case K:case Y:case ye:{if(t.mode&zt){Zy();try{Bu(nr|ka,t)}finally{Py(t)}}else Bu(nr|ka,t);break}}}function qL(e){Je=e,YL()}function YL(){for(;Je!==null;){var e=Je,t=e.child;if((Je.flags&ti)!==et){var r=e.deletions;if(r!==null){for(var l=0;l<r.length;l++){var c=r[l];Je=c,JL(c,e)}{var f=e.alternate;if(f!==null){var v=f.child;if(v!==null){f.child=null;do{var x=v.sibling;v.sibling=null,v=x}while(v!==null)}}}Je=e}}(e.subtreeFlags&yo)!==et&&t!==null?(t.return=e,Je=t):GL()}}function GL(){for(;Je!==null;){var e=Je;(e.flags&hr)!==et&&(an(e),WL(e),Un());var t=e.sibling;if(t!==null){t.return=e.return,Je=t;return}Je=e.return}}function WL(e){switch(e.tag){case K:case Y:case ye:{e.mode&zt?(Zy(),Do(nr|ka,e,e.return),Py(e)):Do(nr|ka,e,e.return);break}}}function JL(e,t){for(;Je!==null;){var r=Je;an(r),HL(r,t),Un();var l=r.child;l!==null?(l.return=r,Je=l):zL(e)}}function zL(e){for(;Je!==null;){var t=Je,r=t.sibling,l=t.return;if(wR(t),t===e){Je=null;return}if(r!==null){r.return=l,Je=r;return}Je=l}}function HL(e,t){switch(e.tag){case K:case Y:case ye:{e.mode&zt?(Zy(),Do(nr,e,t),Py(e)):Do(nr,e,t);break}}}function PL(e){switch(e.tag){case K:case Y:case ye:{try{Bu(Na|ka,e)}catch(r){Sn(e,e.return,r)}break}case F:{var t=e.stateNode;try{t.componentDidMount()}catch(r){Sn(e,e.return,r)}break}}}function ZL(e){switch(e.tag){case K:case Y:case ye:{try{Bu(nr|ka,e)}catch(t){Sn(e,e.return,t)}break}}}function XL(e){switch(e.tag){case K:case Y:case ye:{try{Do(Na|ka,e,e.return)}catch(r){Sn(e,e.return,r)}break}case F:{var t=e.stateNode;typeof t.componentWillUnmount==\"function\"&&RK(e,e.return,t);break}}}function _L(e){switch(e.tag){case K:case Y:case ye:try{Do(nr|ka,e,e.return)}catch(t){Sn(e,e.return,t)}}}if(typeof Symbol==\"function\"&&Symbol.for){var R0=Symbol.for;R0(\"selector.component\"),R0(\"selector.has_pseudo_class\"),R0(\"selector.role\"),R0(\"selector.test_id\"),R0(\"selector.text\")}var $L=[];function eO(){$L.forEach(function(e){return e()})}var tO=u.ReactCurrentActQueue;function nO(e){{var t=typeof IS_REACT_ACT_ENVIRONMENT!=\"undefined\"?IS_REACT_ACT_ENVIRONMENT:void 0,r=typeof jest!=\"undefined\";return r&&t!==!1}}function VR(){{var e=typeof IS_REACT_ACT_ENVIRONMENT!=\"undefined\"?IS_REACT_ACT_ENVIRONMENT:void 0;return!e&&tO.current!==null&&m(\"The current testing environment is not configured to support act(...)\"),e}}var aO=Math.ceil,EK=u.ReactCurrentDispatcher,MK=u.ReactCurrentOwner,or=u.ReactCurrentBatchConfig,Oo=u.ReactCurrentActQueue,Ma=0,IR=1,lr=2,lo=4,bs=0,k0=1,rd=2,Zg=3,N0=4,qR=5,BK=6,Ot=Ma,Ir=null,Pn=null,Ba=Ae,bl=Ae,QK=Tu(Ae),Qa=bs,w0=null,Xg=Ae,E0=Ae,_g=Ae,M0=null,fi=null,DK=0,YR=500,GR=1/0,rO=500,Rs=null;function B0(){GR=da()+rO}function WR(){return GR}var $g=!1,jK=null,cf=null,id=!1,Du=null,Q0=Ae,LK=[],OK=null,iO=50,D0=0,VK=null,IK=!1,ev=!1,oO=50,df=0,tv=null,j0=cn,nv=Ae,JR=!1;function av(){return Ir}function qr(){return(Ot&(lr|lo))!==Ma?da():(j0!==cn||(j0=da()),j0)}function ju(e){var t=e.mode;if((t&Et)===tt)return ct;if((Ot&lr)!==Ma&&Ba!==Ae)return Cc(Ba);var r=tj()!==ej;if(r){if(or.transition!==null){var l=or.transition;l._updatedFibers||(l._updatedFibers=new Set),l._updatedFibers.add(e)}return nv===Gt&&(nv=Tm()),nv}var c=si();if(c!==Gt)return c;var f=O4();return f}function lO(e){var t=e.mode;return(t&Et)===tt?ct:lA()}function Da(e,t,r,l){wO(),JR&&m(\"useInsertionEffect must not schedule updates.\"),IK&&(ev=!0),mu(e,r,l),(Ot&lr)!==Ae&&e===Ir?BO(t):(Ur&&kc(e,t,r),QO(t),e===Ir&&((Ot&lr)===Ma&&(E0=bt(E0,r)),Qa===N0&&Lu(e,Ba)),mi(e,l),r===ct&&Ot===Ma&&(t.mode&Et)===tt&&!Oo.isBatchingLegacy&&(B0(),JC()))}function sO(e,t,r){var l=e.current;l.lanes=t,mu(e,t,r),mi(e,r)}function uO(e){return(Ot&lr)!==Ma}function mi(e,t){var r=e.callbackNode;Up(e,t);var l=vp(e,e===Ir?Ba:Ae);if(l===Ae){r!==null&&sk(r),e.callbackNode=null,e.callbackPriority=Gt;return}var c=dl(l),f=e.callbackPriority;if(f===c&&!(Oo.current!==null&&r!==HK)){r==null&&f!==ct&&m(\"Expected scheduled callback to exist. This error is likely caused by a bug in React. Please file an issue.\");return}r!=null&&sk(r);var v;if(c===ct)e.tag===Cu?(Oo.isBatchingLegacy!==null&&(Oo.didScheduleLegacyUpdate=!0),jD(PR.bind(null,e))):WC(PR.bind(null,e)),Oo.current!==null?Oo.current.push(bu):I4(function(){(Ot&(lr|lo))===Ma&&bu()}),v=null;else{var x;switch(mA(l)){case Za:x=pc;break;case Xi:x=ll;break;case oi:x=Ko;break;case li:x=ts;break;default:x=Ko;break}v=PK(x,zR.bind(null,e))}e.callbackPriority=c,e.callbackNode=v}function zR(e,t){if(bj(),j0=cn,nv=Ae,(Ot&(lr|lo))!==Ma)throw new Error(\"Should not already be working.\");var r=e.callbackNode,l=Ns();if(l&&e.callbackNode!==r)return null;var c=vp(e,e===Ir?Ba:Ae);if(c===Ae)return null;var f=!yp(e,c)&&!oA(e,c)&&!t,v=f?UO(e,c):iv(e,c);if(v!==bs){if(v===rd){var x=Sp(e);x!==Ae&&(c=x,v=qK(e,x))}if(v===k0){var T=w0;throw od(e,Ae),Lu(e,c),mi(e,da()),T}if(v===BK)Lu(e,c);else{var w=!yp(e,c),M=e.current.alternate;if(w&&!dO(M)){if(v=iv(e,c),v===rd){var H=Sp(e);H!==Ae&&(c=H,v=qK(e,H))}if(v===k0){var J=w0;throw od(e,Ae),Lu(e,c),mi(e,da()),J}}e.finishedWork=M,e.finishedLanes=c,cO(e,v,c)}}return mi(e,da()),e.callbackNode===r?zR.bind(null,e):null}function qK(e,t){var r=M0;if(Fp(e)){var l=od(e,t);l.flags|=Va,ND(e.containerInfo)}var c=iv(e,t);if(c!==rd){var f=fi;fi=r,f!==null&&HR(f)}return c}function HR(e){fi===null?fi=e:fi.push.apply(fi,e)}function cO(e,t,r){switch(t){case bs:case k0:throw new Error(\"Root did not complete. This is a bug in React.\");case rd:{ld(e,fi,Rs);break}case Zg:{if(Lu(e,r),ps(r)&&!uk()){var l=DK+YR-da();if(l>10){var c=vp(e,Ae);if(c!==Ae)break;var f=e.suspendedLanes;if(!fs(f,r)){qr(),Kp(e,f);break}e.timeoutHandle=OS(ld.bind(null,e,fi,Rs),l);break}}ld(e,fi,Rs);break}case N0:{if(Lu(e,r),xm(r))break;if(!uk()){var v=Ri(e,r),x=v,T=da()-x,w=NO(T)-T;if(w>10){e.timeoutHandle=OS(ld.bind(null,e,fi,Rs),w);break}}ld(e,fi,Rs);break}case qR:{ld(e,fi,Rs);break}default:throw new Error(\"Unknown root exit status.\")}}function dO(e){for(var t=e;;){if(t.flags&uu){var r=t.updateQueue;if(r!==null){var l=r.stores;if(l!==null)for(var c=0;c<l.length;c++){var f=l[c],v=f.getSnapshot,x=f.value;try{if(!Se(v(),x))return!1}catch(w){return!1}}}}var T=t.child;if(t.subtreeFlags&uu&&T!==null){T.return=t,t=T;continue}if(t===e)return!0;for(;t.sibling===null;){if(t.return===null||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}return!0}function Lu(e,t){t=bc(t,_g),t=bc(t,E0),cA(e,t)}function PR(e){if(Rj(),(Ot&(lr|lo))!==Ma)throw new Error(\"Should not already be working.\");Ns();var t=vp(e,Ae);if(!yr(t,ct))return mi(e,da()),null;var r=iv(e,t);if(e.tag!==Cu&&r===rd){var l=Sp(e);l!==Ae&&(t=l,r=qK(e,l))}if(r===k0){var c=w0;throw od(e,Ae),Lu(e,t),mi(e,da()),c}if(r===BK)throw new Error(\"Root did not complete. This is a bug in React.\");var f=e.current.alternate;return e.finishedWork=f,e.finishedLanes=t,ld(e,fi,Rs),mi(e,da()),null}function pO(e,t){t!==Ae&&(xp(e,bt(t,ct)),mi(e,da()),(Ot&(lr|lo))===Ma&&(B0(),bu()))}function YK(e,t){var r=Ot;Ot|=IR;try{return e(t)}finally{Ot=r,Ot===Ma&&!Oo.isBatchingLegacy&&(B0(),JC())}}function fO(e,t,r,l,c){var f=si(),v=or.transition;try{return or.transition=null,na(Za),e(t,r,l,c)}finally{na(f),or.transition=v,Ot===Ma&&B0()}}function ks(e){Du!==null&&Du.tag===Cu&&(Ot&(lr|lo))===Ma&&Ns();var t=Ot;Ot|=IR;var r=or.transition,l=si();try{return or.transition=null,na(Za),e?e():void 0}finally{na(l),or.transition=r,Ot=t,(Ot&(lr|lo))===Ma&&bu()}}function ZR(){return(Ot&(lr|lo))!==Ma}function rv(e,t){Cr(QK,bl,e),bl=bt(bl,t)}function GK(e){bl=QK.current,Tr(QK,e)}function od(e,t){e.finishedWork=null,e.finishedLanes=Ae;var r=e.timeoutHandle;if(r!==VS&&(e.timeoutHandle=VS,V4(r)),Pn!==null)for(var l=Pn.return;l!==null;){var c=l.alternate;TR(c,l),l=l.return}Ir=e;var f=sd(e.current,null);return Pn=f,Ba=bl=t,Qa=bs,w0=null,Xg=Ae,E0=Ae,_g=Ae,M0=null,fi=null,sj(),wo.discardPendingWarnings(),f}function XR(e,t){do{var r=Pn;try{if(mg(),yb(),Un(),MK.current=null,r===null||r.return===null){Qa=k0,w0=t,Pn=null;return}if(Ve&&r.mode&zt&&Yg(r,!0),$e)if(jr(),t!==null&&typeof t==\"object\"&&typeof t.then==\"function\"){var l=t;Zi(r,l,Ba)}else mc(r,t,Ba);jj(e,r.return,r,t,Ba),tk(r)}catch(c){t=c,Pn===r&&r!==null?(r=r.return,Pn=r):r=Pn;continue}return}while(!0)}function _R(){var e=EK.current;return EK.current=Lg,e===null?Lg:e}function $R(e){EK.current=e}function mO(){DK=da()}function L0(e){Xg=bt(e,Xg)}function hO(){Qa===bs&&(Qa=Zg)}function WK(){(Qa===bs||Qa===Zg||Qa===rd)&&(Qa=N0),Ir!==null&&(Tc(Xg)||Tc(E0))&&Lu(Ir,Ba)}function AO(e){Qa!==N0&&(Qa=rd),M0===null?M0=[e]:M0.push(e)}function gO(){return Qa===bs}function iv(e,t){var r=Ot;Ot|=lr;var l=_R();if(Ir!==e||Ba!==t){if(Ur){var c=e.memoizedUpdaters;c.size>0&&(O0(e,Ba),c.clear()),dA(e,t)}Rs=km(),od(e,t)}is(t);do try{vO();break}catch(f){XR(e,f)}while(!0);if(mg(),Ot=r,$R(l),Pn!==null)throw new Error(\"Cannot commit an incomplete root. This error is likely caused by a bug in React. Please file an issue.\");return ep(),Ir=null,Ba=Ae,Qa}function vO(){for(;Pn!==null;)ek(Pn)}function UO(e,t){var r=Ot;Ot|=lr;var l=_R();if(Ir!==e||Ba!==t){if(Ur){var c=e.memoizedUpdaters;c.size>0&&(O0(e,Ba),c.clear()),dA(e,t)}Rs=km(),B0(),od(e,t)}is(t);do try{SO();break}catch(f){XR(e,f)}while(!0);return mg(),$R(l),Ot=r,Pn!==null?(nA(),bs):(ep(),Ir=null,Ba=Ae,Qa)}function SO(){for(;Pn!==null&&!sm();)ek(Pn)}function ek(e){var t=e.alternate;an(e);var r;(e.mode&zt)!==tt?(Hy(e),r=JK(t,e,bl),Yg(e,!0)):r=JK(t,e,bl),Un(),e.memoizedProps=e.pendingProps,r===null?tk(e):Pn=r,MK.current=null}function tk(e){var t=e;do{var r=t.alternate,l=t.return;if((t.flags&dc)===et){an(t);var c=void 0;if((t.mode&zt)===tt?c=FR(r,t,bl):(Hy(t),c=FR(r,t,bl),Yg(t,!1)),Un(),c!==null){Pn=c;return}}else{var f=hL(r,t);if(f!==null){f.flags&=Zh,Pn=f;return}if((t.mode&zt)!==tt){Yg(t,!1);for(var v=t.actualDuration,x=t.child;x!==null;)v+=x.actualDuration,x=x.sibling;t.actualDuration=v}if(l!==null)l.flags|=dc,l.subtreeFlags=et,l.deletions=null;else{Qa=BK,Pn=null;return}}var T=t.sibling;if(T!==null){Pn=T;return}t=l,Pn=t}while(t!==null);Qa===bs&&(Qa=qR)}function ld(e,t,r){var l=si(),c=or.transition;try{or.transition=null,na(Za),yO(e,t,r,l)}finally{or.transition=c,na(l)}return null}function yO(e,t,r,l){do Ns();while(Du!==null);if(EO(),(Ot&(lr|lo))!==Ma)throw new Error(\"Should not already be working.\");var c=e.finishedWork,f=e.finishedLanes;if(mm(f),c===null)return hm(),null;if(f===Ae&&m(\"root.finishedLanes should not be empty during a commit. This is a bug in React.\"),e.finishedWork=null,e.finishedLanes=Ae,c===e.current)throw new Error(\"Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.\");e.callbackNode=null,e.callbackPriority=Gt;var v=bt(c.lanes,c.childLanes);bm(e,v),e===Ir&&(Ir=null,Pn=null,Ba=Ae),((c.subtreeFlags&yo)!==et||(c.flags&yo)!==et)&&(id||(id=!0,OK=r,PK(Ko,function(){return Ns(),null})));var x=(c.subtreeFlags&(rl|il|ol|yo))!==et,T=(c.flags&(rl|il|ol|yo))!==et;if(x||T){var w=or.transition;or.transition=null;var M=si();na(Za);var H=Ot;Ot|=lo,MK.current=null,SL(e,c),Jb(),BL(e,c,f),M4(e.containerInfo),e.current=c,hc(f),QL(c,e,f),Ac(),um(),Ot=H,na(M),or.transition=w}else e.current=c,Jb();var J=id;if(id?(id=!1,Du=e,Q0=f):(df=0,tv=null),v=e.pendingLanes,v===Ae&&(cf=null),J||ik(e.current,!1),dm(c.stateNode,l),Ur&&e.memoizedUpdaters.clear(),eO(),mi(e,da()),t!==null)for(var ne=e.onRecoverableError,ie=0;ie<t.length;ie++){var se=t[ie],Be=se.stack,rt=se.digest;ne(se.value,{componentStack:Be,digest:rt})}if($g){$g=!1;var Xe=jK;throw jK=null,Xe}return yr(Q0,ct)&&e.tag!==Cu&&Ns(),v=e.pendingLanes,yr(v,ct)?(Cj(),e===VK?D0++:(D0=0,VK=e)):D0=0,bu(),hm(),null}function Ns(){if(Du!==null){var e=mA(Q0),t=wc(oi,e),r=or.transition,l=si();try{return or.transition=null,na(t),xO()}finally{na(l),or.transition=r}}return!1}function KO(e){LK.push(e),id||(id=!0,PK(Ko,function(){return Ns(),null}))}function xO(){if(Du===null)return!1;var e=OK;OK=null;var t=Du,r=Q0;if(Du=null,Q0=Ae,(Ot&(lr|lo))!==Ma)throw new Error(\"Cannot flush passive effects while already rendering.\");IK=!0,ev=!1,rs(r);var l=Ot;Ot|=lo,qL(t.current),LL(t,t.current,r,e);{var c=LK;LK=[];for(var f=0;f<c.length;f++){var v=c[f];FL(t,v)}}vm(),ik(t.current,!0),Ot=l,bu(),ev?t===tv?df++:(df=0,tv=t):df=0,IK=!1,ev=!1,pm(t);{var x=t.current.stateNode;x.effectDuration=0,x.passiveEffectDuration=0}return!0}function nk(e){return cf!==null&&cf.has(e)}function FO(e){cf===null?cf=new Set([e]):cf.add(e)}function TO(e){$g||($g=!0,jK=e)}var CO=TO;function ak(e,t,r){var l=nd(r,t),c=eR(e,l,ct),f=ku(e,c,ct),v=qr();f!==null&&(mu(f,ct,v),mi(f,v))}function Sn(e,t,r){if(gL(r),V0(!1),e.tag===b){ak(e,e,r);return}var l=null;for(l=t;l!==null;){if(l.tag===b){ak(l,e,r);return}else if(l.tag===F){var c=l.type,f=l.stateNode;if(typeof c.getDerivedStateFromError==\"function\"||typeof f.componentDidCatch==\"function\"&&!nk(f)){var v=nd(r,e),x=pK(l,v,ct),T=ku(l,x,ct),w=qr();T!==null&&(mu(T,ct,w),mi(T,w));return}}l=l.return}m(`Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Likely causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.\n\nError message:\n\n%s`,r)}function bO(e,t,r){var l=e.pingCache;l!==null&&l.delete(t);var c=qr();Kp(e,r),DO(e),Ir===e&&fs(Ba,r)&&(Qa===N0||Qa===Zg&&ps(Ba)&&da()-DK<YR?od(e,Ae):_g=bt(_g,r)),mi(e,c)}function rk(e,t){t===Gt&&(t=lO(e));var r=qr(),l=di(e,t);l!==null&&(mu(l,t,r),mi(l,r))}function RO(e){var t=e.memoizedState,r=Gt;t!==null&&(r=t.retryLane),rk(e,r)}function kO(e,t){var r=Gt,l;switch(e.tag){case te:l=e.stateNode;var c=e.memoizedState;c!==null&&(r=c.retryLane);break;case gt:l=e.stateNode;break;default:throw new Error(\"Pinged unknown suspense boundary type. This is probably a bug in React.\")}l!==null&&l.delete(t),rk(e,r)}function NO(e){return e<120?120:e<480?480:e<1080?1080:e<1920?1920:e<3e3?3e3:e<4320?4320:aO(e/1960)*1960}function wO(){if(D0>iO)throw D0=0,VK=null,new Error(\"Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.\");df>oO&&(df=0,tv=null,m(\"Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.\"))}function EO(){wo.flushLegacyContextWarning(),wo.flushPendingUnsafeLifecycleWarnings()}function ik(e,t){an(e),ov(e,al,XL),t&&ov(e,zi,_L),ov(e,al,PL),t&&ov(e,zi,ZL),Un()}function ov(e,t,r){for(var l=e,c=null;l!==null;){var f=l.subtreeFlags&t;l!==c&&l.child!==null&&f!==et?l=l.child:((l.flags&t)!==et&&r(l),l.sibling!==null?l=l.sibling:l=c=l.return)}}var lv=null;function ok(e){{if((Ot&lr)!==Ma||!(e.mode&Et))return;var t=e.tag;if(t!==R&&t!==b&&t!==F&&t!==K&&t!==Y&&t!==me&&t!==ye)return;var r=vt(e)||\"ReactComponent\";if(lv!==null){if(lv.has(r))return;lv.add(r)}else lv=new Set([r]);var l=Fa;try{an(e),m(\"Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead.\")}finally{l?an(e):Un()}}}var JK;{var MO=null;JK=function(e,t,r){var l=mk(MO,t);try{return UR(e,t,r)}catch(f){if(WD()||f!==null&&typeof f==\"object\"&&typeof f.then==\"function\")throw f;if(mg(),yb(),TR(e,t),mk(t,l),t.mode&zt&&Hy(t),nl(null,UR,null,e,t,r),Uo()){var c=cc();typeof c==\"object\"&&c!==null&&c._suppressLogging&&typeof f==\"object\"&&f!==null&&!f._suppressLogging&&(f._suppressLogging=!0)}throw f}}}var lk=!1,zK;zK=new Set;function BO(e){if(Vi&&!xj())switch(e.tag){case K:case Y:case ye:{var t=Pn&&vt(Pn)||\"Unknown\",r=t;if(!zK.has(r)){zK.add(r);var l=vt(e)||\"Unknown\";m(\"Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://reactjs.org/link/setstate-in-render\",l,t,t)}break}case F:{lk||(m(\"Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state.\"),lk=!0);break}}}function O0(e,t){if(Ur){var r=e.memoizedUpdaters;r.forEach(function(l){kc(e,l,t)})}}var HK={};function PK(e,t){{var r=Oo.current;return r!==null?(r.push(t),HK):lm(e,t)}}function sk(e){if(e!==HK)return _h(e)}function uk(){return Oo.current!==null}function QO(e){{if(e.mode&Et){if(!VR())return}else if(!nO()||Ot!==Ma||e.tag!==K&&e.tag!==Y&&e.tag!==ye)return;if(Oo.current===null){var t=Fa;try{an(e),m(`An update to %s inside a test was not wrapped in act(...).\n\nWhen testing, code that causes React state updates should be wrapped into act(...):\n\nact(() => {\n /* fire events that update state */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act`,vt(e))}finally{t?an(e):Un()}}}}function DO(e){e.tag!==Cu&&VR()&&Oo.current===null&&m(`A suspended resource finished loading inside a test, but the event was not wrapped in act(...).\n\nWhen testing, code that resolves suspended data should be wrapped into act(...):\n\nact(() => {\n /* finish loading suspended data */\n});\n/* assert on the output */\n\nThis ensures that you're testing the behavior the user would see in the browser. Learn more at https://reactjs.org/link/wrap-tests-with-act`)}function V0(e){JR=e}var so=null,pf=null,jO=function(e){so=e};function ff(e){{if(so===null)return e;var t=so(e);return t===void 0?e:t.current}}function ZK(e){return ff(e)}function XK(e){{if(so===null)return e;var t=so(e);if(t===void 0){if(e!=null&&typeof e.render==\"function\"){var r=ff(e.render);if(e.render!==r){var l={$$typeof:he,render:r};return e.displayName!==void 0&&(l.displayName=e.displayName),l}}return e}return t.current}}function ck(e,t){{if(so===null)return!1;var r=e.elementType,l=t.type,c=!1,f=typeof l==\"object\"&&l!==null?l.$$typeof:null;switch(e.tag){case F:{typeof l==\"function\"&&(c=!0);break}case K:{(typeof l==\"function\"||f===Ut)&&(c=!0);break}case Y:{(f===he||f===Ut)&&(c=!0);break}case me:case ye:{(f===xt||f===Ut)&&(c=!0);break}default:return!1}if(c){var v=so(r);if(v!==void 0&&v===so(l))return!0}return!1}}function dk(e){{if(so===null||typeof WeakSet!=\"function\")return;pf===null&&(pf=new WeakSet),pf.add(e)}}var LO=function(e,t){{if(so===null)return;var r=t.staleFamilies,l=t.updatedFamilies;Ns(),ks(function(){_K(e.current,l,r)})}},OO=function(e,t){{if(e.context!==wi)return;Ns(),ks(function(){I0(t,e,null,null)})}};function _K(e,t,r){{var l=e.alternate,c=e.child,f=e.sibling,v=e.tag,x=e.type,T=null;switch(v){case K:case ye:case F:T=x;break;case Y:T=x.render;break}if(so===null)throw new Error(\"Expected resolveFamily to be set during hot reload.\");var w=!1,M=!1;if(T!==null){var H=so(T);H!==void 0&&(r.has(H)?M=!0:t.has(H)&&(v===F?M=!0:w=!0))}if(pf!==null&&(pf.has(e)||l!==null&&pf.has(l))&&(M=!0),M&&(e._debugNeedsRemount=!0),M||w){var J=di(e,ct);J!==null&&Da(J,e,ct,cn)}c!==null&&!M&&_K(c,t,r),f!==null&&_K(f,t,r)}}var VO=function(e,t){{var r=new Set,l=new Set(t.map(function(c){return c.current}));return $K(e.current,l,r),r}};function $K(e,t,r){{var l=e.child,c=e.sibling,f=e.tag,v=e.type,x=null;switch(f){case K:case ye:case F:x=v;break;case Y:x=v.render;break}var T=!1;x!==null&&t.has(x)&&(T=!0),T?IO(e,r):l!==null&&$K(l,t,r),c!==null&&$K(c,t,r)}}function IO(e,t){{var r=qO(e,t);if(r)return;for(var l=e;;){switch(l.tag){case E:t.add(l.stateNode);return;case N:t.add(l.stateNode.containerInfo);return;case b:t.add(l.stateNode.containerInfo);return}if(l.return===null)throw new Error(\"Expected to reach root first.\");l=l.return}}}function qO(e,t){for(var r=e,l=!1;;){if(r.tag===E)l=!0,t.add(r.stateNode);else if(r.child!==null){r.child.return=r,r=r.child;continue}if(r===e)return l;for(;r.sibling===null;){if(r.return===null||r.return===e)return l;r=r.return}r.sibling.return=r.return,r=r.sibling}return!1}var ex;{ex=!1;try{var pk=Object.preventExtensions({})}catch(e){ex=!0}}function YO(e,t,r,l){this.tag=e,this.key=r,this.elementType=null,this.type=null,this.stateNode=null,this.return=null,this.child=null,this.sibling=null,this.index=0,this.ref=null,this.pendingProps=t,this.memoizedProps=null,this.updateQueue=null,this.memoizedState=null,this.dependencies=null,this.mode=l,this.flags=et,this.subtreeFlags=et,this.deletions=null,this.lanes=Ae,this.childLanes=Ae,this.alternate=null,this.actualDuration=Number.NaN,this.actualStartTime=Number.NaN,this.selfBaseDuration=Number.NaN,this.treeBaseDuration=Number.NaN,this.actualDuration=0,this.actualStartTime=-1,this.selfBaseDuration=0,this.treeBaseDuration=0,this._debugSource=null,this._debugOwner=null,this._debugNeedsRemount=!1,this._debugHookTypes=null,!ex&&typeof Object.preventExtensions==\"function\"&&Object.preventExtensions(this)}var Ei=function(e,t,r,l){return new YO(e,t,r,l)};function tx(e){var t=e.prototype;return!!(t&&t.isReactComponent)}function GO(e){return typeof e==\"function\"&&!tx(e)&&e.defaultProps===void 0}function WO(e){if(typeof e==\"function\")return tx(e)?F:K;if(e!=null){var t=e.$$typeof;if(t===he)return Y;if(t===xt)return me}return R}function sd(e,t){var r=e.alternate;r===null?(r=Ei(e.tag,t,e.key,e.mode),r.elementType=e.elementType,r.type=e.type,r.stateNode=e.stateNode,r._debugSource=e._debugSource,r._debugOwner=e._debugOwner,r._debugHookTypes=e._debugHookTypes,r.alternate=e,e.alternate=r):(r.pendingProps=t,r.type=e.type,r.flags=et,r.subtreeFlags=et,r.deletions=null,r.actualDuration=0,r.actualStartTime=-1),r.flags=e.flags&$n,r.childLanes=e.childLanes,r.lanes=e.lanes,r.child=e.child,r.memoizedProps=e.memoizedProps,r.memoizedState=e.memoizedState,r.updateQueue=e.updateQueue;var l=e.dependencies;switch(r.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext},r.sibling=e.sibling,r.index=e.index,r.ref=e.ref,r.selfBaseDuration=e.selfBaseDuration,r.treeBaseDuration=e.treeBaseDuration,r._debugNeedsRemount=e._debugNeedsRemount,r.tag){case R:case K:case ye:r.type=ff(e.type);break;case F:r.type=ZK(e.type);break;case Y:r.type=XK(e.type);break}return r}function JO(e,t){e.flags&=$n|En;var r=e.alternate;if(r===null)e.childLanes=Ae,e.lanes=t,e.child=null,e.subtreeFlags=et,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null,e.selfBaseDuration=0,e.treeBaseDuration=0;else{e.childLanes=r.childLanes,e.lanes=r.lanes,e.child=r.child,e.subtreeFlags=et,e.deletions=null,e.memoizedProps=r.memoizedProps,e.memoizedState=r.memoizedState,e.updateQueue=r.updateQueue,e.type=r.type;var l=r.dependencies;e.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext},e.selfBaseDuration=r.selfBaseDuration,e.treeBaseDuration=r.treeBaseDuration}return e}function zO(e,t,r){var l;return e===rg?(l=Et,t===!0&&(l|=ln,l|=Ht)):l=tt,Ur&&(l|=zt),Ei(b,null,null,l)}function nx(e,t,r,l,c,f){var v=R,x=e;if(typeof e==\"function\")tx(e)?(v=F,x=ZK(x)):x=ff(x);else if(typeof e==\"string\")v=E;else e:switch(e){case Di:return Ou(r.children,c,f,t);case gi:v=L,c|=ln,(c&Et)!==tt&&(c|=Ht);break;case ji:return HO(r,c,f,t);case Ee:return PO(r,c,f,t);case Ie:return ZO(r,c,f,t);case Yn:return fk(r,c,f,t);case mn:case Bt:case vn:case xa:case wt:default:{if(typeof e==\"object\"&&e!==null)switch(e.$$typeof){case Li:v=W;break e;case I:v=q;break e;case he:v=Y,x=XK(x);break e;case xt:v=me;break e;case Ut:v=be,x=null;break e}var T=\"\";{(e===void 0||typeof e==\"object\"&&e!==null&&Object.keys(e).length===0)&&(T+=\" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\");var w=l?vt(l):null;w&&(T+=`\n\nCheck the render method of \\``+w+\"`.\")}throw new Error(\"Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) \"+(\"but got: \"+(e==null?e:typeof e)+\".\"+T))}}var M=Ei(v,r,t,c);return M.elementType=e,M.type=x,M.lanes=f,M._debugOwner=l,M}function ax(e,t,r){var l=null;l=e._owner;var c=e.type,f=e.key,v=e.props,x=nx(c,f,v,l,t,r);return x._debugSource=e._source,x._debugOwner=e._owner,x}function Ou(e,t,r,l){var c=Ei(B,e,l,t);return c.lanes=r,c}function HO(e,t,r,l){typeof e.id!=\"string\"&&m('Profiler must specify an \"id\" of type `string` as a prop. Received the type `%s` instead.',typeof e.id);var c=Ei(P,e,l,t|zt);return c.elementType=ji,c.lanes=r,c.stateNode={effectDuration:0,passiveEffectDuration:0},c}function PO(e,t,r,l){var c=Ei(te,e,l,t);return c.elementType=Ee,c.lanes=r,c}function ZO(e,t,r,l){var c=Ei(gt,e,l,t);return c.elementType=Ie,c.lanes=r,c}function fk(e,t,r,l){var c=Ei(qe,e,l,t);c.elementType=Yn,c.lanes=r;var f={isHidden:!1};return c.stateNode=f,c}function rx(e,t,r){var l=Ei(O,e,null,t);return l.lanes=r,l}function XO(){var e=Ei(E,null,null,tt);return e.elementType=\"DELETED\",e}function _O(e){var t=Ei(ut,null,null,tt);return t.stateNode=e,t}function ix(e,t,r){var l=e.children!==null?e.children:[],c=Ei(N,l,e.key,t);return c.lanes=r,c.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},c}function mk(e,t){return e===null&&(e=Ei(R,null,null,tt)),e.tag=t.tag,e.key=t.key,e.elementType=t.elementType,e.type=t.type,e.stateNode=t.stateNode,e.return=t.return,e.child=t.child,e.sibling=t.sibling,e.index=t.index,e.ref=t.ref,e.pendingProps=t.pendingProps,e.memoizedProps=t.memoizedProps,e.updateQueue=t.updateQueue,e.memoizedState=t.memoizedState,e.dependencies=t.dependencies,e.mode=t.mode,e.flags=t.flags,e.subtreeFlags=t.subtreeFlags,e.deletions=t.deletions,e.lanes=t.lanes,e.childLanes=t.childLanes,e.alternate=t.alternate,e.actualDuration=t.actualDuration,e.actualStartTime=t.actualStartTime,e.selfBaseDuration=t.selfBaseDuration,e.treeBaseDuration=t.treeBaseDuration,e._debugSource=t._debugSource,e._debugOwner=t._debugOwner,e._debugNeedsRemount=t._debugNeedsRemount,e._debugHookTypes=t._debugHookTypes,e}function $O(e,t,r,l,c){this.tag=t,this.containerInfo=e,this.pendingChildren=null,this.current=null,this.pingCache=null,this.finishedWork=null,this.timeoutHandle=VS,this.context=null,this.pendingContext=null,this.callbackNode=null,this.callbackPriority=Gt,this.eventTimes=Rc(Ae),this.expirationTimes=Rc(cn),this.pendingLanes=Ae,this.suspendedLanes=Ae,this.pingedLanes=Ae,this.expiredLanes=Ae,this.mutableReadLanes=Ae,this.finishedLanes=Ae,this.entangledLanes=Ae,this.entanglements=Rc(Ae),this.identifierPrefix=l,this.onRecoverableError=c,this.mutableSourceEagerHydrationData=null,this.effectDuration=0,this.passiveEffectDuration=0;{this.memoizedUpdaters=new Set;for(var f=this.pendingUpdatersLaneMap=[],v=0;v<os;v++)f.push(new Set)}switch(t){case rg:this._debugRootType=r?\"hydrateRoot()\":\"createRoot()\";break;case Cu:this._debugRootType=r?\"hydrate()\":\"render()\";break}}function hk(e,t,r,l,c,f,v,x,T,w){var M=new $O(e,t,r,x,T),H=zO(t,f);M.current=H,H.stateNode=M;{var J={element:l,isDehydrated:r,cache:null,transitions:null,pendingSuspenseBoundaries:null};H.memoizedState=J}return vy(H),M}var ox=\"18.3.1\";function eV(e,t,r){var l=arguments.length>3&&arguments[3]!==void 0?arguments[3]:null;return ya(l),{$$typeof:Ka,key:l==null?null:\"\"+l,children:e,containerInfo:t,implementation:r}}var lx,sx;lx=!1,sx={};function Ak(e){if(!e)return wi;var t=su(e),r=DD(t);if(t.tag===F){var l=t.type;if(Sl(l))return YC(t,l,r)}return r}function tV(e,t){{var r=su(e);if(r===void 0){if(typeof e.render==\"function\")throw new Error(\"Unable to find node on an unmounted component.\");var l=Object.keys(e).join(\",\");throw new Error(\"Argument appears to not be a ReactComponent. Keys: \"+l)}var c=gr(r);if(c===null)return null;if(c.mode&ln){var f=vt(r)||\"Component\";if(!sx[f]){sx[f]=!0;var v=Fa;try{an(c),r.mode&ln?m(\"%s is deprecated in StrictMode. %s was passed an instance of %s which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node\",t,t,f):m(\"%s is deprecated in StrictMode. %s was passed an instance of %s which renders StrictMode children. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node\",t,t,f)}finally{v?an(v):Un()}}}return c.stateNode}}function gk(e,t,r,l,c,f,v,x){var T=!1,w=null;return hk(e,t,T,w,r,l,c,f,v)}function vk(e,t,r,l,c,f,v,x,T,w){var M=!0,H=hk(r,l,M,e,c,f,v,x,T);H.context=Ak(null);var J=H.current,ne=qr(),ie=ju(J),se=Ts(ne,ie);return se.callback=t!=null?t:null,ku(J,se,ie),sO(H,ie,ne),H}function I0(e,t,r,l){cm(t,e);var c=t.current,f=qr(),v=ju(c);Bn(v);var x=Ak(r);t.context===null?t.context=x:t.pendingContext=x,Vi&&Fa!==null&&!lx&&(lx=!0,m(`Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.\n\nCheck the render method of %s.`,vt(Fa)||\"Unknown\"));var T=Ts(f,v);T.payload={element:e},l=l===void 0?null:l,l!==null&&(typeof l!=\"function\"&&m(\"render(...): Expected the last optional `callback` argument to be a function. Instead received: %s.\",l),T.callback=l);var w=ku(c,T,v);return w!==null&&(Da(w,c,v,f),Ug(w,c,v)),v}function sv(e){var t=e.current;if(!t.child)return null;switch(t.child.tag){case E:return t.child.stateNode;default:return t.child.stateNode}}function nV(e){switch(e.tag){case b:{var t=e.stateNode;if(Fp(t)){var r=rA(t);pO(t,r)}break}case te:{ks(function(){var c=di(e,ct);if(c!==null){var f=qr();Da(c,e,ct,f)}});var l=ct;ux(e,l);break}}}function Uk(e,t){var r=e.memoizedState;r!==null&&r.dehydrated!==null&&(r.retryLane=uA(r.retryLane,t))}function ux(e,t){Uk(e,t);var r=e.alternate;r&&Uk(r,t)}function aV(e){if(e.tag===te){var t=Kc,r=di(e,t);if(r!==null){var l=qr();Da(r,e,t,l)}ux(e,t)}}function rV(e){if(e.tag===te){var t=ju(e),r=di(e,t);if(r!==null){var l=qr();Da(r,e,t,l)}ux(e,t)}}function Sk(e){var t=xn(e);return t===null?null:t.stateNode}var yk=function(e){return null};function iV(e){return yk(e)}var Kk=function(e){return!1};function oV(e){return Kk(e)}var xk=null,Fk=null,Tk=null,Ck=null,bk=null,Rk=null,kk=null,Nk=null,wk=null;{var Ek=function(e,t,r){var l=t[r],c=Nt(e)?e.slice():Rt({},e);return r+1===t.length?(Nt(c)?c.splice(l,1):delete c[l],c):(c[l]=Ek(e[l],t,r+1),c)},Mk=function(e,t){return Ek(e,t,0)},Bk=function(e,t,r,l){var c=t[l],f=Nt(e)?e.slice():Rt({},e);if(l+1===t.length){var v=r[l];f[v]=f[c],Nt(f)?f.splice(c,1):delete f[c]}else f[c]=Bk(e[c],t,r,l+1);return f},Qk=function(e,t,r){if(t.length!==r.length){U(\"copyWithRename() expects paths of the same length\");return}else for(var l=0;l<r.length-1;l++)if(t[l]!==r[l]){U(\"copyWithRename() expects paths to be the same except for the deepest key\");return}return Bk(e,t,r,0)},Dk=function(e,t,r,l){if(r>=t.length)return l;var c=t[r],f=Nt(e)?e.slice():Rt({},e);return f[c]=Dk(e[c],t,r+1,l),f},jk=function(e,t,r){return Dk(e,t,0,r)},cx=function(e,t){for(var r=e.memoizedState;r!==null&&t>0;)r=r.next,t--;return r};xk=function(e,t,r,l){var c=cx(e,t);if(c!==null){var f=jk(c.memoizedState,r,l);c.memoizedState=f,c.baseState=f,e.memoizedProps=Rt({},e.memoizedProps);var v=di(e,ct);v!==null&&Da(v,e,ct,cn)}},Fk=function(e,t,r){var l=cx(e,t);if(l!==null){var c=Mk(l.memoizedState,r);l.memoizedState=c,l.baseState=c,e.memoizedProps=Rt({},e.memoizedProps);var f=di(e,ct);f!==null&&Da(f,e,ct,cn)}},Tk=function(e,t,r,l){var c=cx(e,t);if(c!==null){var f=Qk(c.memoizedState,r,l);c.memoizedState=f,c.baseState=f,e.memoizedProps=Rt({},e.memoizedProps);var v=di(e,ct);v!==null&&Da(v,e,ct,cn)}},Ck=function(e,t,r){e.pendingProps=jk(e.memoizedProps,t,r),e.alternate&&(e.alternate.pendingProps=e.pendingProps);var l=di(e,ct);l!==null&&Da(l,e,ct,cn)},bk=function(e,t){e.pendingProps=Mk(e.memoizedProps,t),e.alternate&&(e.alternate.pendingProps=e.pendingProps);var r=di(e,ct);r!==null&&Da(r,e,ct,cn)},Rk=function(e,t,r){e.pendingProps=Qk(e.memoizedProps,t,r),e.alternate&&(e.alternate.pendingProps=e.pendingProps);var l=di(e,ct);l!==null&&Da(l,e,ct,cn)},kk=function(e){var t=di(e,ct);t!==null&&Da(t,e,ct,cn)},Nk=function(e){yk=e},wk=function(e){Kk=e}}function lV(e){var t=gr(e);return t===null?null:t.stateNode}function sV(e){return null}function uV(){return Fa}function cV(e){var t=e.findFiberByHostInstance,r=u.ReactCurrentDispatcher;return du({bundleType:e.bundleType,version:e.version,rendererPackageName:e.rendererPackageName,rendererConfig:e.rendererConfig,overrideHookState:xk,overrideHookStateDeletePath:Fk,overrideHookStateRenamePath:Tk,overrideProps:Ck,overridePropsDeletePath:bk,overridePropsRenamePath:Rk,setErrorHandler:Nk,setSuspenseHandler:wk,scheduleUpdate:kk,currentDispatcherRef:r,findHostInstanceByFiber:lV,findFiberByHostInstance:t||sV,findHostInstancesForRefresh:VO,scheduleRefresh:LO,scheduleRoot:OO,setRefreshHandler:jO,getCurrentFiber:uV,reconcilerVersion:ox})}var Lk=typeof reportError==\"function\"?reportError:function(e){console.error(e)};function dx(e){this._internalRoot=e}uv.prototype.render=dx.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw new Error(\"Cannot update an unmounted root.\");{typeof arguments[1]==\"function\"?m(\"render(...): does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().\"):cv(arguments[1])?m(\"You passed a container to the second argument of root.render(...). You don't need to pass it again since you already passed it to create the root.\"):typeof arguments[1]!=\"undefined\"&&m(\"You passed a second argument to root.render(...) but it only accepts one argument.\");var r=t.containerInfo;if(r.nodeType!==Xn){var l=Sk(t.current);l&&l.parentNode!==r&&m(\"render(...): It looks like the React-rendered content of the root container was removed without using React. This is not supported and will cause errors. Instead, call root.unmount() to empty a root's container.\")}}I0(e,t,null,null)},uv.prototype.unmount=dx.prototype.unmount=function(){typeof arguments[0]==\"function\"&&m(\"unmount(...): does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect().\");var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;ZR()&&m(\"Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition.\"),ks(function(){I0(null,e,null,null)}),LC(t)}};function dV(e,t){if(!cv(e))throw new Error(\"createRoot(...): Target container is not a DOM element.\");Ok(e);var r=!1,l=!1,c=\"\",f=Lk;t!=null&&(t.hydrate?U(\"hydrate through createRoot is deprecated. Use ReactDOMClient.hydrateRoot(container, <App />) instead.\"):typeof t==\"object\"&&t!==null&&t.$$typeof===Ja&&m(`You passed a JSX element to createRoot. You probably meant to call root.render instead. Example usage:\n\n let root = createRoot(domContainer);\n root.render(<App />);`),t.unstable_strictMode===!0&&(r=!0),t.identifierPrefix!==void 0&&(c=t.identifierPrefix),t.onRecoverableError!==void 0&&(f=t.onRecoverableError),t.transitionCallbacks!==void 0&&t.transitionCallbacks);var v=gk(e,rg,null,r,l,c,f);XA(v.current,e);var x=e.nodeType===Xn?e.parentNode:e;return zm(x),new dx(v)}function uv(e){this._internalRoot=e}function pV(e){e&&UA(e)}uv.prototype.unstable_scheduleHydration=pV;function fV(e,t,r){if(!cv(e))throw new Error(\"hydrateRoot(...): Target container is not a DOM element.\");Ok(e),t===void 0&&m(\"Must provide initial children as second argument to hydrateRoot. Example usage: hydrateRoot(domContainer, <App />)\");var l=r!=null?r:null,c=r!=null&&r.hydratedSources||null,f=!1,v=!1,x=\"\",T=Lk;r!=null&&(r.unstable_strictMode===!0&&(f=!0),r.identifierPrefix!==void 0&&(x=r.identifierPrefix),r.onRecoverableError!==void 0&&(T=r.onRecoverableError));var w=vk(t,null,e,rg,l,f,v,x,T);if(XA(w.current,e),zm(e),c)for(var M=0;M<c.length;M++){var H=c[M];gj(w,H)}return new uv(w)}function cv(e){return!!(e&&(e.nodeType===mr||e.nodeType===vo||e.nodeType===Pf))}function q0(e){return!!(e&&(e.nodeType===mr||e.nodeType===vo||e.nodeType===Pf||e.nodeType===Xn&&e.nodeValue===\" react-mount-point-unstable \"))}function Ok(e){e.nodeType===mr&&e.tagName&&e.tagName.toUpperCase()===\"BODY\"&&m(\"createRoot(): Creating roots directly with document.body is discouraged, since its children are often manipulated by third-party scripts and browser extensions. This may lead to subtle reconciliation issues. Try using a container element created for your app.\"),r0(e)&&(e._reactRootContainer?m(\"You are calling ReactDOMClient.createRoot() on a container that was previously passed to ReactDOM.render(). This is not supported.\"):m(\"You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it.\"))}var mV=u.ReactCurrentOwner,Vk;Vk=function(e){if(e._reactRootContainer&&e.nodeType!==Xn){var t=Sk(e._reactRootContainer.current);t&&t.parentNode!==e&&m(\"render(...): It looks like the React-rendered content of this container was removed without using React. This is not supported and will cause errors. Instead, call ReactDOM.unmountComponentAtNode to empty a container.\")}var r=!!e._reactRootContainer,l=px(e),c=!!(l&&Fu(l));c&&!r&&m(\"render(...): Replacing React-rendered children with a new root component. If you intended to update the children of this node, you should instead have the existing children update their state and render the new components instead of calling ReactDOM.render.\"),e.nodeType===mr&&e.tagName&&e.tagName.toUpperCase()===\"BODY\"&&m(\"render(): Rendering components directly into document.body is discouraged, since its children are often manipulated by third-party scripts and browser extensions. This may lead to subtle reconciliation issues. Try rendering into a container element created for your app.\")};function px(e){return e?e.nodeType===vo?e.documentElement:e.firstChild:null}function Ik(){}function hV(e,t,r,l,c){if(c){if(typeof l==\"function\"){var f=l;l=function(){var J=sv(v);f.call(J)}}var v=vk(t,l,e,Cu,null,!1,!1,\"\",Ik);e._reactRootContainer=v,XA(v.current,e);var x=e.nodeType===Xn?e.parentNode:e;return zm(x),ks(),v}else{for(var T;T=e.lastChild;)e.removeChild(T);if(typeof l==\"function\"){var w=l;l=function(){var J=sv(M);w.call(J)}}var M=gk(e,Cu,null,!1,!1,\"\",Ik);e._reactRootContainer=M,XA(M.current,e);var H=e.nodeType===Xn?e.parentNode:e;return zm(H),ks(function(){I0(t,M,r,l)}),M}}function AV(e,t){e!==null&&typeof e!=\"function\"&&m(\"%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.\",t,e)}function dv(e,t,r,l,c){Vk(r),AV(c===void 0?null:c,\"render\");var f=r._reactRootContainer,v;if(!f)v=hV(r,t,e,c,l);else{if(v=f,typeof c==\"function\"){var x=c;c=function(){var T=sv(v);x.call(T)}}I0(t,v,e,c)}return sv(v)}var qk=!1;function gV(e){{qk||(qk=!0,m(\"findDOMNode is deprecated and will be removed in the next major release. Instead, add a ref directly to the element you want to reference. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-find-node\"));var t=mV.current;if(t!==null&&t.stateNode!==null){var r=t.stateNode._warnedAboutRefsInRender;r||m(\"%s is accessing findDOMNode inside its render(). render() should be a pure function of props and state. It should never access something that requires stale data from the previous render, such as refs. Move this logic to componentDidMount and componentDidUpdate instead.\",qt(t.type)||\"A component\"),t.stateNode._warnedAboutRefsInRender=!0}}return e==null?null:e.nodeType===mr?e:tV(e,\"findDOMNode\")}function vV(e,t,r){if(m(\"ReactDOM.hydrate is no longer supported in React 18. Use hydrateRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot\"),!q0(t))throw new Error(\"Target container is not a DOM element.\");{var l=r0(t)&&t._reactRootContainer===void 0;l&&m(\"You are calling ReactDOM.hydrate() on a container that was previously passed to ReactDOMClient.createRoot(). This is not supported. Did you mean to call hydrateRoot(container, element)?\")}return dv(null,e,t,!0,r)}function UV(e,t,r){if(m(\"ReactDOM.render is no longer supported in React 18. Use createRoot instead. Until you switch to the new API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot\"),!q0(t))throw new Error(\"Target container is not a DOM element.\");{var l=r0(t)&&t._reactRootContainer===void 0;l&&m(\"You are calling ReactDOM.render() on a container that was previously passed to ReactDOMClient.createRoot(). This is not supported. Did you mean to call root.render(element)?\")}return dv(null,e,t,!1,r)}function SV(e,t,r,l){if(m(\"ReactDOM.unstable_renderSubtreeIntoContainer() is no longer supported in React 18. Consider using a portal instead. Until you switch to the createRoot API, your app will behave as if it's running React 17. Learn more: https://reactjs.org/link/switch-to-createroot\"),!q0(r))throw new Error(\"Target container is not a DOM element.\");if(e==null||!uS(e))throw new Error(\"parentComponent must be a valid React Component\");return dv(e,t,r,!1,l)}var Yk=!1;function yV(e){if(Yk||(Yk=!0,m(\"unmountComponentAtNode is deprecated and will be removed in the next major release. Switch to the createRoot API. Learn more: https://reactjs.org/link/switch-to-createroot\")),!q0(e))throw new Error(\"unmountComponentAtNode(...): Target container is not a DOM element.\");{var t=r0(e)&&e._reactRootContainer===void 0;t&&m(\"You are calling ReactDOM.unmountComponentAtNode() on a container that was previously passed to ReactDOMClient.createRoot(). This is not supported. Did you mean to call root.unmount()?\")}if(e._reactRootContainer){{var r=px(e),l=r&&!Fu(r);l&&m(\"unmountComponentAtNode(): The node you're attempting to unmount was rendered by another copy of React.\")}return ks(function(){dv(null,null,e,!1,function(){e._reactRootContainer=null,LC(e)})}),!0}else{{var c=px(e),f=!!(c&&Fu(c)),v=e.nodeType===mr&&q0(e.parentNode)&&!!e.parentNode._reactRootContainer;f&&m(\"unmountComponentAtNode(): The node you're attempting to unmount was rendered by React and is not a top-level container. %s\",v?\"You may have accidentally passed in a React root node instead of its container.\":\"Instead, have the parent component update its state and rerender in order to remove this component.\")}return!1}}qa(nV),hu(aV),hA(rV),Mc(si),Nm(pA),(typeof Map!=\"function\"||Map.prototype==null||typeof Map.prototype.forEach!=\"function\"||typeof Set!=\"function\"||Set.prototype==null||typeof Set.prototype.clear!=\"function\"||typeof Set.prototype.forEach!=\"function\")&&m(\"React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\"),Id(x4),sS(YK,fO,ks);function KV(e,t){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:null;if(!cv(t))throw new Error(\"Target container is not a DOM element.\");return eV(e,t,null,r)}function xV(e,t,r,l){return SV(e,t,r,l)}var fx={usingClientEntryPoint:!1,Events:[Fu,Yp,_A,ru,qd,YK]};function FV(e,t){return fx.usingClientEntryPoint||m('You are importing createRoot from \"react-dom\" which is not supported. You should instead import it from \"react-dom/client\".'),dV(e,t)}function TV(e,t,r){return fx.usingClientEntryPoint||m('You are importing hydrateRoot from \"react-dom\" which is not supported. You should instead import it from \"react-dom/client\".'),fV(e,t,r)}function CV(e){return ZR()&&m(\"flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task.\"),ks(e)}var bV=cV({findFiberByHostInstance:zc,bundleType:1,version:ox,rendererPackageName:\"react-dom\"});if(!bV&&Rn&&window.top===window.self&&(navigator.userAgent.indexOf(\"Chrome\")>-1&&navigator.userAgent.indexOf(\"Edge\")===-1||navigator.userAgent.indexOf(\"Firefox\")>-1)){var Gk=window.location.protocol;/^(https?|file):$/.test(Gk)&&console.info(\"%cDownload the React DevTools for a better development experience: https://reactjs.org/link/react-devtools\"+(Gk===\"file:\"?`\nYou might need to use a local HTTP server (instead of file://): https://reactjs.org/link/react-devtools-faq`:\"\"),\"font-weight:bold\")}zr.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=fx,zr.createPortal=KV,zr.createRoot=FV,zr.findDOMNode=gV,zr.flushSync=CV,zr.hydrate=vV,zr.hydrateRoot=TV,zr.render=UV,zr.unmountComponentAtNode=yV,zr.unstable_batchedUpdates=YK,zr.unstable_renderSubtreeIntoContainer=xV,zr.version=ox,typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error)}()),zr}function Kx(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__==\"undefined\"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=\"function\")){if(process.env.NODE_ENV!==\"production\")throw new Error(\"^_^\");try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Kx)}catch(i){console.error(i)}}}process.env.NODE_ENV===\"production\"?(Kx(),hv.exports=Pk()):hv.exports=Zk();var xx=hv.exports,W0,J0=xx;if(process.env.NODE_ENV===\"production\")W0=J0.createRoot,J0.hydrateRoot;else{var Fx=J0.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;W0=function(i,o){Fx.usingClientEntryPoint=!0;try{return J0.createRoot(i,o)}finally{Fx.usingClientEntryPoint=!1}}}var vv={exports:{}},Af={};/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var Tx;function Xk(){if(Tx)return Af;Tx=1;var i=Q,o=Symbol.for(\"react.element\"),u=Symbol.for(\"react.fragment\"),p=Object.prototype.hasOwnProperty,A=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,U={key:!0,ref:!0,__self:!0,__source:!0};function m(y,K,F){var R,b={},N=null,E=null;F!==void 0&&(N=\"\"+F),K.key!==void 0&&(N=\"\"+K.key),K.ref!==void 0&&(E=K.ref);for(R in K)p.call(K,R)&&!U.hasOwnProperty(R)&&(b[R]=K[R]);if(y&&y.defaultProps)for(R in K=y.defaultProps,K)b[R]===void 0&&(b[R]=K[R]);return{$$typeof:o,type:y,key:N,ref:E,props:b,_owner:A.current}}return Af.Fragment=u,Af.jsx=m,Af.jsxs=m,Af}var gf={};/**\n * @license React\n * react-jsx-runtime.development.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var Cx;function _k(){return Cx||(Cx=1,process.env.NODE_ENV!==\"production\"&&function(){var i=Q,o=Symbol.for(\"react.element\"),u=Symbol.for(\"react.portal\"),p=Symbol.for(\"react.fragment\"),A=Symbol.for(\"react.strict_mode\"),U=Symbol.for(\"react.profiler\"),m=Symbol.for(\"react.provider\"),y=Symbol.for(\"react.context\"),K=Symbol.for(\"react.forward_ref\"),F=Symbol.for(\"react.suspense\"),R=Symbol.for(\"react.suspense_list\"),b=Symbol.for(\"react.memo\"),N=Symbol.for(\"react.lazy\"),E=Symbol.for(\"react.offscreen\"),O=Symbol.iterator,B=\"@@iterator\";function L(I){if(I===null||typeof I!=\"object\")return null;var he=O&&I[O]||I[B];return typeof he==\"function\"?he:null}var q=i.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function W(I){{for(var he=arguments.length,Ee=new Array(he>1?he-1:0),Ie=1;Ie<he;Ie++)Ee[Ie-1]=arguments[Ie];Y(\"error\",I,Ee)}}function Y(I,he,Ee){{var Ie=q.ReactDebugCurrentFrame,xt=Ie.getStackAddendum();xt!==\"\"&&(he+=\"%s\",Ee=Ee.concat([xt]));var Ut=Ee.map(function(Bt){return String(Bt)});Ut.unshift(\"Warning: \"+he),Function.prototype.apply.call(console[I],console,Ut)}}var P=!1,te=!1,me=!1,ye=!1,be=!1,Pe;Pe=Symbol.for(\"react.module.reference\");function ut(I){return!!(typeof I==\"string\"||typeof I==\"function\"||I===p||I===U||be||I===A||I===F||I===R||ye||I===E||P||te||me||typeof I==\"object\"&&I!==null&&(I.$$typeof===N||I.$$typeof===b||I.$$typeof===m||I.$$typeof===y||I.$$typeof===K||I.$$typeof===Pe||I.getModuleId!==void 0))}function gt(I,he,Ee){var Ie=I.displayName;if(Ie)return Ie;var xt=he.displayName||he.name||\"\";return xt!==\"\"?Ee+\"(\"+xt+\")\":Ee}function Ce(I){return I.displayName||\"Context\"}function qe(I){if(I==null)return null;if(typeof I.tag==\"number\"&&W(\"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.\"),typeof I==\"function\")return I.displayName||I.name||null;if(typeof I==\"string\")return I;switch(I){case p:return\"Fragment\";case u:return\"Portal\";case U:return\"Profiler\";case A:return\"StrictMode\";case F:return\"Suspense\";case R:return\"SuspenseList\"}if(typeof I==\"object\")switch(I.$$typeof){case y:var he=I;return Ce(he)+\".Consumer\";case m:var Ee=I;return Ce(Ee._context)+\".Provider\";case K:return gt(I,I.render,\"ForwardRef\");case b:var Ie=I.displayName||null;return Ie!==null?Ie:qe(I.type)||\"Memo\";case N:{var xt=I,Ut=xt._payload,Bt=xt._init;try{return qe(Bt(Ut))}catch(wt){return null}}}return null}var dt=Object.assign,ke=0,pt,Ke,de,ee,fe,j,le;function $e(){}$e.__reactDisabledLog=!0;function Ve(){{if(ke===0){pt=console.log,Ke=console.info,de=console.warn,ee=console.error,fe=console.group,j=console.groupCollapsed,le=console.groupEnd;var I={configurable:!0,enumerable:!0,value:$e,writable:!0};Object.defineProperties(console,{info:I,log:I,warn:I,error:I,group:I,groupCollapsed:I,groupEnd:I})}ke++}}function nt(){{if(ke--,ke===0){var I={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:dt({},I,{value:pt}),info:dt({},I,{value:Ke}),warn:dt({},I,{value:de}),error:dt({},I,{value:ee}),group:dt({},I,{value:fe}),groupCollapsed:dt({},I,{value:j}),groupEnd:dt({},I,{value:le})})}ke<0&&W(\"disabledDepth fell below zero. This is a bug in React. Please file an issue.\")}}var Ye=q.ReactCurrentDispatcher,Ze;function Kt(I,he,Ee){{if(Ze===void 0)try{throw Error()}catch(xt){var Ie=xt.stack.trim().match(/\\n( *(at )?)/);Ze=Ie&&Ie[1]||\"\"}return`\n`+Ze+I}}var Ct=!1,Wt;{var Rn=typeof WeakMap==\"function\"?WeakMap:Map;Wt=new Rn}function ma(I,he){if(!I||Ct)return\"\";{var Ee=Wt.get(I);if(Ee!==void 0)return Ee}var Ie;Ct=!0;var xt=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var Ut;Ut=Ye.current,Ye.current=null,Ve();try{if(he){var Bt=function(){throw Error()};if(Object.defineProperty(Bt.prototype,\"props\",{set:function(){throw Error()}}),typeof Reflect==\"object\"&&Reflect.construct){try{Reflect.construct(Bt,[])}catch(Ft){Ie=Ft}Reflect.construct(I,[],Bt)}else{try{Bt.call()}catch(Ft){Ie=Ft}I.call(Bt.prototype)}}else{try{throw Error()}catch(Ft){Ie=Ft}I()}}catch(Ft){if(Ft&&Ie&&typeof Ft.stack==\"string\"){for(var wt=Ft.stack.split(`\n`),Yn=Ie.stack.split(`\n`),mn=wt.length-1,vn=Yn.length-1;mn>=1&&vn>=0&&wt[mn]!==Yn[vn];)vn--;for(;mn>=1&&vn>=0;mn--,vn--)if(wt[mn]!==Yn[vn]){if(mn!==1||vn!==1)do if(mn--,vn--,vn<0||wt[mn]!==Yn[vn]){var xa=`\n`+wt[mn].replace(\" at new \",\" at \");return I.displayName&&xa.includes(\"<anonymous>\")&&(xa=xa.replace(\"<anonymous>\",I.displayName)),typeof I==\"function\"&&Wt.set(I,xa),xa}while(mn>=1&&vn>=0);break}}}finally{Ct=!1,Ye.current=Ut,nt(),Error.prepareStackTrace=xt}var vi=I?I.displayName||I.name:\"\",Ui=vi?Kt(vi):\"\";return typeof I==\"function\"&&Wt.set(I,Ui),Ui}function yn(I,he,Ee){return ma(I,!1)}function Zn(I){var he=I.prototype;return!!(he&&he.isReactComponent)}function Dn(I,he,Ee){if(I==null)return\"\";if(typeof I==\"function\")return ma(I,Zn(I));if(typeof I==\"string\")return Kt(I);switch(I){case F:return Kt(\"Suspense\");case R:return Kt(\"SuspenseList\")}if(typeof I==\"object\")switch(I.$$typeof){case K:return yn(I.render);case b:return Dn(I.type,he,Ee);case N:{var Ie=I,xt=Ie._payload,Ut=Ie._init;try{return Dn(Ut(xt),he,Ee)}catch(Bt){}}}return\"\"}var jn=Object.prototype.hasOwnProperty,ya={},Nr=q.ReactDebugCurrentFrame;function ja(I){if(I){var he=I._owner,Ee=Dn(I.type,I._source,he?he.type:null);Nr.setExtraStackFrame(Ee)}else Nr.setExtraStackFrame(null)}function qn(I,he,Ee,Ie,xt){{var Ut=Function.call.bind(jn);for(var Bt in I)if(Ut(I,Bt)){var wt=void 0;try{if(typeof I[Bt]!=\"function\"){var Yn=Error((Ie||\"React class\")+\": \"+Ee+\" type `\"+Bt+\"` is invalid; it must be a function, usually from the `prop-types` package, but received `\"+typeof I[Bt]+\"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.\");throw Yn.name=\"Invariant Violation\",Yn}wt=I[Bt](he,Bt,Ie,Ee,null,\"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\")}catch(mn){wt=mn}wt&&!(wt instanceof Error)&&(ja(xt),W(\"%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).\",Ie||\"React class\",Ee,Bt,typeof wt),ja(null)),wt instanceof Error&&!(wt.message in ya)&&(ya[wt.message]=!0,ja(xt),W(\"Failed %s type: %s\",Ee,wt.message),ja(null))}}}var Kn=Array.isArray;function Ln(I){return Kn(I)}function la(I){{var he=typeof Symbol==\"function\"&&Symbol.toStringTag,Ee=he&&I[Symbol.toStringTag]||I.constructor.name||\"Object\";return Ee}}function dr(I){try{return kn(I),!1}catch(he){return!0}}function kn(I){return\"\"+I}function sa(I){if(dr(I))return W(\"The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.\",la(I)),kn(I)}var La=q.ReactCurrentOwner,pr={key:!0,ref:!0,__self:!0,__source:!0},wr,Re;function ze(I){if(jn.call(I,\"ref\")){var he=Object.getOwnPropertyDescriptor(I,\"ref\").get;if(he&&he.isReactWarning)return!1}return I.ref!==void 0}function kt(I){if(jn.call(I,\"key\")){var he=Object.getOwnPropertyDescriptor(I,\"key\").get;if(he&&he.isReactWarning)return!1}return I.key!==void 0}function _t(I,he){typeof I.ref==\"string\"&&La.current}function pn(I,he){{var Ee=function(){wr||(wr=!0,W(\"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\",he))};Ee.isReactWarning=!0,Object.defineProperty(I,\"key\",{get:Ee,configurable:!0})}}function Nn(I,he){{var Ee=function(){Re||(Re=!0,W(\"%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)\",he))};Ee.isReactWarning=!0,Object.defineProperty(I,\"ref\",{get:Ee,configurable:!0})}}var gn=function(I,he,Ee,Ie,xt,Ut,Bt){var wt={$$typeof:o,type:I,key:he,ref:Ee,props:Bt,_owner:Ut};return wt._store={},Object.defineProperty(wt._store,\"validated\",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(wt,\"_self\",{configurable:!1,enumerable:!1,writable:!1,value:Ie}),Object.defineProperty(wt,\"_source\",{configurable:!1,enumerable:!1,writable:!1,value:xt}),Object.freeze&&(Object.freeze(wt.props),Object.freeze(wt)),wt};function ha(I,he,Ee,Ie,xt){{var Ut,Bt={},wt=null,Yn=null;Ee!==void 0&&(sa(Ee),wt=\"\"+Ee),kt(he)&&(sa(he.key),wt=\"\"+he.key),ze(he)&&(Yn=he.ref,_t(he,xt));for(Ut in he)jn.call(he,Ut)&&!pr.hasOwnProperty(Ut)&&(Bt[Ut]=he[Ut]);if(I&&I.defaultProps){var mn=I.defaultProps;for(Ut in mn)Bt[Ut]===void 0&&(Bt[Ut]=mn[Ut])}if(wt||Yn){var vn=typeof I==\"function\"?I.displayName||I.name||\"Unknown\":I;wt&&pn(Bt,vn),Yn&&Nn(Bt,vn)}return gn(I,wt,Yn,xt,Ie,La.current,Bt)}}var fn=q.ReactCurrentOwner,tn=q.ReactDebugCurrentFrame;function nn(I){if(I){var he=I._owner,Ee=Dn(I.type,I._source,he?he.type:null);tn.setExtraStackFrame(Ee)}else tn.setExtraStackFrame(null)}var Er;Er=!1;function Oa(I){return typeof I==\"object\"&&I!==null&&I.$$typeof===o}function Zr(){{if(fn.current){var I=qe(fn.current.type);if(I)return`\n\nCheck the render method of \\``+I+\"`.\"}return\"\"}}function po(I){return\"\"}var Ll={};function Ol(I){{var he=Zr();if(!he){var Ee=typeof I==\"string\"?I:I.displayName||I.name;Ee&&(he=`\n\nCheck the top-level render call using <`+Ee+\">.\")}return he}}function Yo(I,he){{if(!I._store||I._store.validated||I.key!=null)return;I._store.validated=!0;var Ee=Ol(he);if(Ll[Ee])return;Ll[Ee]=!0;var Ie=\"\";I&&I._owner&&I._owner!==fn.current&&(Ie=\" It was passed a child from \"+qe(I._owner.type)+\".\"),nn(I),W('Each child in a list should have a unique \"key\" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',Ee,Ie),nn(null)}}function Go(I,he){{if(typeof I!=\"object\")return;if(Ln(I))for(var Ee=0;Ee<I.length;Ee++){var Ie=I[Ee];Oa(Ie)&&Yo(Ie,he)}else if(Oa(I))I._store&&(I._store.validated=!0);else if(I){var xt=L(I);if(typeof xt==\"function\"&&xt!==I.entries)for(var Ut=xt.call(I),Bt;!(Bt=Ut.next()).done;)Oa(Bt.value)&&Yo(Bt.value,he)}}}function Vl(I){{var he=I.type;if(he==null||typeof he==\"string\")return;var Ee;if(typeof he==\"function\")Ee=he.propTypes;else if(typeof he==\"object\"&&(he.$$typeof===K||he.$$typeof===b))Ee=he.propTypes;else return;if(Ee){var Ie=qe(he);qn(Ee,I.props,\"prop\",Ie,I)}else if(he.PropTypes!==void 0&&!Er){Er=!0;var xt=qe(he);W(\"Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?\",xt||\"Unknown\")}typeof he.getDefaultProps==\"function\"&&!he.getDefaultProps.isReactClassApproved&&W(\"getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.\")}}function Wa(I){{for(var he=Object.keys(I.props),Ee=0;Ee<he.length;Ee++){var Ie=he[Ee];if(Ie!==\"children\"&&Ie!==\"key\"){nn(I),W(\"Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.\",Ie),nn(null);break}}I.ref!==null&&(nn(I),W(\"Invalid attribute `ref` supplied to `React.Fragment`.\"),nn(null))}}var Ja={};function Ka(I,he,Ee,Ie,xt,Ut){{var Bt=ut(I);if(!Bt){var wt=\"\";(I===void 0||typeof I==\"object\"&&I!==null&&Object.keys(I).length===0)&&(wt+=\" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.\");var Yn=po();Yn?wt+=Yn:wt+=Zr();var mn;I===null?mn=\"null\":Ln(I)?mn=\"array\":I!==void 0&&I.$$typeof===o?(mn=\"<\"+(qe(I.type)||\"Unknown\")+\" />\",wt=\" Did you accidentally export a JSX literal instead of a component?\"):mn=typeof I,W(\"React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s\",mn,wt)}var vn=ha(I,he,Ee,xt,Ut);if(vn==null)return vn;if(Bt){var xa=he.children;if(xa!==void 0)if(Ie)if(Ln(xa)){for(var vi=0;vi<xa.length;vi++)Go(xa[vi],I);Object.freeze&&Object.freeze(xa)}else W(\"React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.\");else Go(xa,I)}if(jn.call(he,\"key\")){var Ui=qe(I),Ft=Object.keys(he).filter(function(Il){return Il!==\"key\"}),Rt=Ft.length>0?\"{key: someKey, \"+Ft.join(\": ..., \")+\": ...}\":\"{key: someKey}\";if(!Ja[Ui+Rt]){var Si=Ft.length>0?\"{\"+Ft.join(\": ..., \")+\": ...}\":\"{}\";W(`A props object containing a \"key\" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />`,Rt,Ui,Si,Ui),Ja[Ui+Rt]=!0}}return I===p?Wa(vn):Vl(vn),vn}}function Di(I,he,Ee){return Ka(I,he,Ee,!0)}function gi(I,he,Ee){return Ka(I,he,Ee,!1)}var ji=gi,Li=Di;gf.Fragment=p,gf.jsx=ji,gf.jsxs=Li}()),gf}process.env.NODE_ENV===\"production\"?vv.exports=Xk():vv.exports=_k();var h=vv.exports;const Uv=Q.createContext({});function Sv(i){const o=Q.useRef(null);return o.current===null&&(o.current=i()),o.current}const z0=Q.createContext(null),yv=Q.createContext({transformPagePoint:i=>i,isStatic:!1,reducedMotion:\"never\"});class $k extends Q.Component{getSnapshotBeforeUpdate(o){const u=this.props.childRef.current;if(u&&o.isPresent&&!this.props.isPresent){const p=this.props.sizeRef.current;p.height=u.offsetHeight||0,p.width=u.offsetWidth||0,p.top=u.offsetTop,p.left=u.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function e2({children:i,isPresent:o}){const u=Q.useId(),p=Q.useRef(null),A=Q.useRef({width:0,height:0,top:0,left:0}),{nonce:U}=Q.useContext(yv);return Q.useInsertionEffect(()=>{const{width:m,height:y,top:K,left:F}=A.current;if(o||!p.current||!m||!y)return;p.current.dataset.motionPopId=u;const R=document.createElement(\"style\");return U&&(R.nonce=U),document.head.appendChild(R),R.sheet&&R.sheet.insertRule(`\n [data-motion-pop-id=\"${u}\"] {\n position: absolute !important;\n width: ${m}px !important;\n height: ${y}px !important;\n top: ${K}px !important;\n left: ${F}px !important;\n }\n `),()=>{document.head.removeChild(R)}},[o]),h.jsx($k,{isPresent:o,childRef:p,sizeRef:A,children:Q.cloneElement(i,{ref:p})})}const t2=({children:i,initial:o,isPresent:u,onExitComplete:p,custom:A,presenceAffectsLayout:U,mode:m})=>{const y=Sv(n2),K=Q.useId(),F=Q.useCallback(b=>{y.set(b,!0);for(const N of y.values())if(!N)return;p&&p()},[y,p]),R=Q.useMemo(()=>({id:K,initial:o,isPresent:u,custom:A,onExitComplete:F,register:b=>(y.set(b,!1),()=>y.delete(b))}),U?[Math.random(),F]:[u,F]);return Q.useMemo(()=>{y.forEach((b,N)=>y.set(N,!1))},[u]),Q.useEffect(()=>{!u&&!y.size&&p&&p()},[u]),m===\"popLayout\"&&(i=h.jsx(e2,{isPresent:u,children:i})),h.jsx(z0.Provider,{value:R,children:i})};function n2(){return new Map}function bx(i=!0){const o=Q.useContext(z0);if(o===null)return[!0,null];const{isPresent:u,onExitComplete:p,register:A}=o,U=Q.useId();Q.useEffect(()=>{i&&A(U)},[i]);const m=Q.useCallback(()=>i&&p&&p(U),[U,p,i]);return!u&&p?[!1,m]:[!0]}const H0=i=>i.key||\"\";function Rx(i){const o=[];return Q.Children.forEach(i,u=>{Q.isValidElement(u)&&o.push(u)}),o}const Kv=typeof window!=\"undefined\",kx=Kv?Q.useLayoutEffect:Q.useEffect,cd=({children:i,custom:o,initial:u=!0,onExitComplete:p,presenceAffectsLayout:A=!0,mode:U=\"sync\",propagate:m=!1})=>{const[y,K]=bx(m),F=Q.useMemo(()=>Rx(i),[i]),R=m&&!y?[]:F.map(H0),b=Q.useRef(!0),N=Q.useRef(F),E=Sv(()=>new Map),[O,B]=Q.useState(F),[L,q]=Q.useState(F);kx(()=>{b.current=!1,N.current=F;for(let P=0;P<L.length;P++){const te=H0(L[P]);R.includes(te)?E.delete(te):E.get(te)!==!0&&E.set(te,!1)}},[L,R.length,R.join(\"-\")]);const W=[];if(F!==O){let P=[...F];for(let te=0;te<L.length;te++){const me=L[te],ye=H0(me);R.includes(ye)||(P.splice(te,0,me),W.push(me))}U===\"wait\"&&W.length&&(P=W),q(Rx(P)),B(F);return}process.env.NODE_ENV!==\"production\"&&U===\"wait\"&&L.length>1&&console.warn(`You're attempting to animate multiple children within AnimatePresence, but its mode is set to \"wait\". This will lead to odd visual behaviour.`);const{forceRender:Y}=Q.useContext(Uv);return h.jsx(h.Fragment,{children:L.map(P=>{const te=H0(P),me=m&&!y?!1:F===L||R.includes(te),ye=()=>{if(E.has(te))E.set(te,!0);else return;let be=!0;E.forEach(Pe=>{Pe||(be=!1)}),be&&(Y==null||Y(),q(N.current),m&&(K==null||K()),p&&p())};return h.jsx(t2,{isPresent:me,initial:!b.current||u?void 0:!1,custom:me?void 0:o,presenceAffectsLayout:A,mode:U,onExitComplete:me?void 0:ye,children:P},te)})})},Hr=i=>i;let dd=Hr,Bs=Hr;process.env.NODE_ENV!==\"production\"&&(dd=(i,o)=>{!i&&typeof console!=\"undefined\"&&console.warn(o)},Bs=(i,o)=>{if(!i)throw new Error(o)});function xv(i){let o;return()=>(o===void 0&&(o=i()),o)}const pd=(i,o,u)=>{const p=o-i;return p===0?1:(u-i)/p},Vo=i=>i*1e3,Nl=i=>i/1e3,a2={useManualTiming:!1};function r2(i){let o=new Set,u=new Set,p=!1,A=!1;const U=new WeakSet;let m={delta:0,timestamp:0,isProcessing:!1};function y(F){U.has(F)&&(K.schedule(F),i()),F(m)}const K={schedule:(F,R=!1,b=!1)=>{const E=b&&p?o:u;return R&&U.add(F),E.has(F)||E.add(F),F},cancel:F=>{u.delete(F),U.delete(F)},process:F=>{if(m=F,p){A=!0;return}p=!0,[o,u]=[u,o],o.forEach(y),o.clear(),p=!1,A&&(A=!1,K.process(F))}};return K}const P0=[\"read\",\"resolveKeyframes\",\"update\",\"preRender\",\"render\",\"postRender\"],i2=40;function Nx(i,o){let u=!1,p=!0;const A={delta:0,timestamp:0,isProcessing:!1},U=()=>u=!0,m=P0.reduce((q,W)=>(q[W]=r2(U),q),{}),{read:y,resolveKeyframes:K,update:F,preRender:R,render:b,postRender:N}=m,E=()=>{const q=performance.now();u=!1,A.delta=p?1e3/60:Math.max(Math.min(q-A.timestamp,i2),1),A.timestamp=q,A.isProcessing=!0,y.process(A),K.process(A),F.process(A),R.process(A),b.process(A),N.process(A),A.isProcessing=!1,u&&o&&(p=!1,i(E))},O=()=>{u=!0,p=!0,A.isProcessing||i(E)};return{schedule:P0.reduce((q,W)=>{const Y=m[W];return q[W]=(P,te=!1,me=!1)=>(u||O(),Y.schedule(P,te,me)),q},{}),cancel:q=>{for(let W=0;W<P0.length;W++)m[P0[W]].cancel(q)},state:A,steps:m}}const{schedule:Cn,cancel:Qs,state:Ga,steps:Fv}=Nx(typeof requestAnimationFrame!=\"undefined\"?requestAnimationFrame:Hr,!0),wx=Q.createContext({strict:!1}),Ex={animation:[\"animate\",\"variants\",\"whileHover\",\"whileTap\",\"exit\",\"whileInView\",\"whileFocus\",\"whileDrag\"],exit:[\"exit\"],drag:[\"drag\",\"dragControls\"],focus:[\"whileFocus\"],hover:[\"whileHover\",\"onHoverStart\",\"onHoverEnd\"],tap:[\"whileTap\",\"onTap\",\"onTapStart\",\"onTapCancel\"],pan:[\"onPan\",\"onPanStart\",\"onPanSessionStart\",\"onPanEnd\"],inView:[\"whileInView\",\"onViewportEnter\",\"onViewportLeave\"],layout:[\"layout\",\"layoutId\"]},fd={};for(const i in Ex)fd[i]={isEnabled:o=>Ex[i].some(u=>!!o[u])};function o2(i){for(const o in i)fd[o]=ve(ve({},fd[o]),i[o])}const l2=new Set([\"animate\",\"exit\",\"variants\",\"initial\",\"style\",\"values\",\"variants\",\"transition\",\"transformTemplate\",\"custom\",\"inherit\",\"onBeforeLayoutMeasure\",\"onAnimationStart\",\"onAnimationComplete\",\"onUpdate\",\"onDragStart\",\"onDrag\",\"onDragEnd\",\"onMeasureDragConstraints\",\"onDirectionLock\",\"onDragTransitionEnd\",\"_dragX\",\"_dragY\",\"onHoverStart\",\"onHoverEnd\",\"onViewportEnter\",\"onViewportLeave\",\"globalTapTarget\",\"ignoreStrict\",\"viewport\"]);function Z0(i){return i.startsWith(\"while\")||i.startsWith(\"drag\")&&i!==\"draggable\"||i.startsWith(\"layout\")||i.startsWith(\"onTap\")||i.startsWith(\"onPan\")||i.startsWith(\"onLayout\")||l2.has(i)}let Mx=i=>!Z0(i);function s2(i){i&&(Mx=o=>o.startsWith(\"on\")?!Z0(o):i(o))}try{s2(require(\"@emotion/is-prop-valid\").default)}catch(i){}function u2(i,o,u){const p={};for(const A in i)A===\"values\"&&typeof i.values==\"object\"||(Mx(A)||u===!0&&Z0(A)||!o&&!Z0(A)||i.draggable&&A.startsWith(\"onDrag\"))&&(p[A]=i[A]);return p}const Bx=new Set;function X0(i,o,u){i||Bx.has(o)||(console.warn(o),Bx.add(o))}function c2(i){if(typeof Proxy==\"undefined\")return i;const o=new Map,u=(...p)=>(process.env.NODE_ENV!==\"production\"&&X0(!1,\"motion() is deprecated. Use motion.create() instead.\"),i(...p));return new Proxy(u,{get:(p,A)=>A===\"create\"?i:(o.has(A)||o.set(A,i(A)),o.get(A))})}const _0=Q.createContext({});function vf(i){return typeof i==\"string\"||Array.isArray(i)}function $0(i){return i!==null&&typeof i==\"object\"&&typeof i.start==\"function\"}const Tv=[\"animate\",\"whileInView\",\"whileFocus\",\"whileHover\",\"whileTap\",\"whileDrag\",\"exit\"],Cv=[\"initial\",...Tv];function eh(i){return $0(i.animate)||Cv.some(o=>vf(i[o]))}function Qx(i){return!!(eh(i)||i.variants)}function d2(i,o){if(eh(i)){const{initial:u,animate:p}=i;return{initial:u===!1||vf(u)?u:void 0,animate:vf(p)?p:void 0}}return i.inherit!==!1?o:{}}function p2(i){const{initial:o,animate:u}=d2(i,Q.useContext(_0));return Q.useMemo(()=>({initial:o,animate:u}),[Dx(o),Dx(u)])}function Dx(i){return Array.isArray(i)?i.join(\" \"):i}const f2=Symbol.for(\"motionComponentSymbol\");function md(i){return i&&typeof i==\"object\"&&Object.prototype.hasOwnProperty.call(i,\"current\")}function m2(i,o,u){return Q.useCallback(p=>{p&&i.onMount&&i.onMount(p),o&&(p?o.mount(p):o.unmount()),u&&(typeof u==\"function\"?u(p):md(u)&&(u.current=p))},[o])}const bv=i=>i.replace(/([a-z])([A-Z])/gu,\"$1-$2\").toLowerCase(),jx=\"data-\"+bv(\"framerAppearId\"),{schedule:Rv}=Nx(queueMicrotask,!1),Lx=Q.createContext({});function h2(i,o,u,p,A){var U,m;const{visualElement:y}=Q.useContext(_0),K=Q.useContext(wx),F=Q.useContext(z0),R=Q.useContext(yv).reducedMotion,b=Q.useRef(null);p=p||K.renderer,!b.current&&p&&(b.current=p(i,{visualState:o,parent:y,props:u,presenceContext:F,blockInitialAnimation:F?F.initial===!1:!1,reducedMotionConfig:R}));const N=b.current,E=Q.useContext(Lx);N&&!N.projection&&A&&(N.type===\"html\"||N.type===\"svg\")&&A2(b.current,u,A,E);const O=Q.useRef(!1);Q.useInsertionEffect(()=>{N&&O.current&&N.update(u,F)});const B=u[jx],L=Q.useRef(!!B&&!(!((U=window.MotionHandoffIsComplete)===null||U===void 0)&&U.call(window,B))&&((m=window.MotionHasOptimisedAnimation)===null||m===void 0?void 0:m.call(window,B)));return kx(()=>{N&&(O.current=!0,window.MotionIsMounted=!0,N.updateFeatures(),Rv.render(N.render),L.current&&N.animationState&&N.animationState.animateChanges())}),Q.useEffect(()=>{N&&(!L.current&&N.animationState&&N.animationState.animateChanges(),L.current&&(queueMicrotask(()=>{var q;(q=window.MotionHandoffMarkAsComplete)===null||q===void 0||q.call(window,B)}),L.current=!1))}),N}function A2(i,o,u,p){const{layoutId:A,layout:U,drag:m,dragConstraints:y,layoutScroll:K,layoutRoot:F}=o;i.projection=new u(i.latestValues,o[\"data-framer-portal-id\"]?void 0:Ox(i.parent)),i.projection.setOptions({layoutId:A,layout:U,alwaysMeasureLayout:!!m||y&&md(y),visualElement:i,animationType:typeof U==\"string\"?U:\"both\",initialPromotionConfig:p,layoutScroll:K,layoutRoot:F})}function Ox(i){if(i)return i.options.allowProjection!==!1?i.projection:Ox(i.parent)}function g2({preloadedFeatures:i,createVisualElement:o,useRender:u,useVisualState:p,Component:A}){var U,m;i&&o2(i);function y(F,R){let b;const N=it(ve(ve({},Q.useContext(yv)),F),{layoutId:v2(F)}),{isStatic:E}=N,O=p2(F),B=p(F,E);if(!E&&Kv){U2(N,i);const L=S2(N);b=L.MeasureLayout,O.visualElement=h2(A,B,N,o,L.ProjectionNode)}return h.jsxs(_0.Provider,{value:O,children:[b&&O.visualElement?h.jsx(b,ve({visualElement:O.visualElement},N)):null,u(A,F,m2(B,O.visualElement,R),B,E,O.visualElement)]})}y.displayName=`motion.${typeof A==\"string\"?A:`create(${(m=(U=A.displayName)!==null&&U!==void 0?U:A.name)!==null&&m!==void 0?m:\"\"})`}`;const K=Q.forwardRef(y);return K[f2]=A,K}function v2({layoutId:i}){const o=Q.useContext(Uv).id;return o&&i!==void 0?o+\"-\"+i:i}function U2(i,o){const u=Q.useContext(wx).strict;if(process.env.NODE_ENV!==\"production\"&&o&&u){const p=\"You have rendered a `motion` component within a `LazyMotion` component. This will break tree shaking. Import and render a `m` component instead.\";i.ignoreStrict?dd(!1,p):Bs(!1,p)}}function S2(i){const{drag:o,layout:u}=fd;if(!o&&!u)return{};const p=ve(ve({},o),u);return{MeasureLayout:o!=null&&o.isEnabled(i)||u!=null&&u.isEnabled(i)?p.MeasureLayout:void 0,ProjectionNode:p.ProjectionNode}}const y2=[\"animate\",\"circle\",\"defs\",\"desc\",\"ellipse\",\"g\",\"image\",\"line\",\"filter\",\"marker\",\"mask\",\"metadata\",\"path\",\"pattern\",\"polygon\",\"polyline\",\"rect\",\"stop\",\"switch\",\"symbol\",\"svg\",\"text\",\"tspan\",\"use\",\"view\"];function kv(i){return typeof i!=\"string\"||i.includes(\"-\")?!1:!!(y2.indexOf(i)>-1||/[A-Z]/u.test(i))}function Vx(i){const o=[{},{}];return i==null||i.values.forEach((u,p)=>{o[0][p]=u.get(),o[1][p]=u.getVelocity()}),o}function Nv(i,o,u,p){if(typeof o==\"function\"){const[A,U]=Vx(p);o=o(u!==void 0?u:i.custom,A,U)}if(typeof o==\"string\"&&(o=i.variants&&i.variants[o]),typeof o==\"function\"){const[A,U]=Vx(p);o=o(u!==void 0?u:i.custom,A,U)}return o}const wv=i=>Array.isArray(i),K2=i=>!!(i&&typeof i==\"object\"&&i.mix&&i.toValue),x2=i=>wv(i)?i[i.length-1]||0:i,ur=i=>!!(i&&i.getVelocity);function th(i){const o=ur(i)?i.get():i;return K2(o)?o.toValue():o}function F2({scrapeMotionValuesFromProps:i,createRenderState:o,onUpdate:u},p,A,U){const m={latestValues:T2(p,A,U,i),renderState:o()};return u&&(m.onMount=y=>u(ve({props:p,current:y},m)),m.onUpdate=y=>u(y)),m}const Ix=i=>(o,u)=>{const p=Q.useContext(_0),A=Q.useContext(z0),U=()=>F2(i,o,p,A);return u?U():Sv(U)};function T2(i,o,u,p){const A={},U=p(i,{});for(const E in U)A[E]=th(U[E]);let{initial:m,animate:y}=i;const K=eh(i),F=Qx(i);o&&F&&!K&&i.inherit!==!1&&(m===void 0&&(m=o.initial),y===void 0&&(y=o.animate));let R=u?u.initial===!1:!1;R=R||m===!1;const b=R?y:m;if(b&&typeof b!=\"boolean\"&&!$0(b)){const E=Array.isArray(b)?b:[b];for(let O=0;O<E.length;O++){const B=Nv(i,E[O]);if(B){const N=B,{transitionEnd:L,transition:q}=N,W=Wr(N,[\"transitionEnd\",\"transition\"]);for(const Y in W){let P=W[Y];if(Array.isArray(P)){const te=R?P.length-1:0;P=P[te]}P!==null&&(A[Y]=P)}for(const Y in L)A[Y]=L[Y]}}}return A}const hd=[\"transformPerspective\",\"x\",\"y\",\"z\",\"translateX\",\"translateY\",\"translateZ\",\"scale\",\"scaleX\",\"scaleY\",\"rotate\",\"rotateX\",\"rotateY\",\"rotateZ\",\"skew\",\"skewX\",\"skewY\"],Iu=new Set(hd),qx=i=>o=>typeof o==\"string\"&&o.startsWith(i),Yx=qx(\"--\"),C2=qx(\"var(--\"),Ev=i=>C2(i)?b2.test(i.split(\"/*\")[0].trim()):!1,b2=/var\\(--(?:[\\w-]+\\s*|[\\w-]+\\s*,(?:\\s*[^)(\\s]|\\s*\\((?:[^)(]|\\([^)(]*\\))*\\))+\\s*)\\)$/iu,Gx=(i,o)=>o&&typeof i==\"number\"?o.transform(i):i,wl=(i,o,u)=>u>o?o:u<i?i:u,Ad={test:i=>typeof i==\"number\",parse:parseFloat,transform:i=>i},Uf=it(ve({},Ad),{transform:i=>wl(0,1,i)}),nh=it(ve({},Ad),{default:1}),Sf=i=>({test:o=>typeof o==\"string\"&&o.endsWith(i)&&o.split(\" \").length===1,parse:parseFloat,transform:o=>`${o}${i}`}),Ds=Sf(\"deg\"),Io=Sf(\"%\"),ht=Sf(\"px\"),R2=Sf(\"vh\"),k2=Sf(\"vw\"),Wx=it(ve({},Io),{parse:i=>Io.parse(i)/100,transform:i=>Io.transform(i*100)}),N2={borderWidth:ht,borderTopWidth:ht,borderRightWidth:ht,borderBottomWidth:ht,borderLeftWidth:ht,borderRadius:ht,radius:ht,borderTopLeftRadius:ht,borderTopRightRadius:ht,borderBottomRightRadius:ht,borderBottomLeftRadius:ht,width:ht,maxWidth:ht,height:ht,maxHeight:ht,top:ht,right:ht,bottom:ht,left:ht,padding:ht,paddingTop:ht,paddingRight:ht,paddingBottom:ht,paddingLeft:ht,margin:ht,marginTop:ht,marginRight:ht,marginBottom:ht,marginLeft:ht,backgroundPositionX:ht,backgroundPositionY:ht},w2={rotate:Ds,rotateX:Ds,rotateY:Ds,rotateZ:Ds,scale:nh,scaleX:nh,scaleY:nh,scaleZ:nh,skew:Ds,skewX:Ds,skewY:Ds,distance:ht,translateX:ht,translateY:ht,translateZ:ht,x:ht,y:ht,z:ht,perspective:ht,transformPerspective:ht,opacity:Uf,originX:Wx,originY:Wx,originZ:ht},Jx=it(ve({},Ad),{transform:Math.round}),Mv=it(ve(ve({},N2),w2),{zIndex:Jx,size:ht,fillOpacity:Uf,strokeOpacity:Uf,numOctaves:Jx}),E2={x:\"translateX\",y:\"translateY\",z:\"translateZ\",transformPerspective:\"perspective\"},M2=hd.length;function B2(i,o,u){let p=\"\",A=!0;for(let U=0;U<M2;U++){const m=hd[U],y=i[m];if(y===void 0)continue;let K=!0;if(typeof y==\"number\"?K=y===(m.startsWith(\"scale\")?1:0):K=parseFloat(y)===0,!K||u){const F=Gx(y,Mv[m]);if(!K){A=!1;const R=E2[m]||m;p+=`${R}(${F}) `}u&&(o[m]=F)}}return p=p.trim(),u?p=u(o,A?\"\":p):A&&(p=\"none\"),p}function Bv(i,o,u){const{style:p,vars:A,transformOrigin:U}=i;let m=!1,y=!1;for(const K in o){const F=o[K];if(Iu.has(K)){m=!0;continue}else if(Yx(K)){A[K]=F;continue}else{const R=Gx(F,Mv[K]);K.startsWith(\"origin\")?(y=!0,U[K]=R):p[K]=R}}if(o.transform||(m||u?p.transform=B2(o,i.transform,u):p.transform&&(p.transform=\"none\")),y){const{originX:K=\"50%\",originY:F=\"50%\",originZ:R=0}=U;p.transformOrigin=`${K} ${F} ${R}`}}const Q2={offset:\"stroke-dashoffset\",array:\"stroke-dasharray\"},D2={offset:\"strokeDashoffset\",array:\"strokeDasharray\"};function j2(i,o,u=1,p=0,A=!0){i.pathLength=1;const U=A?Q2:D2;i[U.offset]=ht.transform(-p);const m=ht.transform(o),y=ht.transform(u);i[U.array]=`${m} ${y}`}function zx(i,o,u){return typeof i==\"string\"?i:ht.transform(o+u*i)}function L2(i,o,u){const p=zx(o,i.x,i.width),A=zx(u,i.y,i.height);return`${p} ${A}`}function Qv(i,N,R,b){var E=N,{attrX:o,attrY:u,attrScale:p,originX:A,originY:U,pathLength:m,pathSpacing:y=1,pathOffset:K=0}=E,F=Wr(E,[\"attrX\",\"attrY\",\"attrScale\",\"originX\",\"originY\",\"pathLength\",\"pathSpacing\",\"pathOffset\"]);if(Bv(i,F,b),R){i.style.viewBox&&(i.attrs.viewBox=i.style.viewBox);return}i.attrs=i.style,i.style={};const{attrs:O,style:B,dimensions:L}=i;O.transform&&(L&&(B.transform=O.transform),delete O.transform),L&&(A!==void 0||U!==void 0||B.transform)&&(B.transformOrigin=L2(L,A!==void 0?A:.5,U!==void 0?U:.5)),o!==void 0&&(O.x=o),u!==void 0&&(O.y=u),p!==void 0&&(O.scale=p),m!==void 0&&j2(O,m,y,K,!1)}const Dv=()=>({style:{},transform:{},transformOrigin:{},vars:{}}),Hx=()=>it(ve({},Dv()),{attrs:{}}),jv=i=>typeof i==\"string\"&&i.toLowerCase()===\"svg\";function Px(i,{style:o,vars:u},p,A){Object.assign(i.style,o,A&&A.getProjectionStyles(p));for(const U in u)i.style.setProperty(U,u[U])}const Zx=new Set([\"baseFrequency\",\"diffuseConstant\",\"kernelMatrix\",\"kernelUnitLength\",\"keySplines\",\"keyTimes\",\"limitingConeAngle\",\"markerHeight\",\"markerWidth\",\"numOctaves\",\"targetX\",\"targetY\",\"surfaceScale\",\"specularConstant\",\"specularExponent\",\"stdDeviation\",\"tableValues\",\"viewBox\",\"gradientTransform\",\"pathLength\",\"startOffset\",\"textLength\",\"lengthAdjust\"]);function Xx(i,o,u,p){Px(i,o,void 0,p);for(const A in o.attrs)i.setAttribute(Zx.has(A)?A:bv(A),o.attrs[A])}const ah={};function O2(i){Object.assign(ah,i)}function _x(i,{layout:o,layoutId:u}){return Iu.has(i)||i.startsWith(\"origin\")||(o||u!==void 0)&&(!!ah[i]||i===\"opacity\")}function Lv(i,o,u){var p;const{style:A}=i,U={};for(const m in A)(ur(A[m])||o.style&&ur(o.style[m])||_x(m,i)||((p=u==null?void 0:u.getValue(m))===null||p===void 0?void 0:p.liveStyle)!==void 0)&&(U[m]=A[m]);return U}function $x(i,o,u){const p=Lv(i,o,u);for(const A in i)if(ur(i[A])||ur(o[A])){const U=hd.indexOf(A)!==-1?\"attr\"+A.charAt(0).toUpperCase()+A.substring(1):A;p[U]=i[A]}return p}function V2(i,o){try{o.dimensions=typeof i.getBBox==\"function\"?i.getBBox():i.getBoundingClientRect()}catch(u){o.dimensions={x:0,y:0,width:0,height:0}}}const e1=[\"x\",\"y\",\"width\",\"height\",\"cx\",\"cy\",\"r\"],I2={useVisualState:Ix({scrapeMotionValuesFromProps:$x,createRenderState:Hx,onUpdate:({props:i,prevProps:o,current:u,renderState:p,latestValues:A})=>{if(!u)return;let U=!!i.drag;if(!U){for(const y in A)if(Iu.has(y)){U=!0;break}}if(!U)return;let m=!o;if(o)for(let y=0;y<e1.length;y++){const K=e1[y];i[K]!==o[K]&&(m=!0)}m&&Cn.read(()=>{V2(u,p),Cn.render(()=>{Qv(p,A,jv(u.tagName),i.transformTemplate),Xx(u,p)})})}})},q2={useVisualState:Ix({scrapeMotionValuesFromProps:Lv,createRenderState:Dv})};function t1(i,o,u){for(const p in o)!ur(o[p])&&!_x(p,u)&&(i[p]=o[p])}function Y2({transformTemplate:i},o){return Q.useMemo(()=>{const u=Dv();return Bv(u,o,i),Object.assign({},u.vars,u.style)},[o])}function G2(i,o){const u=i.style||{},p={};return t1(p,u,i),Object.assign(p,Y2(i,o)),p}function W2(i,o){const u={},p=G2(i,o);return i.drag&&i.dragListener!==!1&&(u.draggable=!1,p.userSelect=p.WebkitUserSelect=p.WebkitTouchCallout=\"none\",p.touchAction=i.drag===!0?\"none\":`pan-${i.drag===\"x\"?\"y\":\"x\"}`),i.tabIndex===void 0&&(i.onTap||i.onTapStart||i.whileTap)&&(u.tabIndex=0),u.style=p,u}function J2(i,o,u,p){const A=Q.useMemo(()=>{const U=Hx();return Qv(U,o,jv(p),i.transformTemplate),it(ve({},U.attrs),{style:ve({},U.style)})},[o]);if(i.style){const U={};t1(U,i.style,i),A.style=ve(ve({},U),A.style)}return A}function z2(i=!1){return(u,p,A,{latestValues:U},m)=>{const K=(kv(u)?J2:W2)(p,U,m,u),F=u2(p,typeof u==\"string\",i),R=u!==Q.Fragment?it(ve(ve({},F),K),{ref:A}):{},{children:b}=p,N=Q.useMemo(()=>ur(b)?b.get():b,[b]);return Q.createElement(u,it(ve({},R),{children:N}))}}function H2(i,o){return function(p,{forwardMotionProps:A}={forwardMotionProps:!1}){const U=kv(p)?I2:q2,m=it(ve({},U),{preloadedFeatures:i,useRender:z2(A),createVisualElement:o,Component:p});return g2(m)}}function n1(i,o){if(!Array.isArray(o))return!1;const u=o.length;if(u!==i.length)return!1;for(let p=0;p<u;p++)if(o[p]!==i[p])return!1;return!0}function rh(i,o,u){const p=i.getProps();return Nv(p,o,u!==void 0?u:p.custom,i)}const P2=xv(()=>window.ScrollTimeline!==void 0);class Z2{constructor(o){this.stop=()=>this.runAll(\"stop\"),this.animations=o.filter(Boolean)}get finished(){return Promise.all(this.animations.map(o=>\"finished\"in o?o.finished:o))}getAll(o){return this.animations[0][o]}setAll(o,u){for(let p=0;p<this.animations.length;p++)this.animations[p][o]=u}attachTimeline(o,u){const p=this.animations.map(A=>{if(P2()&&A.attachTimeline)return A.attachTimeline(o);if(typeof u==\"function\")return u(A)});return()=>{p.forEach((A,U)=>{A&&A(),this.animations[U].stop()})}}get time(){return this.getAll(\"time\")}set time(o){this.setAll(\"time\",o)}get speed(){return this.getAll(\"speed\")}set speed(o){this.setAll(\"speed\",o)}get startTime(){return this.getAll(\"startTime\")}get duration(){let o=0;for(let u=0;u<this.animations.length;u++)o=Math.max(o,this.animations[u].duration);return o}runAll(o){this.animations.forEach(u=>u[o]())}flatten(){this.runAll(\"flatten\")}play(){this.runAll(\"play\")}pause(){this.runAll(\"pause\")}cancel(){this.runAll(\"cancel\")}complete(){this.runAll(\"complete\")}}class X2 extends Z2{then(o,u){return Promise.all(this.animations).then(o).catch(u)}}function Ov(i,o){return i?i[o]||i.default||i:void 0}const Vv=2e4;function a1(i){let o=0;const u=50;let p=i.next(o);for(;!p.done&&o<Vv;)o+=u,p=i.next(o);return o>=Vv?1/0:o}function Iv(i){return typeof i==\"function\"}function r1(i,o){i.timeline=o,i.onfinish=null}const qv=i=>Array.isArray(i)&&typeof i[0]==\"number\",_2={linearEasing:void 0};function $2(i,o){const u=xv(i);return()=>{var p;return(p=_2[o])!==null&&p!==void 0?p:u()}}const ih=$2(()=>{try{document.createElement(\"div\").animate({opacity:0},{easing:\"linear(0, 1)\"})}catch(i){return!1}return!0},\"linearEasing\"),i1=(i,o,u=10)=>{let p=\"\";const A=Math.max(Math.round(o/u),2);for(let U=0;U<A;U++)p+=i(pd(0,A-1,U))+\", \";return`linear(${p.substring(0,p.length-2)})`};function o1(i){return!!(typeof i==\"function\"&&ih()||!i||typeof i==\"string\"&&(i in Yv||ih())||qv(i)||Array.isArray(i)&&i.every(o1))}const yf=([i,o,u,p])=>`cubic-bezier(${i}, ${o}, ${u}, ${p})`,Yv={linear:\"linear\",ease:\"ease\",easeIn:\"ease-in\",easeOut:\"ease-out\",easeInOut:\"ease-in-out\",circIn:yf([0,.65,.55,1]),circOut:yf([.55,0,1,.45]),backIn:yf([.31,.01,.66,-.59]),backOut:yf([.33,1.53,.69,.99])};function l1(i,o){if(i)return typeof i==\"function\"&&ih()?i1(i,o):qv(i)?yf(i):Array.isArray(i)?i.map(u=>l1(u,o)||Yv.easeOut):Yv[i]}const uo={x:!1,y:!1};function s1(){return uo.x||uo.y}function eN(i,o,u){var p;if(i instanceof Element)return[i];if(typeof i==\"string\"){let A=document;const U=(p=void 0)!==null&&p!==void 0?p:A.querySelectorAll(i);return U?Array.from(U):[]}return Array.from(i)}function u1(i,o){const u=eN(i),p=new AbortController,A=it(ve({passive:!0},o),{signal:p.signal});return[u,A,()=>p.abort()]}function c1(i){return o=>{o.pointerType===\"touch\"||s1()||i(o)}}function tN(i,o,u={}){const[p,A,U]=u1(i,u),m=c1(y=>{const{target:K}=y,F=o(y);if(typeof F!=\"function\"||!K)return;const R=c1(b=>{F(b),K.removeEventListener(\"pointerleave\",R)});K.addEventListener(\"pointerleave\",R,A)});return p.forEach(y=>{y.addEventListener(\"pointerenter\",m,A)}),U}const d1=(i,o)=>o?i===o?!0:d1(i,o.parentElement):!1,Gv=i=>i.pointerType===\"mouse\"?typeof i.button!=\"number\"||i.button<=0:i.isPrimary!==!1,nN=new Set([\"BUTTON\",\"INPUT\",\"SELECT\",\"TEXTAREA\",\"A\"]);function aN(i){return nN.has(i.tagName)||i.tabIndex!==-1}const Kf=new WeakSet;function p1(i){return o=>{o.key===\"Enter\"&&i(o)}}function Wv(i,o){i.dispatchEvent(new PointerEvent(\"pointer\"+o,{isPrimary:!0,bubbles:!0}))}const rN=(i,o)=>{const u=i.currentTarget;if(!u)return;const p=p1(()=>{if(Kf.has(u))return;Wv(u,\"down\");const A=p1(()=>{Wv(u,\"up\")}),U=()=>Wv(u,\"cancel\");u.addEventListener(\"keyup\",A,o),u.addEventListener(\"blur\",U,o)});u.addEventListener(\"keydown\",p,o),u.addEventListener(\"blur\",()=>u.removeEventListener(\"keydown\",p),o)};function f1(i){return Gv(i)&&!s1()}function iN(i,o,u={}){const[p,A,U]=u1(i,u),m=y=>{const K=y.currentTarget;if(!f1(y)||Kf.has(K))return;Kf.add(K);const F=o(y),R=(E,O)=>{window.removeEventListener(\"pointerup\",b),window.removeEventListener(\"pointercancel\",N),!(!f1(E)||!Kf.has(K))&&(Kf.delete(K),typeof F==\"function\"&&F(E,{success:O}))},b=E=>{R(E,u.useGlobalTarget||d1(K,E.target))},N=E=>{R(E,!1)};window.addEventListener(\"pointerup\",b,A),window.addEventListener(\"pointercancel\",N,A)};return p.forEach(y=>{!aN(y)&&y.getAttribute(\"tabindex\")===null&&(y.tabIndex=0),(u.useGlobalTarget?window:y).addEventListener(\"pointerdown\",m,A),y.addEventListener(\"focus\",F=>rN(F,A),A)}),U}function oN(i){return i===\"x\"||i===\"y\"?uo[i]?null:(uo[i]=!0,()=>{uo[i]=!1}):uo.x||uo.y?null:(uo.x=uo.y=!0,()=>{uo.x=uo.y=!1})}const m1=new Set([\"width\",\"height\",\"top\",\"left\",\"right\",\"bottom\",...hd]);let oh;function lN(){oh=void 0}const qo={now:()=>(oh===void 0&&qo.set(Ga.isProcessing||a2.useManualTiming?Ga.timestamp:performance.now()),oh),set:i=>{oh=i,queueMicrotask(lN)}};function Jv(i,o){i.indexOf(o)===-1&&i.push(o)}function zv(i,o){const u=i.indexOf(o);u>-1&&i.splice(u,1)}class Hv{constructor(){this.subscriptions=[]}add(o){return Jv(this.subscriptions,o),()=>zv(this.subscriptions,o)}notify(o,u,p){const A=this.subscriptions.length;if(A)if(A===1)this.subscriptions[0](o,u,p);else for(let U=0;U<A;U++){const m=this.subscriptions[U];m&&m(o,u,p)}}getSize(){return this.subscriptions.length}clear(){this.subscriptions.length=0}}function h1(i,o){return o?i*(1e3/o):0}const A1=30,sN=i=>!isNaN(parseFloat(i));class uN{constructor(o,u={}){this.version=\"11.18.2\",this.canTrackVelocity=null,this.events={},this.updateAndNotify=(p,A=!0)=>{const U=qo.now();this.updatedAt!==U&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(p),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),A&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(o),this.owner=u.owner}setCurrent(o){this.current=o,this.updatedAt=qo.now(),this.canTrackVelocity===null&&o!==void 0&&(this.canTrackVelocity=sN(this.current))}setPrevFrameValue(o=this.current){this.prevFrameValue=o,this.prevUpdatedAt=this.updatedAt}onChange(o){return process.env.NODE_ENV!==\"production\"&&X0(!1,'value.onChange(callback) is deprecated. Switch to value.on(\"change\", callback).'),this.on(\"change\",o)}on(o,u){this.events[o]||(this.events[o]=new Hv);const p=this.events[o].add(u);return o===\"change\"?()=>{p(),Cn.read(()=>{this.events.change.getSize()||this.stop()})}:p}clearListeners(){for(const o in this.events)this.events[o].clear()}attach(o,u){this.passiveEffect=o,this.stopPassiveEffect=u}set(o,u=!0){!u||!this.passiveEffect?this.updateAndNotify(o,u):this.passiveEffect(o,this.updateAndNotify)}setWithVelocity(o,u,p){this.set(u),this.prev=void 0,this.prevFrameValue=o,this.prevUpdatedAt=this.updatedAt-p}jump(o,u=!0){this.updateAndNotify(o),this.prev=o,this.prevUpdatedAt=this.prevFrameValue=void 0,u&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return this.current}getPrevious(){return this.prev}getVelocity(){const o=qo.now();if(!this.canTrackVelocity||this.prevFrameValue===void 0||o-this.updatedAt>A1)return 0;const u=Math.min(this.updatedAt-this.prevUpdatedAt,A1);return h1(parseFloat(this.current)-parseFloat(this.prevFrameValue),u)}start(o){return this.stop(),new Promise(u=>{this.hasAnimated=!0,this.animation=o(u),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function xf(i,o){return new uN(i,o)}function cN(i,o,u){i.hasValue(o)?i.getValue(o).set(u):i.addValue(o,xf(u))}function dN(i,o){let m=rh(i,o)||{},{transitionEnd:p={},transition:A={}}=m,U=Wr(m,[\"transitionEnd\",\"transition\"]);U=ve(ve({},U),p);for(const y in U){const K=x2(U[y]);cN(i,y,K)}}function pN(i){return!!(ur(i)&&i.add)}function Pv(i,o){const u=i.getValue(\"willChange\");if(pN(u))return u.add(o)}function g1(i){return i.props[jx]}const v1=(i,o,u)=>(((1-3*u+3*o)*i+(3*u-6*o))*i+3*o)*i,fN=1e-7,mN=12;function hN(i,o,u,p,A){let U,m,y=0;do m=o+(u-o)/2,U=v1(m,p,A)-i,U>0?u=m:o=m;while(Math.abs(U)>fN&&++y<mN);return m}function Ff(i,o,u,p){if(i===o&&u===p)return Hr;const A=U=>hN(U,0,1,i,u);return U=>U===0||U===1?U:v1(A(U),o,p)}const U1=i=>o=>o<=.5?i(2*o)/2:(2-i(2*(1-o)))/2,S1=i=>o=>1-i(1-o),y1=Ff(.33,1.53,.69,.99),Zv=S1(y1),K1=U1(Zv),x1=i=>(i*=2)<1?.5*Zv(i):.5*(2-Math.pow(2,-10*(i-1))),Xv=i=>1-Math.sin(Math.acos(i)),F1=S1(Xv),T1=U1(Xv),C1=i=>/^0[^.\\s]+$/u.test(i);function AN(i){return typeof i==\"number\"?i===0:i!==null?i===\"none\"||i===\"0\"||C1(i):!0}const Tf=i=>Math.round(i*1e5)/1e5,_v=/-?(?:\\d+(?:\\.\\d+)?|\\.\\d+)/gu;function gN(i){return i==null}const vN=/^(?:#[\\da-f]{3,8}|(?:rgb|hsl)a?\\((?:-?[\\d.]+%?[,\\s]+){2}-?[\\d.]+%?\\s*(?:[,/]\\s*)?(?:\\b\\d+(?:\\.\\d+)?|\\.\\d+)?%?\\))$/iu,$v=(i,o)=>u=>!!(typeof u==\"string\"&&vN.test(u)&&u.startsWith(i)||o&&!gN(u)&&Object.prototype.hasOwnProperty.call(u,o)),b1=(i,o,u)=>p=>{if(typeof p!=\"string\")return p;const[A,U,m,y]=p.match(_v);return{[i]:parseFloat(A),[o]:parseFloat(U),[u]:parseFloat(m),alpha:y!==void 0?parseFloat(y):1}},UN=i=>wl(0,255,i),eU=it(ve({},Ad),{transform:i=>Math.round(UN(i))}),qu={test:$v(\"rgb\",\"red\"),parse:b1(\"red\",\"green\",\"blue\"),transform:({red:i,green:o,blue:u,alpha:p=1})=>\"rgba(\"+eU.transform(i)+\", \"+eU.transform(o)+\", \"+eU.transform(u)+\", \"+Tf(Uf.transform(p))+\")\"};function SN(i){let o=\"\",u=\"\",p=\"\",A=\"\";return i.length>5?(o=i.substring(1,3),u=i.substring(3,5),p=i.substring(5,7),A=i.substring(7,9)):(o=i.substring(1,2),u=i.substring(2,3),p=i.substring(3,4),A=i.substring(4,5),o+=o,u+=u,p+=p,A+=A),{red:parseInt(o,16),green:parseInt(u,16),blue:parseInt(p,16),alpha:A?parseInt(A,16)/255:1}}const tU={test:$v(\"#\"),parse:SN,transform:qu.transform},gd={test:$v(\"hsl\",\"hue\"),parse:b1(\"hue\",\"saturation\",\"lightness\"),transform:({hue:i,saturation:o,lightness:u,alpha:p=1})=>\"hsla(\"+Math.round(i)+\", \"+Io.transform(Tf(o))+\", \"+Io.transform(Tf(u))+\", \"+Tf(Uf.transform(p))+\")\"},cr={test:i=>qu.test(i)||tU.test(i)||gd.test(i),parse:i=>qu.test(i)?qu.parse(i):gd.test(i)?gd.parse(i):tU.parse(i),transform:i=>typeof i==\"string\"?i:i.hasOwnProperty(\"red\")?qu.transform(i):gd.transform(i)},yN=/(?:#[\\da-f]{3,8}|(?:rgb|hsl)a?\\((?:-?[\\d.]+%?[,\\s]+){2}-?[\\d.]+%?\\s*(?:[,/]\\s*)?(?:\\b\\d+(?:\\.\\d+)?|\\.\\d+)?%?\\))/giu;function KN(i){var o,u;return isNaN(i)&&typeof i==\"string\"&&(((o=i.match(_v))===null||o===void 0?void 0:o.length)||0)+(((u=i.match(yN))===null||u===void 0?void 0:u.length)||0)>0}const R1=\"number\",k1=\"color\",xN=\"var\",FN=\"var(\",N1=\"${}\",TN=/var\\s*\\(\\s*--(?:[\\w-]+\\s*|[\\w-]+\\s*,(?:\\s*[^)(\\s]|\\s*\\((?:[^)(]|\\([^)(]*\\))*\\))+\\s*)\\)|#[\\da-f]{3,8}|(?:rgb|hsl)a?\\((?:-?[\\d.]+%?[,\\s]+){2}-?[\\d.]+%?\\s*(?:[,/]\\s*)?(?:\\b\\d+(?:\\.\\d+)?|\\.\\d+)?%?\\)|-?(?:\\d+(?:\\.\\d+)?|\\.\\d+)/giu;function Cf(i){const o=i.toString(),u=[],p={color:[],number:[],var:[]},A=[];let U=0;const y=o.replace(TN,K=>(cr.test(K)?(p.color.push(U),A.push(k1),u.push(cr.parse(K))):K.startsWith(FN)?(p.var.push(U),A.push(xN),u.push(K)):(p.number.push(U),A.push(R1),u.push(parseFloat(K))),++U,N1)).split(N1);return{values:u,split:y,indexes:p,types:A}}function w1(i){return Cf(i).values}function E1(i){const{split:o,types:u}=Cf(i),p=o.length;return A=>{let U=\"\";for(let m=0;m<p;m++)if(U+=o[m],A[m]!==void 0){const y=u[m];y===R1?U+=Tf(A[m]):y===k1?U+=cr.transform(A[m]):U+=A[m]}return U}}const CN=i=>typeof i==\"number\"?0:i;function bN(i){const o=w1(i);return E1(i)(o.map(CN))}const js={test:KN,parse:w1,createTransformer:E1,getAnimatableNone:bN},RN=new Set([\"brightness\",\"contrast\",\"saturate\",\"opacity\"]);function kN(i){const[o,u]=i.slice(0,-1).split(\"(\");if(o===\"drop-shadow\")return i;const[p]=u.match(_v)||[];if(!p)return i;const A=u.replace(p,\"\");let U=RN.has(o)?1:0;return p!==u&&(U*=100),o+\"(\"+U+A+\")\"}const NN=/\\b([a-z-]*)\\(.*?\\)/gu,nU=it(ve({},js),{getAnimatableNone:i=>{const o=i.match(NN);return o?o.map(kN).join(\" \"):i}}),wN=it(ve({},Mv),{color:cr,backgroundColor:cr,outlineColor:cr,fill:cr,stroke:cr,borderColor:cr,borderTopColor:cr,borderRightColor:cr,borderBottomColor:cr,borderLeftColor:cr,filter:nU,WebkitFilter:nU}),aU=i=>wN[i];function M1(i,o){let u=aU(i);return u!==nU&&(u=js),u.getAnimatableNone?u.getAnimatableNone(o):void 0}const EN=new Set([\"auto\",\"none\",\"0\"]);function MN(i,o,u){let p=0,A;for(;p<i.length&&!A;){const U=i[p];typeof U==\"string\"&&!EN.has(U)&&Cf(U).values.length&&(A=i[p]),p++}if(A&&u)for(const U of o)i[U]=M1(u,A)}const B1=i=>i===Ad||i===ht,Q1=(i,o)=>parseFloat(i.split(\", \")[o]),D1=(i,o)=>(u,{transform:p})=>{if(p===\"none\"||!p)return 0;const A=p.match(/^matrix3d\\((.+)\\)$/u);if(A)return Q1(A[1],o);{const U=p.match(/^matrix\\((.+)\\)$/u);return U?Q1(U[1],i):0}},BN=new Set([\"x\",\"y\",\"z\"]),QN=hd.filter(i=>!BN.has(i));function DN(i){const o=[];return QN.forEach(u=>{const p=i.getValue(u);p!==void 0&&(o.push([u,p.get()]),p.set(u.startsWith(\"scale\")?1:0))}),o}const vd={width:({x:i},{paddingLeft:o=\"0\",paddingRight:u=\"0\"})=>i.max-i.min-parseFloat(o)-parseFloat(u),height:({y:i},{paddingTop:o=\"0\",paddingBottom:u=\"0\"})=>i.max-i.min-parseFloat(o)-parseFloat(u),top:(i,{top:o})=>parseFloat(o),left:(i,{left:o})=>parseFloat(o),bottom:({y:i},{top:o})=>parseFloat(o)+(i.max-i.min),right:({x:i},{left:o})=>parseFloat(o)+(i.max-i.min),x:D1(4,13),y:D1(5,14)};vd.translateX=vd.x,vd.translateY=vd.y;const Yu=new Set;let rU=!1,iU=!1;function j1(){if(iU){const i=Array.from(Yu).filter(p=>p.needsMeasurement),o=new Set(i.map(p=>p.element)),u=new Map;o.forEach(p=>{const A=DN(p);A.length&&(u.set(p,A),p.render())}),i.forEach(p=>p.measureInitialState()),o.forEach(p=>{p.render();const A=u.get(p);A&&A.forEach(([U,m])=>{var y;(y=p.getValue(U))===null||y===void 0||y.set(m)})}),i.forEach(p=>p.measureEndState()),i.forEach(p=>{p.suspendedScrollY!==void 0&&window.scrollTo(0,p.suspendedScrollY)})}iU=!1,rU=!1,Yu.forEach(i=>i.complete()),Yu.clear()}function L1(){Yu.forEach(i=>{i.readKeyframes(),i.needsMeasurement&&(iU=!0)})}function jN(){L1(),j1()}class oU{constructor(o,u,p,A,U,m=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...o],this.onComplete=u,this.name=p,this.motionValue=A,this.element=U,this.isAsync=m}scheduleResolve(){this.isScheduled=!0,this.isAsync?(Yu.add(this),rU||(rU=!0,Cn.read(L1),Cn.resolveKeyframes(j1))):(this.readKeyframes(),this.complete())}readKeyframes(){const{unresolvedKeyframes:o,name:u,element:p,motionValue:A}=this;for(let U=0;U<o.length;U++)if(o[U]===null)if(U===0){const m=A==null?void 0:A.get(),y=o[o.length-1];if(m!==void 0)o[0]=m;else if(p&&u){const K=p.readValue(u,y);K!=null&&(o[0]=K)}o[0]===void 0&&(o[0]=y),A&&m===void 0&&A.set(o[0])}else o[U]=o[U-1]}setFinalKeyframe(){}measureInitialState(){}renderEndStyles(){}measureEndState(){}complete(){this.isComplete=!0,this.onComplete(this.unresolvedKeyframes,this.finalKeyframe),Yu.delete(this)}cancel(){this.isComplete||(this.isScheduled=!1,Yu.delete(this))}resume(){this.isComplete||this.scheduleResolve()}}const O1=i=>/^-?(?:\\d+(?:\\.\\d+)?|\\.\\d+)$/u.test(i),LN=/^var\\(--(?:([\\w-]+)|([\\w-]+), ?([a-zA-Z\\d ()%#.,-]+))\\)/u;function ON(i){const o=LN.exec(i);if(!o)return[,];const[,u,p,A]=o;return[`--${u!=null?u:p}`,A]}const VN=4;function V1(i,o,u=1){Bs(u<=VN,`Max CSS variable fallback depth detected in property \"${i}\". This may indicate a circular fallback dependency.`);const[p,A]=ON(i);if(!p)return;const U=window.getComputedStyle(o).getPropertyValue(p);if(U){const m=U.trim();return O1(m)?parseFloat(m):m}return Ev(A)?V1(A,o,u+1):A}const I1=i=>o=>o.test(i),q1=[Ad,ht,Io,Ds,k2,R2,{test:i=>i===\"auto\",parse:i=>i}],Y1=i=>q1.find(I1(i));class G1 extends oU{constructor(o,u,p,A,U){super(o,u,p,A,U,!0)}readKeyframes(){const{unresolvedKeyframes:o,element:u,name:p}=this;if(!u||!u.current)return;super.readKeyframes();for(let K=0;K<o.length;K++){let F=o[K];if(typeof F==\"string\"&&(F=F.trim(),Ev(F))){const R=V1(F,u.current);R!==void 0&&(o[K]=R),K===o.length-1&&(this.finalKeyframe=F)}}if(this.resolveNoneKeyframes(),!m1.has(p)||o.length!==2)return;const[A,U]=o,m=Y1(A),y=Y1(U);if(m!==y)if(B1(m)&&B1(y))for(let K=0;K<o.length;K++){const F=o[K];typeof F==\"string\"&&(o[K]=parseFloat(F))}else this.needsMeasurement=!0}resolveNoneKeyframes(){const{unresolvedKeyframes:o,name:u}=this,p=[];for(let A=0;A<o.length;A++)AN(o[A])&&p.push(A);p.length&&MN(o,p,u)}measureInitialState(){const{element:o,unresolvedKeyframes:u,name:p}=this;if(!o||!o.current)return;p===\"height\"&&(this.suspendedScrollY=window.pageYOffset),this.measuredOrigin=vd[p](o.measureViewportBox(),window.getComputedStyle(o.current)),u[0]=this.measuredOrigin;const A=u[u.length-1];A!==void 0&&o.getValue(p,A).jump(A,!1)}measureEndState(){var o;const{element:u,name:p,unresolvedKeyframes:A}=this;if(!u||!u.current)return;const U=u.getValue(p);U&&U.jump(this.measuredOrigin,!1);const m=A.length-1,y=A[m];A[m]=vd[p](u.measureViewportBox(),window.getComputedStyle(u.current)),y!==null&&this.finalKeyframe===void 0&&(this.finalKeyframe=y),!((o=this.removedTransforms)===null||o===void 0)&&o.length&&this.removedTransforms.forEach(([K,F])=>{u.getValue(K).set(F)}),this.resolveNoneKeyframes()}}const W1=(i,o)=>o===\"zIndex\"?!1:!!(typeof i==\"number\"||Array.isArray(i)||typeof i==\"string\"&&(js.test(i)||i===\"0\")&&!i.startsWith(\"url(\"));function IN(i){const o=i[0];if(i.length===1)return!0;for(let u=0;u<i.length;u++)if(i[u]!==o)return!0}function qN(i,o,u,p){const A=i[0];if(A===null)return!1;if(o===\"display\"||o===\"visibility\")return!0;const U=i[i.length-1],m=W1(A,o),y=W1(U,o);return dd(m===y,`You are trying to animate ${o} from \"${A}\" to \"${U}\". ${A} is not an animatable value - to enable this animation set ${A} to a value animatable to ${U} via the \\`style\\` property.`),!m||!y?!1:IN(i)||(u===\"spring\"||Iv(u))&&p}const YN=i=>i!==null;function lh(i,{repeat:o,repeatType:u=\"loop\"},p){const A=i.filter(YN),U=o&&u!==\"loop\"&&o%2===1?0:A.length-1;return!U||p===void 0?A[U]:p}const GN=40;class J1{constructor(K){var F=K,{autoplay:o=!0,delay:u=0,type:p=\"keyframes\",repeat:A=0,repeatDelay:U=0,repeatType:m=\"loop\"}=F,y=Wr(F,[\"autoplay\",\"delay\",\"type\",\"repeat\",\"repeatDelay\",\"repeatType\"]);this.isStopped=!1,this.hasAttemptedResolve=!1,this.createdAt=qo.now(),this.options=ve({autoplay:o,delay:u,type:p,repeat:A,repeatDelay:U,repeatType:m},y),this.updateFinishedPromise()}calcStartTime(){return this.resolvedAt?this.resolvedAt-this.createdAt>GN?this.resolvedAt:this.createdAt:this.createdAt}get resolved(){return!this._resolved&&!this.hasAttemptedResolve&&jN(),this._resolved}onKeyframesResolved(o,u){this.resolvedAt=qo.now(),this.hasAttemptedResolve=!0;const{name:p,type:A,velocity:U,delay:m,onComplete:y,onUpdate:K,isGenerator:F}=this.options;if(!F&&!qN(o,p,A,U))if(m)this.options.duration=0;else{K&&K(lh(o,this.options,u)),y&&y(),this.resolveFinishedPromise();return}const R=this.initPlayback(o,u);R!==!1&&(this._resolved=ve({keyframes:o,finalKeyframe:u},R),this.onPostResolved())}onPostResolved(){}then(o,u){return this.currentFinishedPromise.then(o,u)}flatten(){this.options.type=\"keyframes\",this.options.ease=\"linear\"}updateFinishedPromise(){this.currentFinishedPromise=new Promise(o=>{this.resolveFinishedPromise=o})}}const Vn=(i,o,u)=>i+(o-i)*u;function lU(i,o,u){return u<0&&(u+=1),u>1&&(u-=1),u<1/6?i+(o-i)*6*u:u<1/2?o:u<2/3?i+(o-i)*(2/3-u)*6:i}function WN({hue:i,saturation:o,lightness:u,alpha:p}){i/=360,o/=100,u/=100;let A=0,U=0,m=0;if(!o)A=U=m=u;else{const y=u<.5?u*(1+o):u+o-u*o,K=2*u-y;A=lU(K,y,i+1/3),U=lU(K,y,i),m=lU(K,y,i-1/3)}return{red:Math.round(A*255),green:Math.round(U*255),blue:Math.round(m*255),alpha:p}}function sh(i,o){return u=>u>0?o:i}const sU=(i,o,u)=>{const p=i*i,A=u*(o*o-p)+p;return A<0?0:Math.sqrt(A)},JN=[tU,qu,gd],zN=i=>JN.find(o=>o.test(i));function z1(i){const o=zN(i);if(dd(!!o,`'${i}' is not an animatable color. Use the equivalent color code instead.`),!o)return!1;let u=o.parse(i);return o===gd&&(u=WN(u)),u}const H1=(i,o)=>{const u=z1(i),p=z1(o);if(!u||!p)return sh(i,o);const A=ve({},u);return U=>(A.red=sU(u.red,p.red,U),A.green=sU(u.green,p.green,U),A.blue=sU(u.blue,p.blue,U),A.alpha=Vn(u.alpha,p.alpha,U),qu.transform(A))},HN=(i,o)=>u=>o(i(u)),bf=(...i)=>i.reduce(HN),uU=new Set([\"none\",\"hidden\"]);function PN(i,o){return uU.has(i)?u=>u<=0?i:o:u=>u>=1?o:i}function ZN(i,o){return u=>Vn(i,o,u)}function cU(i){return typeof i==\"number\"?ZN:typeof i==\"string\"?Ev(i)?sh:cr.test(i)?H1:$N:Array.isArray(i)?P1:typeof i==\"object\"?cr.test(i)?H1:XN:sh}function P1(i,o){const u=[...i],p=u.length,A=i.map((U,m)=>cU(U)(U,o[m]));return U=>{for(let m=0;m<p;m++)u[m]=A[m](U);return u}}function XN(i,o){const u=ve(ve({},i),o),p={};for(const A in u)i[A]!==void 0&&o[A]!==void 0&&(p[A]=cU(i[A])(i[A],o[A]));return A=>{for(const U in p)u[U]=p[U](A);return u}}function _N(i,o){var u;const p=[],A={color:0,var:0,number:0};for(let U=0;U<o.values.length;U++){const m=o.types[U],y=i.indexes[m][A[m]],K=(u=i.values[y])!==null&&u!==void 0?u:0;p[U]=K,A[m]++}return p}const $N=(i,o)=>{const u=js.createTransformer(o),p=Cf(i),A=Cf(o);return p.indexes.var.length===A.indexes.var.length&&p.indexes.color.length===A.indexes.color.length&&p.indexes.number.length>=A.indexes.number.length?uU.has(i)&&!A.values.length||uU.has(o)&&!p.values.length?PN(i,o):bf(P1(_N(p,A),A.values),u):(dd(!0,`Complex values '${i}' and '${o}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`),sh(i,o))};function Z1(i,o,u){return typeof i==\"number\"&&typeof o==\"number\"&&typeof u==\"number\"?Vn(i,o,u):cU(i)(i,o)}const ew=5;function X1(i,o,u){const p=Math.max(o-ew,0);return h1(u-i(p),o-p)}const In={stiffness:100,damping:10,mass:1,velocity:0,duration:800,bounce:.3,visualDuration:.3,restSpeed:{granular:.01,default:2},restDelta:{granular:.005,default:.5},minDuration:.01,maxDuration:10,minDamping:.05,maxDamping:1},dU=.001;function tw({duration:i=In.duration,bounce:o=In.bounce,velocity:u=In.velocity,mass:p=In.mass}){let A,U;dd(i<=Vo(In.maxDuration),\"Spring duration must be 10 seconds or less\");let m=1-o;m=wl(In.minDamping,In.maxDamping,m),i=wl(In.minDuration,In.maxDuration,Nl(i)),m<1?(A=F=>{const R=F*m,b=R*i,N=R-u,E=pU(F,m),O=Math.exp(-b);return dU-N/E*O},U=F=>{const b=F*m*i,N=b*u+u,E=Math.pow(m,2)*Math.pow(F,2)*i,O=Math.exp(-b),B=pU(Math.pow(F,2),m);return(-A(F)+dU>0?-1:1)*((N-E)*O)/B}):(A=F=>{const R=Math.exp(-F*i),b=(F-u)*i+1;return-dU+R*b},U=F=>{const R=Math.exp(-F*i),b=(u-F)*(i*i);return R*b});const y=5/i,K=aw(A,U,y);if(i=Vo(i),isNaN(K))return{stiffness:In.stiffness,damping:In.damping,duration:i};{const F=Math.pow(K,2)*p;return{stiffness:F,damping:m*2*Math.sqrt(p*F),duration:i}}}const nw=12;function aw(i,o,u){let p=u;for(let A=1;A<nw;A++)p=p-i(p)/o(p);return p}function pU(i,o){return i*Math.sqrt(1-o*o)}const rw=[\"duration\",\"bounce\"],iw=[\"stiffness\",\"damping\",\"mass\"];function _1(i,o){return o.some(u=>i[u]!==void 0)}function ow(i){let o=ve({velocity:In.velocity,stiffness:In.stiffness,damping:In.damping,mass:In.mass,isResolvedFromDuration:!1},i);if(!_1(i,iw)&&_1(i,rw))if(i.visualDuration){const u=i.visualDuration,p=2*Math.PI/(u*1.2),A=p*p,U=2*wl(.05,1,1-(i.bounce||0))*Math.sqrt(A);o=it(ve({},o),{mass:In.mass,stiffness:A,damping:U})}else{const u=tw(i);o=it(ve(ve({},o),u),{mass:In.mass}),o.isResolvedFromDuration=!0}return o}function $1(i=In.visualDuration,o=In.bounce){const u=typeof i!=\"object\"?{visualDuration:i,keyframes:[0,1],bounce:o}:i;let{restSpeed:p,restDelta:A}=u;const U=u.keyframes[0],m=u.keyframes[u.keyframes.length-1],y={done:!1,value:U},{stiffness:K,damping:F,mass:R,duration:b,velocity:N,isResolvedFromDuration:E}=ow(it(ve({},u),{velocity:-Nl(u.velocity||0)})),O=N||0,B=F/(2*Math.sqrt(K*R)),L=m-U,q=Nl(Math.sqrt(K/R)),W=Math.abs(L)<5;p||(p=W?In.restSpeed.granular:In.restSpeed.default),A||(A=W?In.restDelta.granular:In.restDelta.default);let Y;if(B<1){const te=pU(q,B);Y=me=>{const ye=Math.exp(-B*q*me);return m-ye*((O+B*q*L)/te*Math.sin(te*me)+L*Math.cos(te*me))}}else if(B===1)Y=te=>m-Math.exp(-q*te)*(L+(O+q*L)*te);else{const te=q*Math.sqrt(B*B-1);Y=me=>{const ye=Math.exp(-B*q*me),be=Math.min(te*me,300);return m-ye*((O+B*q*L)*Math.sinh(be)+te*L*Math.cosh(be))/te}}const P={calculatedDuration:E&&b||null,next:te=>{const me=Y(te);if(E)y.done=te>=b;else{let ye=0;B<1&&(ye=te===0?Vo(O):X1(Y,te,me));const be=Math.abs(ye)<=p,Pe=Math.abs(m-me)<=A;y.done=be&&Pe}return y.value=y.done?m:me,y},toString:()=>{const te=Math.min(a1(P),Vv),me=i1(ye=>P.next(te*ye).value,te,30);return te+\"ms \"+me}};return P}function eF({keyframes:i,velocity:o=0,power:u=.8,timeConstant:p=325,bounceDamping:A=10,bounceStiffness:U=500,modifyTarget:m,min:y,max:K,restDelta:F=.5,restSpeed:R}){const b=i[0],N={done:!1,value:b},E=be=>y!==void 0&&be<y||K!==void 0&&be>K,O=be=>y===void 0?K:K===void 0||Math.abs(y-be)<Math.abs(K-be)?y:K;let B=u*o;const L=b+B,q=m===void 0?L:m(L);q!==L&&(B=q-b);const W=be=>-B*Math.exp(-be/p),Y=be=>q+W(be),P=be=>{const Pe=W(be),ut=Y(be);N.done=Math.abs(Pe)<=F,N.value=N.done?q:ut};let te,me;const ye=be=>{E(N.value)&&(te=be,me=$1({keyframes:[N.value,O(N.value)],velocity:X1(Y,be,N.value),damping:A,stiffness:U,restDelta:F,restSpeed:R}))};return ye(0),{calculatedDuration:null,next:be=>{let Pe=!1;return!me&&te===void 0&&(Pe=!0,P(be),ye(be)),te!==void 0&&be>=te?me.next(be-te):(!Pe&&P(be),N)}}}const lw=Ff(.42,0,1,1),sw=Ff(0,0,.58,1),tF=Ff(.42,0,.58,1),uw=i=>Array.isArray(i)&&typeof i[0]!=\"number\",nF={linear:Hr,easeIn:lw,easeInOut:tF,easeOut:sw,circIn:Xv,circInOut:T1,circOut:F1,backIn:Zv,backInOut:K1,backOut:y1,anticipate:x1},aF=i=>{if(qv(i)){Bs(i.length===4,\"Cubic bezier arrays must contain four numerical values.\");const[o,u,p,A]=i;return Ff(o,u,p,A)}else if(typeof i==\"string\")return Bs(nF[i]!==void 0,`Invalid easing type '${i}'`),nF[i];return i};function cw(i,o,u){const p=[],A=u||Z1,U=i.length-1;for(let m=0;m<U;m++){let y=A(i[m],i[m+1]);if(o){const K=Array.isArray(o)?o[m]||Hr:o;y=bf(K,y)}p.push(y)}return p}function dw(i,o,{clamp:u=!0,ease:p,mixer:A}={}){const U=i.length;if(Bs(U===o.length,\"Both input and output ranges must be the same length\"),U===1)return()=>o[0];if(U===2&&o[0]===o[1])return()=>o[1];const m=i[0]===i[1];i[0]>i[U-1]&&(i=[...i].reverse(),o=[...o].reverse());const y=cw(o,p,A),K=y.length,F=R=>{if(m&&R<i[0])return o[0];let b=0;if(K>1)for(;b<i.length-2&&!(R<i[b+1]);b++);const N=pd(i[b],i[b+1],R);return y[b](N)};return u?R=>F(wl(i[0],i[U-1],R)):F}function pw(i,o){const u=i[i.length-1];for(let p=1;p<=o;p++){const A=pd(0,o,p);i.push(Vn(u,1,A))}}function fw(i){const o=[0];return pw(o,i.length-1),o}function mw(i,o){return i.map(u=>u*o)}function hw(i,o){return i.map(()=>o||tF).splice(0,i.length-1)}function uh({duration:i=300,keyframes:o,times:u,ease:p=\"easeInOut\"}){const A=uw(p)?p.map(aF):aF(p),U={done:!1,value:o[0]},m=mw(u&&u.length===o.length?u:fw(o),i),y=dw(m,o,{ease:Array.isArray(A)?A:hw(o,A)});return{calculatedDuration:i,next:K=>(U.value=y(K),U.done=K>=i,U)}}const Aw=i=>{const o=({timestamp:u})=>i(u);return{start:()=>Cn.update(o,!0),stop:()=>Qs(o),now:()=>Ga.isProcessing?Ga.timestamp:qo.now()}},gw={decay:eF,inertia:eF,tween:uh,keyframes:uh,spring:$1},vw=i=>i/100;class fU extends J1{constructor(o){super(o),this.holdTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState=\"running\",this.startTime=null,this.state=\"idle\",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,this.state===\"idle\")return;this.teardown();const{onStop:K}=this.options;K&&K()};const{name:u,motionValue:p,element:A,keyframes:U}=this.options,m=(A==null?void 0:A.KeyframeResolver)||oU,y=(K,F)=>this.onKeyframesResolved(K,F);this.resolver=new m(U,y,u,p,A),this.resolver.scheduleResolve()}flatten(){super.flatten(),this._resolved&&Object.assign(this._resolved,this.initPlayback(this._resolved.keyframes))}initPlayback(o){const{type:u=\"keyframes\",repeat:p=0,repeatDelay:A=0,repeatType:U,velocity:m=0}=this.options,y=Iv(u)?u:gw[u]||uh;let K,F;y!==uh&&typeof o[0]!=\"number\"&&(process.env.NODE_ENV!==\"production\"&&Bs(o.length===2,`Only two keyframes currently supported with spring and inertia animations. Trying to animate ${o}`),K=bf(vw,Z1(o[0],o[1])),o=[0,100]);const R=y(it(ve({},this.options),{keyframes:o}));U===\"mirror\"&&(F=y(it(ve({},this.options),{keyframes:[...o].reverse(),velocity:-m}))),R.calculatedDuration===null&&(R.calculatedDuration=a1(R));const{calculatedDuration:b}=R,N=b+A,E=N*(p+1)-A;return{generator:R,mirroredGenerator:F,mapPercentToKeyframes:K,calculatedDuration:b,resolvedDuration:N,totalDuration:E}}onPostResolved(){const{autoplay:o=!0}=this.options;this.play(),this.pendingPlayState===\"paused\"||!o?this.pause():this.state=this.pendingPlayState}tick(o,u=!1){const{resolved:p}=this;if(!p){const{keyframes:be}=this.options;return{done:!0,value:be[be.length-1]}}const{finalKeyframe:A,generator:U,mirroredGenerator:m,mapPercentToKeyframes:y,keyframes:K,calculatedDuration:F,totalDuration:R,resolvedDuration:b}=p;if(this.startTime===null)return U.next(0);const{delay:N,repeat:E,repeatType:O,repeatDelay:B,onUpdate:L}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,o):this.speed<0&&(this.startTime=Math.min(o-R/this.speed,this.startTime)),u?this.currentTime=o:this.holdTime!==null?this.currentTime=this.holdTime:this.currentTime=Math.round(o-this.startTime)*this.speed;const q=this.currentTime-N*(this.speed>=0?1:-1),W=this.speed>=0?q<0:q>R;this.currentTime=Math.max(q,0),this.state===\"finished\"&&this.holdTime===null&&(this.currentTime=R);let Y=this.currentTime,P=U;if(E){const be=Math.min(this.currentTime,R)/b;let Pe=Math.floor(be),ut=be%1;!ut&&be>=1&&(ut=1),ut===1&&Pe--,Pe=Math.min(Pe,E+1),!!(Pe%2)&&(O===\"reverse\"?(ut=1-ut,B&&(ut-=B/b)):O===\"mirror\"&&(P=m)),Y=wl(0,1,ut)*b}const te=W?{done:!1,value:K[0]}:P.next(Y);y&&(te.value=y(te.value));let{done:me}=te;!W&&F!==null&&(me=this.speed>=0?this.currentTime>=R:this.currentTime<=0);const ye=this.holdTime===null&&(this.state===\"finished\"||this.state===\"running\"&&me);return ye&&A!==void 0&&(te.value=lh(K,this.options,A)),L&&L(te.value),ye&&this.finish(),te}get duration(){const{resolved:o}=this;return o?Nl(o.calculatedDuration):0}get time(){return Nl(this.currentTime)}set time(o){o=Vo(o),this.currentTime=o,this.holdTime!==null||this.speed===0?this.holdTime=o:this.driver&&(this.startTime=this.driver.now()-o/this.speed)}get speed(){return this.playbackSpeed}set speed(o){const u=this.playbackSpeed!==o;this.playbackSpeed=o,u&&(this.time=Nl(this.currentTime))}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState=\"running\";return}if(this.isStopped)return;const{driver:o=Aw,onPlay:u,startTime:p}=this.options;this.driver||(this.driver=o(U=>this.tick(U))),u&&u();const A=this.driver.now();this.holdTime!==null?this.startTime=A-this.holdTime:this.startTime?this.state===\"finished\"&&(this.startTime=A):this.startTime=p!=null?p:this.calcStartTime(),this.state===\"finished\"&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state=\"running\",this.driver.start()}pause(){var o;if(!this._resolved){this.pendingPlayState=\"paused\";return}this.state=\"paused\",this.holdTime=(o=this.currentTime)!==null&&o!==void 0?o:0}complete(){this.state!==\"running\"&&this.play(),this.pendingPlayState=this.state=\"finished\",this.holdTime=null}finish(){this.teardown(),this.state=\"finished\";const{onComplete:o}=this.options;o&&o()}cancel(){this.cancelTime!==null&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state=\"idle\",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(o){return this.startTime=0,this.tick(o,!0)}}const Uw=new Set([\"opacity\",\"clipPath\",\"filter\",\"transform\"]);function Sw(i,o,u,{delay:p=0,duration:A=300,repeat:U=0,repeatType:m=\"loop\",ease:y=\"easeInOut\",times:K}={}){const F={[o]:u};K&&(F.offset=K);const R=l1(y,A);return Array.isArray(R)&&(F.easing=R),i.animate(F,{delay:p,duration:A,easing:Array.isArray(R)?\"linear\":R,fill:\"both\",iterations:U+1,direction:m===\"reverse\"?\"alternate\":\"normal\"})}const yw=xv(()=>Object.hasOwnProperty.call(Element.prototype,\"animate\")),ch=10,Kw=2e4;function xw(i){return Iv(i.type)||i.type===\"spring\"||!o1(i.ease)}function Fw(i,o){const u=new fU(it(ve({},o),{keyframes:i,repeat:0,delay:0,isGenerator:!0}));let p={done:!1,value:i[0]};const A=[];let U=0;for(;!p.done&&U<Kw;)p=u.sample(U),A.push(p.value),U+=ch;return{times:void 0,keyframes:A,duration:U-ch,ease:\"linear\"}}const rF={anticipate:x1,backInOut:K1,circInOut:T1};function Tw(i){return i in rF}class iF extends J1{constructor(o){super(o);const{name:u,motionValue:p,element:A,keyframes:U}=this.options;this.resolver=new G1(U,(m,y)=>this.onKeyframesResolved(m,y),u,p,A),this.resolver.scheduleResolve()}initPlayback(o,u){let{duration:p=300,times:A,ease:U,type:m,motionValue:y,name:K,startTime:F}=this.options;if(!y.owner||!y.owner.current)return!1;if(typeof U==\"string\"&&ih()&&Tw(U)&&(U=rF[U]),xw(this.options)){const b=this.options,{onComplete:N,onUpdate:E,motionValue:O,element:B}=b,L=Wr(b,[\"onComplete\",\"onUpdate\",\"motionValue\",\"element\"]),q=Fw(o,L);o=q.keyframes,o.length===1&&(o[1]=o[0]),p=q.duration,A=q.times,U=q.ease,m=\"keyframes\"}const R=Sw(y.owner.current,K,o,it(ve({},this.options),{duration:p,times:A,ease:U}));return R.startTime=F!=null?F:this.calcStartTime(),this.pendingTimeline?(r1(R,this.pendingTimeline),this.pendingTimeline=void 0):R.onfinish=()=>{const{onComplete:N}=this.options;y.set(lh(o,this.options,u)),N&&N(),this.cancel(),this.resolveFinishedPromise()},{animation:R,duration:p,times:A,type:m,ease:U,keyframes:o}}get duration(){const{resolved:o}=this;if(!o)return 0;const{duration:u}=o;return Nl(u)}get time(){const{resolved:o}=this;if(!o)return 0;const{animation:u}=o;return Nl(u.currentTime||0)}set time(o){const{resolved:u}=this;if(!u)return;const{animation:p}=u;p.currentTime=Vo(o)}get speed(){const{resolved:o}=this;if(!o)return 1;const{animation:u}=o;return u.playbackRate}set speed(o){const{resolved:u}=this;if(!u)return;const{animation:p}=u;p.playbackRate=o}get state(){const{resolved:o}=this;if(!o)return\"idle\";const{animation:u}=o;return u.playState}get startTime(){const{resolved:o}=this;if(!o)return null;const{animation:u}=o;return u.startTime}attachTimeline(o){if(!this._resolved)this.pendingTimeline=o;else{const{resolved:u}=this;if(!u)return Hr;const{animation:p}=u;r1(p,o)}return Hr}play(){if(this.isStopped)return;const{resolved:o}=this;if(!o)return;const{animation:u}=o;u.playState===\"finished\"&&this.updateFinishedPromise(),u.play()}pause(){const{resolved:o}=this;if(!o)return;const{animation:u}=o;u.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,this.state===\"idle\")return;this.resolveFinishedPromise(),this.updateFinishedPromise();const{resolved:o}=this;if(!o)return;const{animation:u,keyframes:p,duration:A,type:U,ease:m,times:y}=o;if(u.playState===\"idle\"||u.playState===\"finished\")return;if(this.time){const F=this.options,{motionValue:R,onUpdate:b,onComplete:N,element:E}=F,O=Wr(F,[\"motionValue\",\"onUpdate\",\"onComplete\",\"element\"]),B=new fU(it(ve({},O),{keyframes:p,duration:A,type:U,ease:m,times:y,isGenerator:!0})),L=Vo(this.time);R.setWithVelocity(B.sample(L-ch).value,B.sample(L).value,ch)}const{onStop:K}=this.options;K&&K(),this.cancel()}complete(){const{resolved:o}=this;o&&o.animation.finish()}cancel(){const{resolved:o}=this;o&&o.animation.cancel()}static supports(o){const{motionValue:u,name:p,repeatDelay:A,repeatType:U,damping:m,type:y}=o;if(!u||!u.owner||!(u.owner.current instanceof HTMLElement))return!1;const{onUpdate:K,transformTemplate:F}=u.owner.getProps();return yw()&&p&&Uw.has(p)&&!K&&!F&&!A&&U!==\"mirror\"&&m!==0&&y!==\"inertia\"}}const Cw={type:\"spring\",stiffness:500,damping:25,restSpeed:10},bw=i=>({type:\"spring\",stiffness:550,damping:i===0?2*Math.sqrt(550):30,restSpeed:10}),Rw={type:\"keyframes\",duration:.8},kw={type:\"keyframes\",ease:[.25,.1,.35,1],duration:.3},Nw=(i,{keyframes:o})=>o.length>2?Rw:Iu.has(i)?i.startsWith(\"scale\")?bw(o[1]):Cw:kw;function ww(b){var N=b,{when:i,delay:o,delayChildren:u,staggerChildren:p,staggerDirection:A,repeat:U,repeatType:m,repeatDelay:y,from:K,elapsed:F}=N,R=Wr(N,[\"when\",\"delay\",\"delayChildren\",\"staggerChildren\",\"staggerDirection\",\"repeat\",\"repeatType\",\"repeatDelay\",\"from\",\"elapsed\"]);return!!Object.keys(R).length}const mU=(i,o,u,p={},A,U)=>m=>{const y=Ov(p,i)||{},K=y.delay||p.delay||0;let{elapsed:F=0}=p;F=F-Vo(K);let R=it(ve({keyframes:Array.isArray(u)?u:[null,u],ease:\"easeOut\",velocity:o.getVelocity()},y),{delay:-F,onUpdate:N=>{o.set(N),y.onUpdate&&y.onUpdate(N)},onComplete:()=>{m(),y.onComplete&&y.onComplete()},name:i,motionValue:o,element:U?void 0:A});ww(y)||(R=ve(ve({},R),Nw(i,R))),R.duration&&(R.duration=Vo(R.duration)),R.repeatDelay&&(R.repeatDelay=Vo(R.repeatDelay)),R.from!==void 0&&(R.keyframes[0]=R.from);let b=!1;if((R.type===!1||R.duration===0&&!R.repeatDelay)&&(R.duration=0,R.delay===0&&(b=!0)),b&&!U&&o.get()!==void 0){const N=lh(R.keyframes,y);if(N!==void 0)return Cn.update(()=>{R.onUpdate(N),R.onComplete()}),new X2([])}return!U&&iF.supports(R)?new iF(R):new fU(R)};function Ew({protectedKeys:i,needsAnimating:o},u){const p=i.hasOwnProperty(u)&&o[u]!==!0;return o[u]=!1,p}function oF(i,o,{delay:u=0,transitionOverride:p,type:A}={}){var U;let b=o,{transition:m=i.getDefaultTransition(),transitionEnd:y}=b,K=Wr(b,[\"transition\",\"transitionEnd\"]);p&&(m=p);const F=[],R=A&&i.animationState&&i.animationState.getState()[A];for(const N in K){const E=i.getValue(N,(U=i.latestValues[N])!==null&&U!==void 0?U:null),O=K[N];if(O===void 0||R&&Ew(R,N))continue;const B=ve({delay:u},Ov(m||{},N));let L=!1;if(window.MotionHandoffAnimation){const W=g1(i);if(W){const Y=window.MotionHandoffAnimation(W,N,Cn);Y!==null&&(B.startTime=Y,L=!0)}}Pv(i,N),E.start(mU(N,E,O,i.shouldReduceMotion&&m1.has(N)?{type:!1}:B,i,L));const q=E.animation;q&&F.push(q)}return y&&Promise.all(F).then(()=>{Cn.update(()=>{y&&dN(i,y)})}),F}function hU(i,o,u={}){var p;const A=rh(i,o,u.type===\"exit\"?(p=i.presenceContext)===null||p===void 0?void 0:p.custom:void 0);let{transition:U=i.getDefaultTransition()||{}}=A||{};u.transitionOverride&&(U=u.transitionOverride);const m=A?()=>Promise.all(oF(i,A,u)):()=>Promise.resolve(),y=i.variantChildren&&i.variantChildren.size?(F=0)=>{const{delayChildren:R=0,staggerChildren:b,staggerDirection:N}=U;return Mw(i,o,R+F,b,N,u)}:()=>Promise.resolve(),{when:K}=U;if(K){const[F,R]=K===\"beforeChildren\"?[m,y]:[y,m];return F().then(()=>R())}else return Promise.all([m(),y(u.delay)])}function Mw(i,o,u=0,p=0,A=1,U){const m=[],y=(i.variantChildren.size-1)*p,K=A===1?(F=0)=>F*p:(F=0)=>y-F*p;return Array.from(i.variantChildren).sort(Bw).forEach((F,R)=>{F.notify(\"AnimationStart\",o),m.push(hU(F,o,it(ve({},U),{delay:u+K(R)})).then(()=>F.notify(\"AnimationComplete\",o)))}),Promise.all(m)}function Bw(i,o){return i.sortNodePosition(o)}function Qw(i,o,u={}){i.notify(\"AnimationStart\",o);let p;if(Array.isArray(o)){const A=o.map(U=>hU(i,U,u));p=Promise.all(A)}else if(typeof o==\"string\")p=hU(i,o,u);else{const A=typeof o==\"function\"?rh(i,o,u.custom):o;p=Promise.all(oF(i,A,u))}return p.then(()=>{i.notify(\"AnimationComplete\",o)})}const Dw=Cv.length;function lF(i){if(!i)return;if(!i.isControllingVariants){const u=i.parent?lF(i.parent)||{}:{};return i.props.initial!==void 0&&(u.initial=i.props.initial),u}const o={};for(let u=0;u<Dw;u++){const p=Cv[u],A=i.props[p];(vf(A)||A===!1)&&(o[p]=A)}return o}const jw=[...Tv].reverse(),Lw=Tv.length;function Ow(i){return o=>Promise.all(o.map(({animation:u,options:p})=>Qw(i,u,p)))}function Vw(i){let o=Ow(i),u=sF(),p=!0;const A=K=>(F,R)=>{var b;const N=rh(i,R,K===\"exit\"?(b=i.presenceContext)===null||b===void 0?void 0:b.custom:void 0);if(N){const E=N,{transition:O,transitionEnd:B}=E,L=Wr(E,[\"transition\",\"transitionEnd\"]);F=ve(ve(ve({},F),L),B)}return F};function U(K){o=K(i)}function m(K){const{props:F}=i,R=lF(i.parent)||{},b=[],N=new Set;let E={},O=1/0;for(let L=0;L<Lw;L++){const q=jw[L],W=u[q],Y=F[q]!==void 0?F[q]:R[q],P=vf(Y),te=q===K?W.isActive:null;te===!1&&(O=L);let me=Y===R[q]&&Y!==F[q]&&P;if(me&&p&&i.manuallyAnimateOnMount&&(me=!1),W.protectedKeys=ve({},E),!W.isActive&&te===null||!Y&&!W.prevProp||$0(Y)||typeof Y==\"boolean\")continue;const ye=Iw(W.prevProp,Y);let be=ye||q===K&&W.isActive&&!me&&P||L>O&&P,Pe=!1;const ut=Array.isArray(Y)?Y:[Y];let gt=ut.reduce(A(q),{});te===!1&&(gt={});const{prevResolvedValues:Ce={}}=W,qe=ve(ve({},Ce),gt),dt=Ke=>{be=!0,N.has(Ke)&&(Pe=!0,N.delete(Ke)),W.needsAnimating[Ke]=!0;const de=i.getValue(Ke);de&&(de.liveStyle=!1)};for(const Ke in qe){const de=gt[Ke],ee=Ce[Ke];if(E.hasOwnProperty(Ke))continue;let fe=!1;wv(de)&&wv(ee)?fe=!n1(de,ee):fe=de!==ee,fe?de!=null?dt(Ke):N.add(Ke):de!==void 0&&N.has(Ke)?dt(Ke):W.protectedKeys[Ke]=!0}W.prevProp=Y,W.prevResolvedValues=gt,W.isActive&&(E=ve(ve({},E),gt)),p&&i.blockInitialAnimation&&(be=!1),be&&(!(me&&ye)||Pe)&&b.push(...ut.map(Ke=>({animation:Ke,options:{type:q}})))}if(N.size){const L={};N.forEach(q=>{const W=i.getBaseTarget(q),Y=i.getValue(q);Y&&(Y.liveStyle=!0),L[q]=W!=null?W:null}),b.push({animation:L})}let B=!!b.length;return p&&(F.initial===!1||F.initial===F.animate)&&!i.manuallyAnimateOnMount&&(B=!1),p=!1,B?o(b):Promise.resolve()}function y(K,F){var R;if(u[K].isActive===F)return Promise.resolve();(R=i.variantChildren)===null||R===void 0||R.forEach(N=>{var E;return(E=N.animationState)===null||E===void 0?void 0:E.setActive(K,F)}),u[K].isActive=F;const b=m(K);for(const N in u)u[N].protectedKeys={};return b}return{animateChanges:m,setActive:y,setAnimateFunction:U,getState:()=>u,reset:()=>{u=sF(),p=!0}}}function Iw(i,o){return typeof o==\"string\"?o!==i:Array.isArray(o)?!n1(o,i):!1}function Gu(i=!1){return{isActive:i,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function sF(){return{animate:Gu(!0),whileInView:Gu(),whileHover:Gu(),whileTap:Gu(),whileDrag:Gu(),whileFocus:Gu(),exit:Gu()}}class Ls{constructor(o){this.isMounted=!1,this.node=o}update(){}}class qw extends Ls{constructor(o){super(o),o.animationState||(o.animationState=Vw(o))}updateAnimationControlsSubscription(){const{animate:o}=this.node.getProps();$0(o)&&(this.unmountControls=o.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:o}=this.node.getProps(),{animate:u}=this.node.prevProps||{};o!==u&&this.updateAnimationControlsSubscription()}unmount(){var o;this.node.animationState.reset(),(o=this.unmountControls)===null||o===void 0||o.call(this)}}let Yw=0;class Gw extends Ls{constructor(){super(...arguments),this.id=Yw++}update(){if(!this.node.presenceContext)return;const{isPresent:o,onExitComplete:u}=this.node.presenceContext,{isPresent:p}=this.node.prevPresenceContext||{};if(!this.node.animationState||o===p)return;const A=this.node.animationState.setActive(\"exit\",!o);u&&!o&&A.then(()=>u(this.id))}mount(){const{register:o}=this.node.presenceContext||{};o&&(this.unmount=o(this.id))}unmount(){}}const Ww={animation:{Feature:qw},exit:{Feature:Gw}};function Rf(i,o,u,p={passive:!0}){return i.addEventListener(o,u,p),()=>i.removeEventListener(o,u)}function kf(i){return{point:{x:i.pageX,y:i.pageY}}}const Jw=i=>o=>Gv(o)&&i(o,kf(o));function Nf(i,o,u,p){return Rf(i,o,Jw(u),p)}const uF=(i,o)=>Math.abs(i-o);function zw(i,o){const u=uF(i.x,o.x),p=uF(i.y,o.y);return Math.sqrt(hx(u,2)+hx(p,2))}class cF{constructor(o,u,{transformPagePoint:p,contextWindow:A,dragSnapToOrigin:U=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const b=gU(this.lastMoveEventInfo,this.history),N=this.startEvent!==null,E=zw(b.offset,{x:0,y:0})>=3;if(!N&&!E)return;const{point:O}=b,{timestamp:B}=Ga;this.history.push(it(ve({},O),{timestamp:B}));const{onStart:L,onMove:q}=this.handlers;N||(L&&L(this.lastMoveEvent,b),this.startEvent=this.lastMoveEvent),q&&q(this.lastMoveEvent,b)},this.handlePointerMove=(b,N)=>{this.lastMoveEvent=b,this.lastMoveEventInfo=AU(N,this.transformPagePoint),Cn.update(this.updatePoint,!0)},this.handlePointerUp=(b,N)=>{this.end();const{onEnd:E,onSessionEnd:O,resumeAnimation:B}=this.handlers;if(this.dragSnapToOrigin&&B&&B(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;const L=gU(b.type===\"pointercancel\"?this.lastMoveEventInfo:AU(N,this.transformPagePoint),this.history);this.startEvent&&E&&E(b,L),O&&O(b,L)},!Gv(o))return;this.dragSnapToOrigin=U,this.handlers=u,this.transformPagePoint=p,this.contextWindow=A||window;const m=kf(o),y=AU(m,this.transformPagePoint),{point:K}=y,{timestamp:F}=Ga;this.history=[it(ve({},K),{timestamp:F})];const{onSessionStart:R}=u;R&&R(o,gU(y,this.history)),this.removeListeners=bf(Nf(this.contextWindow,\"pointermove\",this.handlePointerMove),Nf(this.contextWindow,\"pointerup\",this.handlePointerUp),Nf(this.contextWindow,\"pointercancel\",this.handlePointerUp))}updateHandlers(o){this.handlers=o}end(){this.removeListeners&&this.removeListeners(),Qs(this.updatePoint)}}function AU(i,o){return o?{point:o(i.point)}:i}function dF(i,o){return{x:i.x-o.x,y:i.y-o.y}}function gU({point:i},o){return{point:i,delta:dF(i,pF(o)),offset:dF(i,Hw(o)),velocity:Pw(o,.1)}}function Hw(i){return i[0]}function pF(i){return i[i.length-1]}function Pw(i,o){if(i.length<2)return{x:0,y:0};let u=i.length-1,p=null;const A=pF(i);for(;u>=0&&(p=i[u],!(A.timestamp-p.timestamp>Vo(o)));)u--;if(!p)return{x:0,y:0};const U=Nl(A.timestamp-p.timestamp);if(U===0)return{x:0,y:0};const m={x:(A.x-p.x)/U,y:(A.y-p.y)/U};return m.x===1/0&&(m.x=0),m.y===1/0&&(m.y=0),m}const fF=1e-4,Zw=1-fF,Xw=1+fF,mF=.01,_w=0-mF,$w=0+mF;function hi(i){return i.max-i.min}function eE(i,o,u){return Math.abs(i-o)<=u}function hF(i,o,u,p=.5){i.origin=p,i.originPoint=Vn(o.min,o.max,i.origin),i.scale=hi(u)/hi(o),i.translate=Vn(u.min,u.max,i.origin)-i.originPoint,(i.scale>=Zw&&i.scale<=Xw||isNaN(i.scale))&&(i.scale=1),(i.translate>=_w&&i.translate<=$w||isNaN(i.translate))&&(i.translate=0)}function wf(i,o,u,p){hF(i.x,o.x,u.x,p?p.originX:void 0),hF(i.y,o.y,u.y,p?p.originY:void 0)}function AF(i,o,u){i.min=u.min+o.min,i.max=i.min+hi(o)}function tE(i,o,u){AF(i.x,o.x,u.x),AF(i.y,o.y,u.y)}function gF(i,o,u){i.min=o.min-u.min,i.max=i.min+hi(o)}function Ef(i,o,u){gF(i.x,o.x,u.x),gF(i.y,o.y,u.y)}function nE(i,{min:o,max:u},p){return o!==void 0&&i<o?i=p?Vn(o,i,p.min):Math.max(i,o):u!==void 0&&i>u&&(i=p?Vn(u,i,p.max):Math.min(i,u)),i}function vF(i,o,u){return{min:o!==void 0?i.min+o:void 0,max:u!==void 0?i.max+u-(i.max-i.min):void 0}}function aE(i,{top:o,left:u,bottom:p,right:A}){return{x:vF(i.x,u,A),y:vF(i.y,o,p)}}function UF(i,o){let u=o.min-i.min,p=o.max-i.max;return o.max-o.min<i.max-i.min&&([u,p]=[p,u]),{min:u,max:p}}function rE(i,o){return{x:UF(i.x,o.x),y:UF(i.y,o.y)}}function iE(i,o){let u=.5;const p=hi(i),A=hi(o);return A>p?u=pd(o.min,o.max-p,i.min):p>A&&(u=pd(i.min,i.max-A,o.min)),wl(0,1,u)}function oE(i,o){const u={};return o.min!==void 0&&(u.min=o.min-i.min),o.max!==void 0&&(u.max=o.max-i.min),u}const vU=.35;function lE(i=vU){return i===!1?i=0:i===!0&&(i=vU),{x:SF(i,\"left\",\"right\"),y:SF(i,\"top\",\"bottom\")}}function SF(i,o,u){return{min:yF(i,o),max:yF(i,u)}}function yF(i,o){return typeof i==\"number\"?i:i[o]||0}const KF=()=>({translate:0,scale:1,origin:0,originPoint:0}),Ud=()=>({x:KF(),y:KF()}),xF=()=>({min:0,max:0}),oa=()=>({x:xF(),y:xF()});function Bi(i){return[i(\"x\"),i(\"y\")]}function FF({top:i,left:o,right:u,bottom:p}){return{x:{min:o,max:u},y:{min:i,max:p}}}function sE({x:i,y:o}){return{top:o.min,right:i.max,bottom:o.max,left:i.min}}function uE(i,o){if(!o)return i;const u=o({x:i.left,y:i.top}),p=o({x:i.right,y:i.bottom});return{top:u.y,left:u.x,bottom:p.y,right:p.x}}function UU(i){return i===void 0||i===1}function SU({scale:i,scaleX:o,scaleY:u}){return!UU(i)||!UU(o)||!UU(u)}function Wu(i){return SU(i)||TF(i)||i.z||i.rotate||i.rotateX||i.rotateY||i.skewX||i.skewY}function TF(i){return CF(i.x)||CF(i.y)}function CF(i){return i&&i!==\"0%\"}function dh(i,o,u){const p=i-u,A=o*p;return u+A}function bF(i,o,u,p,A){return A!==void 0&&(i=dh(i,A,p)),dh(i,u,p)+o}function yU(i,o=0,u=1,p,A){i.min=bF(i.min,o,u,p,A),i.max=bF(i.max,o,u,p,A)}function RF(i,{x:o,y:u}){yU(i.x,o.translate,o.scale,o.originPoint),yU(i.y,u.translate,u.scale,u.originPoint)}const kF=.999999999999,NF=1.0000000000001;function cE(i,o,u,p=!1){const A=u.length;if(!A)return;o.x=o.y=1;let U,m;for(let y=0;y<A;y++){U=u[y],m=U.projectionDelta;const{visualElement:K}=U.options;K&&K.props.style&&K.props.style.display===\"contents\"||(p&&U.options.layoutScroll&&U.scroll&&U!==U.root&&yd(i,{x:-U.scroll.offset.x,y:-U.scroll.offset.y}),m&&(o.x*=m.x.scale,o.y*=m.y.scale,RF(i,m)),p&&Wu(U.latestValues)&&yd(i,U.latestValues))}o.x<NF&&o.x>kF&&(o.x=1),o.y<NF&&o.y>kF&&(o.y=1)}function Sd(i,o){i.min=i.min+o,i.max=i.max+o}function wF(i,o,u,p,A=.5){const U=Vn(i.min,i.max,A);yU(i,o,u,U,p)}function yd(i,o){wF(i.x,o.x,o.scaleX,o.scale,o.originX),wF(i.y,o.y,o.scaleY,o.scale,o.originY)}function EF(i,o){return FF(uE(i.getBoundingClientRect(),o))}function dE(i,o,u){const p=EF(i,u),{scroll:A}=o;return A&&(Sd(p.x,A.offset.x),Sd(p.y,A.offset.y)),p}const MF=({current:i})=>i?i.ownerDocument.defaultView:null,pE=new WeakMap;class fE{constructor(o){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=oa(),this.visualElement=o}start(o,{snapToCursor:u=!1}={}){const{presenceContext:p}=this.visualElement;if(p&&p.isPresent===!1)return;const A=R=>{const{dragSnapToOrigin:b}=this.getProps();b?this.pauseAnimation():this.stopAnimation(),u&&this.snapToCursor(kf(R).point)},U=(R,b)=>{const{drag:N,dragPropagation:E,onDragStart:O}=this.getProps();if(N&&!E&&(this.openDragLock&&this.openDragLock(),this.openDragLock=oN(N),!this.openDragLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),Bi(L=>{let q=this.getAxisMotionValue(L).get()||0;if(Io.test(q)){const{projection:W}=this.visualElement;if(W&&W.layout){const Y=W.layout.layoutBox[L];Y&&(q=hi(Y)*(parseFloat(q)/100))}}this.originPoint[L]=q}),O&&Cn.postRender(()=>O(R,b)),Pv(this.visualElement,\"transform\");const{animationState:B}=this.visualElement;B&&B.setActive(\"whileDrag\",!0)},m=(R,b)=>{const{dragPropagation:N,dragDirectionLock:E,onDirectionLock:O,onDrag:B}=this.getProps();if(!N&&!this.openDragLock)return;const{offset:L}=b;if(E&&this.currentDirection===null){this.currentDirection=mE(L),this.currentDirection!==null&&O&&O(this.currentDirection);return}this.updateAxis(\"x\",b.point,L),this.updateAxis(\"y\",b.point,L),this.visualElement.render(),B&&B(R,b)},y=(R,b)=>this.stop(R,b),K=()=>Bi(R=>{var b;return this.getAnimationState(R)===\"paused\"&&((b=this.getAxisMotionValue(R).animation)===null||b===void 0?void 0:b.play())}),{dragSnapToOrigin:F}=this.getProps();this.panSession=new cF(o,{onSessionStart:A,onStart:U,onMove:m,onSessionEnd:y,resumeAnimation:K},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:F,contextWindow:MF(this.visualElement)})}stop(o,u){const p=this.isDragging;if(this.cancel(),!p)return;const{velocity:A}=u;this.startAnimation(A);const{onDragEnd:U}=this.getProps();U&&Cn.postRender(()=>U(o,u))}cancel(){this.isDragging=!1;const{projection:o,animationState:u}=this.visualElement;o&&(o.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:p}=this.getProps();!p&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),u&&u.setActive(\"whileDrag\",!1)}updateAxis(o,u,p){const{drag:A}=this.getProps();if(!p||!ph(o,A,this.currentDirection))return;const U=this.getAxisMotionValue(o);let m=this.originPoint[o]+p[o];this.constraints&&this.constraints[o]&&(m=nE(m,this.constraints[o],this.elastic[o])),U.set(m)}resolveConstraints(){var o;const{dragConstraints:u,dragElastic:p}=this.getProps(),A=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):(o=this.visualElement.projection)===null||o===void 0?void 0:o.layout,U=this.constraints;u&&md(u)?this.constraints||(this.constraints=this.resolveRefConstraints()):u&&A?this.constraints=aE(A.layoutBox,u):this.constraints=!1,this.elastic=lE(p),U!==this.constraints&&A&&this.constraints&&!this.hasMutatedConstraints&&Bi(m=>{this.constraints!==!1&&this.getAxisMotionValue(m)&&(this.constraints[m]=oE(A.layoutBox[m],this.constraints[m]))})}resolveRefConstraints(){const{dragConstraints:o,onMeasureDragConstraints:u}=this.getProps();if(!o||!md(o))return!1;const p=o.current;Bs(p!==null,\"If `dragConstraints` is set as a React ref, that ref must be passed to another component's `ref` prop.\");const{projection:A}=this.visualElement;if(!A||!A.layout)return!1;const U=dE(p,A.root,this.visualElement.getTransformPagePoint());let m=rE(A.layout.layoutBox,U);if(u){const y=u(sE(m));this.hasMutatedConstraints=!!y,y&&(m=FF(y))}return m}startAnimation(o){const{drag:u,dragMomentum:p,dragElastic:A,dragTransition:U,dragSnapToOrigin:m,onDragTransitionEnd:y}=this.getProps(),K=this.constraints||{},F=Bi(R=>{if(!ph(R,u,this.currentDirection))return;let b=K&&K[R]||{};m&&(b={min:0,max:0});const N=A?200:1e6,E=A?40:1e7,O=ve(ve({type:\"inertia\",velocity:p?o[R]:0,bounceStiffness:N,bounceDamping:E,timeConstant:750,restDelta:1,restSpeed:10},U),b);return this.startAxisValueAnimation(R,O)});return Promise.all(F).then(y)}startAxisValueAnimation(o,u){const p=this.getAxisMotionValue(o);return Pv(this.visualElement,o),p.start(mU(o,p,0,u,this.visualElement,!1))}stopAnimation(){Bi(o=>this.getAxisMotionValue(o).stop())}pauseAnimation(){Bi(o=>{var u;return(u=this.getAxisMotionValue(o).animation)===null||u===void 0?void 0:u.pause()})}getAnimationState(o){var u;return(u=this.getAxisMotionValue(o).animation)===null||u===void 0?void 0:u.state}getAxisMotionValue(o){const u=`_drag${o.toUpperCase()}`,p=this.visualElement.getProps(),A=p[u];return A||this.visualElement.getValue(o,(p.initial?p.initial[o]:void 0)||0)}snapToCursor(o){Bi(u=>{const{drag:p}=this.getProps();if(!ph(u,p,this.currentDirection))return;const{projection:A}=this.visualElement,U=this.getAxisMotionValue(u);if(A&&A.layout){const{min:m,max:y}=A.layout.layoutBox[u];U.set(o[u]-Vn(m,y,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:o,dragConstraints:u}=this.getProps(),{projection:p}=this.visualElement;if(!md(u)||!p||!this.constraints)return;this.stopAnimation();const A={x:0,y:0};Bi(m=>{const y=this.getAxisMotionValue(m);if(y&&this.constraints!==!1){const K=y.get();A[m]=iE({min:K,max:K},this.constraints[m])}});const{transformTemplate:U}=this.visualElement.getProps();this.visualElement.current.style.transform=U?U({},\"\"):\"none\",p.root&&p.root.updateScroll(),p.updateLayout(),this.resolveConstraints(),Bi(m=>{if(!ph(m,o,null))return;const y=this.getAxisMotionValue(m),{min:K,max:F}=this.constraints[m];y.set(Vn(K,F,A[m]))})}addListeners(){if(!this.visualElement.current)return;pE.set(this.visualElement,this);const o=this.visualElement.current,u=Nf(o,\"pointerdown\",K=>{const{drag:F,dragListener:R=!0}=this.getProps();F&&R&&this.start(K)}),p=()=>{const{dragConstraints:K}=this.getProps();md(K)&&K.current&&(this.constraints=this.resolveRefConstraints())},{projection:A}=this.visualElement,U=A.addEventListener(\"measure\",p);A&&!A.layout&&(A.root&&A.root.updateScroll(),A.updateLayout()),Cn.read(p);const m=Rf(window,\"resize\",()=>this.scalePositionWithinConstraints()),y=A.addEventListener(\"didUpdate\",({delta:K,hasLayoutChanged:F})=>{this.isDragging&&F&&(Bi(R=>{const b=this.getAxisMotionValue(R);b&&(this.originPoint[R]+=K[R].translate,b.set(b.get()+K[R].translate))}),this.visualElement.render())});return()=>{m(),u(),U(),y&&y()}}getProps(){const o=this.visualElement.getProps(),{drag:u=!1,dragDirectionLock:p=!1,dragPropagation:A=!1,dragConstraints:U=!1,dragElastic:m=vU,dragMomentum:y=!0}=o;return it(ve({},o),{drag:u,dragDirectionLock:p,dragPropagation:A,dragConstraints:U,dragElastic:m,dragMomentum:y})}}function ph(i,o,u){return(o===!0||o===i)&&(u===null||u===i)}function mE(i,o=10){let u=null;return Math.abs(i.y)>o?u=\"y\":Math.abs(i.x)>o&&(u=\"x\"),u}class hE extends Ls{constructor(o){super(o),this.removeGroupControls=Hr,this.removeListeners=Hr,this.controls=new fE(o)}mount(){const{dragControls:o}=this.node.getProps();o&&(this.removeGroupControls=o.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||Hr}unmount(){this.removeGroupControls(),this.removeListeners()}}const BF=i=>(o,u)=>{i&&Cn.postRender(()=>i(o,u))};class AE extends Ls{constructor(){super(...arguments),this.removePointerDownListener=Hr}onPointerDown(o){this.session=new cF(o,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:MF(this.node)})}createPanHandlers(){const{onPanSessionStart:o,onPanStart:u,onPan:p,onPanEnd:A}=this.node.getProps();return{onSessionStart:BF(o),onStart:BF(u),onMove:p,onEnd:(U,m)=>{delete this.session,A&&Cn.postRender(()=>A(U,m))}}}mount(){this.removePointerDownListener=Nf(this.node.current,\"pointerdown\",o=>this.onPointerDown(o))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}const fh={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function QF(i,o){return o.max===o.min?0:i/(o.max-o.min)*100}const Mf={correct:(i,o)=>{if(!o.target)return i;if(typeof i==\"string\")if(ht.test(i))i=parseFloat(i);else return i;const u=QF(i,o.target.x),p=QF(i,o.target.y);return`${u}% ${p}%`}},gE={correct:(i,{treeScale:o,projectionDelta:u})=>{const p=i,A=js.parse(i);if(A.length>5)return p;const U=js.createTransformer(i),m=typeof A[0]!=\"number\"?1:0,y=u.x.scale*o.x,K=u.y.scale*o.y;A[0+m]/=y,A[1+m]/=K;const F=Vn(y,K,.5);return typeof A[2+m]==\"number\"&&(A[2+m]/=F),typeof A[3+m]==\"number\"&&(A[3+m]/=F),U(A)}};class vE extends Q.Component{componentDidMount(){const{visualElement:o,layoutGroup:u,switchLayoutGroup:p,layoutId:A}=this.props,{projection:U}=o;O2(UE),U&&(u.group&&u.group.add(U),p&&p.register&&A&&p.register(U),U.root.didUpdate(),U.addEventListener(\"animationComplete\",()=>{this.safeToRemove()}),U.setOptions(it(ve({},U.options),{onExitComplete:()=>this.safeToRemove()}))),fh.hasEverUpdated=!0}getSnapshotBeforeUpdate(o){const{layoutDependency:u,visualElement:p,drag:A,isPresent:U}=this.props,m=p.projection;return m&&(m.isPresent=U,A||o.layoutDependency!==u||u===void 0?m.willUpdate():this.safeToRemove(),o.isPresent!==U&&(U?m.promote():m.relegate()||Cn.postRender(()=>{const y=m.getStack();(!y||!y.members.length)&&this.safeToRemove()}))),null}componentDidUpdate(){const{projection:o}=this.props.visualElement;o&&(o.root.didUpdate(),Rv.postRender(()=>{!o.currentAnimation&&o.isLead()&&this.safeToRemove()}))}componentWillUnmount(){const{visualElement:o,layoutGroup:u,switchLayoutGroup:p}=this.props,{projection:A}=o;A&&(A.scheduleCheckAfterUnmount(),u&&u.group&&u.group.remove(A),p&&p.deregister&&p.deregister(A))}safeToRemove(){const{safeToRemove:o}=this.props;o&&o()}render(){return null}}function DF(i){const[o,u]=bx(),p=Q.useContext(Uv);return h.jsx(vE,it(ve({},i),{layoutGroup:p,switchLayoutGroup:Q.useContext(Lx),isPresent:o,safeToRemove:u}))}const UE={borderRadius:it(ve({},Mf),{applyTo:[\"borderTopLeftRadius\",\"borderTopRightRadius\",\"borderBottomLeftRadius\",\"borderBottomRightRadius\"]}),borderTopLeftRadius:Mf,borderTopRightRadius:Mf,borderBottomLeftRadius:Mf,borderBottomRightRadius:Mf,boxShadow:gE};function SE(i,o,u){const p=ur(i)?i:xf(i);return p.start(mU(\"\",p,o,u)),p.animation}function yE(i){return i instanceof SVGElement&&i.tagName!==\"svg\"}const KE=(i,o)=>i.depth-o.depth;class xE{constructor(){this.children=[],this.isDirty=!1}add(o){Jv(this.children,o),this.isDirty=!0}remove(o){zv(this.children,o),this.isDirty=!0}forEach(o){this.isDirty&&this.children.sort(KE),this.isDirty=!1,this.children.forEach(o)}}function FE(i,o){const u=qo.now(),p=({timestamp:A})=>{const U=A-u;U>=o&&(Qs(p),i(U-o))};return Cn.read(p,!0),()=>Qs(p)}const jF=[\"TopLeft\",\"TopRight\",\"BottomLeft\",\"BottomRight\"],TE=jF.length,LF=i=>typeof i==\"string\"?parseFloat(i):i,OF=i=>typeof i==\"number\"||ht.test(i);function CE(i,o,u,p,A,U){A?(i.opacity=Vn(0,u.opacity!==void 0?u.opacity:1,bE(p)),i.opacityExit=Vn(o.opacity!==void 0?o.opacity:1,0,RE(p))):U&&(i.opacity=Vn(o.opacity!==void 0?o.opacity:1,u.opacity!==void 0?u.opacity:1,p));for(let m=0;m<TE;m++){const y=`border${jF[m]}Radius`;let K=VF(o,y),F=VF(u,y);if(K===void 0&&F===void 0)continue;K||(K=0),F||(F=0),K===0||F===0||OF(K)===OF(F)?(i[y]=Math.max(Vn(LF(K),LF(F),p),0),(Io.test(F)||Io.test(K))&&(i[y]+=\"%\")):i[y]=F}(o.rotate||u.rotate)&&(i.rotate=Vn(o.rotate||0,u.rotate||0,p))}function VF(i,o){return i[o]!==void 0?i[o]:i.borderRadius}const bE=IF(0,.5,F1),RE=IF(.5,.95,Hr);function IF(i,o,u){return p=>p<i?0:p>o?1:u(pd(i,o,p))}function qF(i,o){i.min=o.min,i.max=o.max}function Qi(i,o){qF(i.x,o.x),qF(i.y,o.y)}function YF(i,o){i.translate=o.translate,i.scale=o.scale,i.originPoint=o.originPoint,i.origin=o.origin}function GF(i,o,u,p,A){return i-=o,i=dh(i,1/u,p),A!==void 0&&(i=dh(i,1/A,p)),i}function kE(i,o=0,u=1,p=.5,A,U=i,m=i){if(Io.test(o)&&(o=parseFloat(o),o=Vn(m.min,m.max,o/100)-m.min),typeof o!=\"number\")return;let y=Vn(U.min,U.max,p);i===U&&(y-=o),i.min=GF(i.min,o,u,y,A),i.max=GF(i.max,o,u,y,A)}function WF(i,o,[u,p,A],U,m){kE(i,o[u],o[p],o[A],o.scale,U,m)}const NE=[\"x\",\"scaleX\",\"originX\"],wE=[\"y\",\"scaleY\",\"originY\"];function JF(i,o,u,p){WF(i.x,o,NE,u?u.x:void 0,p?p.x:void 0),WF(i.y,o,wE,u?u.y:void 0,p?p.y:void 0)}function zF(i){return i.translate===0&&i.scale===1}function HF(i){return zF(i.x)&&zF(i.y)}function PF(i,o){return i.min===o.min&&i.max===o.max}function EE(i,o){return PF(i.x,o.x)&&PF(i.y,o.y)}function ZF(i,o){return Math.round(i.min)===Math.round(o.min)&&Math.round(i.max)===Math.round(o.max)}function XF(i,o){return ZF(i.x,o.x)&&ZF(i.y,o.y)}function _F(i){return hi(i.x)/hi(i.y)}function $F(i,o){return i.translate===o.translate&&i.scale===o.scale&&i.originPoint===o.originPoint}class ME{constructor(){this.members=[]}add(o){Jv(this.members,o),o.scheduleRender()}remove(o){if(zv(this.members,o),o===this.prevLead&&(this.prevLead=void 0),o===this.lead){const u=this.members[this.members.length-1];u&&this.promote(u)}}relegate(o){const u=this.members.findIndex(A=>o===A);if(u===0)return!1;let p;for(let A=u;A>=0;A--){const U=this.members[A];if(U.isPresent!==!1){p=U;break}}return p?(this.promote(p),!0):!1}promote(o,u){const p=this.lead;if(o!==p&&(this.prevLead=p,this.lead=o,o.show(),p)){p.instance&&p.scheduleRender(),o.scheduleRender(),o.resumeFrom=p,u&&(o.resumeFrom.preserveOpacity=!0),p.snapshot&&(o.snapshot=p.snapshot,o.snapshot.latestValues=p.animationValues||p.latestValues),o.root&&o.root.isUpdating&&(o.isLayoutDirty=!0);const{crossfade:A}=o.options;A===!1&&p.hide()}}exitAnimationComplete(){this.members.forEach(o=>{const{options:u,resumingFrom:p}=o;u.onExitComplete&&u.onExitComplete(),p&&p.options.onExitComplete&&p.options.onExitComplete()})}scheduleRender(){this.members.forEach(o=>{o.instance&&o.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function BE(i,o,u){let p=\"\";const A=i.x.translate/o.x,U=i.y.translate/o.y,m=(u==null?void 0:u.z)||0;if((A||U||m)&&(p=`translate3d(${A}px, ${U}px, ${m}px) `),(o.x!==1||o.y!==1)&&(p+=`scale(${1/o.x}, ${1/o.y}) `),u){const{transformPerspective:F,rotate:R,rotateX:b,rotateY:N,skewX:E,skewY:O}=u;F&&(p=`perspective(${F}px) ${p}`),R&&(p+=`rotate(${R}deg) `),b&&(p+=`rotateX(${b}deg) `),N&&(p+=`rotateY(${N}deg) `),E&&(p+=`skewX(${E}deg) `),O&&(p+=`skewY(${O}deg) `)}const y=i.x.scale*o.x,K=i.y.scale*o.y;return(y!==1||K!==1)&&(p+=`scale(${y}, ${K})`),p||\"none\"}const Ju={type:\"projectionFrame\",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0},Bf=typeof window!=\"undefined\"&&window.MotionDebug!==void 0,KU=[\"\",\"X\",\"Y\",\"Z\"],QE={visibility:\"hidden\"},eT=1e3;let DE=0;function xU(i,o,u,p){const{latestValues:A}=o;A[i]&&(u[i]=A[i],o.setStaticValue(i,0),p&&(p[i]=0))}function tT(i){if(i.hasCheckedOptimisedAppear=!0,i.root===i)return;const{visualElement:o}=i.options;if(!o)return;const u=g1(o);if(window.MotionHasOptimisedAnimation(u,\"transform\")){const{layout:A,layoutId:U}=i.options;window.MotionCancelOptimisedAnimation(u,\"transform\",Cn,!(A||U))}const{parent:p}=i;p&&!p.hasCheckedOptimisedAppear&&tT(p)}function nT({attachResizeListener:i,defaultParent:o,measureScroll:u,checkIsScrollRoot:p,resetTransform:A}){return class{constructor(m={},y=o==null?void 0:o()){this.id=DE++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,Bf&&(Ju.totalNodes=Ju.resolvedTargetDeltas=Ju.recalculatedProjection=0),this.nodes.forEach(OE),this.nodes.forEach(GE),this.nodes.forEach(WE),this.nodes.forEach(VE),Bf&&window.MotionDebug.record(Ju)},this.resolvedRelativeTargetAt=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=m,this.root=y?y.root||y:this,this.path=y?[...y.path,y]:[],this.parent=y,this.depth=y?y.depth+1:0;for(let K=0;K<this.path.length;K++)this.path[K].shouldResetTransform=!0;this.root===this&&(this.nodes=new xE)}addEventListener(m,y){return this.eventHandlers.has(m)||this.eventHandlers.set(m,new Hv),this.eventHandlers.get(m).add(y)}notifyListeners(m,...y){const K=this.eventHandlers.get(m);K&&K.notify(...y)}hasListeners(m){return this.eventHandlers.has(m)}mount(m,y=this.root.hasTreeAnimated){if(this.instance)return;this.isSVG=yE(m),this.instance=m;const{layoutId:K,layout:F,visualElement:R}=this.options;if(R&&!R.current&&R.mount(m),this.root.nodes.add(this),this.parent&&this.parent.children.add(this),y&&(F||K)&&(this.isLayoutDirty=!0),i){let b;const N=()=>this.root.updateBlockedByResize=!1;i(m,()=>{this.root.updateBlockedByResize=!0,b&&b(),b=FE(N,250),fh.hasAnimatedSinceResize&&(fh.hasAnimatedSinceResize=!1,this.nodes.forEach(rT))})}K&&this.root.registerSharedNode(K,this),this.options.animate!==!1&&R&&(K||F)&&this.addEventListener(\"didUpdate\",({delta:b,hasLayoutChanged:N,hasRelativeTargetChanged:E,layout:O})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}const B=this.options.transition||R.getDefaultTransition()||ZE,{onLayoutAnimationStart:L,onLayoutAnimationComplete:q}=R.getProps(),W=!this.targetLayout||!XF(this.targetLayout,O)||E,Y=!N&&E;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||Y||N&&(W||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(b,Y);const P=it(ve({},Ov(B,\"layout\")),{onPlay:L,onComplete:q});(R.shouldReduceMotion||this.options.layoutRoot)&&(P.delay=0,P.type=!1),this.startAnimation(P)}else N||rT(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=O})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const m=this.getStack();m&&m.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,Qs(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(JE),this.animationId++)}getTransformTemplate(){const{visualElement:m}=this.options;return m&&m.getProps().transformTemplate}willUpdate(m=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&tT(this),!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let R=0;R<this.path.length;R++){const b=this.path[R];b.shouldResetTransform=!0,b.updateScroll(\"snapshot\"),b.options.layoutRoot&&b.willUpdate(!1)}const{layoutId:y,layout:K}=this.options;if(y===void 0&&!K)return;const F=this.getTransformTemplate();this.prevTransformTemplateValue=F?F(this.latestValues,\"\"):void 0,this.updateSnapshot(),m&&this.notifyListeners(\"willUpdate\")}update(){if(this.updateScheduled=!1,this.isUpdateBlocked()){this.unblockUpdate(),this.clearAllSnapshots(),this.nodes.forEach(aT);return}this.isUpdating||this.nodes.forEach(qE),this.isUpdating=!1,this.nodes.forEach(YE),this.nodes.forEach(jE),this.nodes.forEach(LE),this.clearAllSnapshots();const y=qo.now();Ga.delta=wl(0,1e3/60,y-Ga.timestamp),Ga.timestamp=y,Ga.isProcessing=!0,Fv.update.process(Ga),Fv.preRender.process(Ga),Fv.render.process(Ga),Ga.isProcessing=!1}didUpdate(){this.updateScheduled||(this.updateScheduled=!0,Rv.read(this.scheduleUpdate))}clearAllSnapshots(){this.nodes.forEach(IE),this.sharedNodes.forEach(zE)}scheduleUpdateProjection(){this.projectionUpdateScheduled||(this.projectionUpdateScheduled=!0,Cn.preRender(this.updateProjection,!1,!0))}scheduleCheckAfterUnmount(){Cn.postRender(()=>{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){this.snapshot||!this.instance||(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let K=0;K<this.path.length;K++)this.path[K].updateScroll();const m=this.layout;this.layout=this.measure(!1),this.layoutCorrected=oa(),this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners(\"measure\",this.layout.layoutBox);const{visualElement:y}=this.options;y&&y.notify(\"LayoutMeasure\",this.layout.layoutBox,m?m.layoutBox:void 0)}updateScroll(m=\"measure\"){let y=!!(this.options.layoutScroll&&this.instance);if(this.scroll&&this.scroll.animationId===this.root.animationId&&this.scroll.phase===m&&(y=!1),y){const K=p(this.instance);this.scroll={animationId:this.root.animationId,phase:m,isRoot:K,offset:u(this.instance),wasRoot:this.scroll?this.scroll.isRoot:K}}}resetTransform(){if(!A)return;const m=this.isLayoutDirty||this.shouldResetTransform||this.options.alwaysMeasureLayout,y=this.projectionDelta&&!HF(this.projectionDelta),K=this.getTransformTemplate(),F=K?K(this.latestValues,\"\"):void 0,R=F!==this.prevTransformTemplateValue;m&&(y||Wu(this.latestValues)||R)&&(A(this.instance,F),this.shouldResetTransform=!1,this.scheduleRender())}measure(m=!0){const y=this.measurePageBox();let K=this.removeElementScroll(y);return m&&(K=this.removeTransform(K)),XE(K),{animationId:this.root.animationId,measuredBox:y,layoutBox:K,latestValues:{},source:this.id}}measurePageBox(){var m;const{visualElement:y}=this.options;if(!y)return oa();const K=y.measureViewportBox();if(!(((m=this.scroll)===null||m===void 0?void 0:m.wasRoot)||this.path.some(_E))){const{scroll:R}=this.root;R&&(Sd(K.x,R.offset.x),Sd(K.y,R.offset.y))}return K}removeElementScroll(m){var y;const K=oa();if(Qi(K,m),!((y=this.scroll)===null||y===void 0)&&y.wasRoot)return K;for(let F=0;F<this.path.length;F++){const R=this.path[F],{scroll:b,options:N}=R;R!==this.root&&b&&N.layoutScroll&&(b.wasRoot&&Qi(K,m),Sd(K.x,b.offset.x),Sd(K.y,b.offset.y))}return K}applyTransform(m,y=!1){const K=oa();Qi(K,m);for(let F=0;F<this.path.length;F++){const R=this.path[F];!y&&R.options.layoutScroll&&R.scroll&&R!==R.root&&yd(K,{x:-R.scroll.offset.x,y:-R.scroll.offset.y}),Wu(R.latestValues)&&yd(K,R.latestValues)}return Wu(this.latestValues)&&yd(K,this.latestValues),K}removeTransform(m){const y=oa();Qi(y,m);for(let K=0;K<this.path.length;K++){const F=this.path[K];if(!F.instance||!Wu(F.latestValues))continue;SU(F.latestValues)&&F.updateSnapshot();const R=oa(),b=F.measurePageBox();Qi(R,b),JF(y,F.latestValues,F.snapshot?F.snapshot.layoutBox:void 0,R)}return Wu(this.latestValues)&&JF(y,this.latestValues),y}setTargetDelta(m){this.targetDelta=m,this.root.scheduleUpdateProjection(),this.isProjectionDirty=!0}setOptions(m){this.options=it(ve(ve({},this.options),m),{crossfade:m.crossfade!==void 0?m.crossfade:!0})}clearMeasurements(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1}forceRelativeParentToResolveTarget(){this.relativeParent&&this.relativeParent.resolvedRelativeTargetAt!==Ga.timestamp&&this.relativeParent.resolveTargetDelta(!0)}resolveTargetDelta(m=!1){var y;const K=this.getLead();this.isProjectionDirty||(this.isProjectionDirty=K.isProjectionDirty),this.isTransformDirty||(this.isTransformDirty=K.isTransformDirty),this.isSharedProjectionDirty||(this.isSharedProjectionDirty=K.isSharedProjectionDirty);const F=!!this.resumingFrom||this!==K;if(!(m||F&&this.isSharedProjectionDirty||this.isProjectionDirty||!((y=this.parent)===null||y===void 0)&&y.isProjectionDirty||this.attemptToResolveRelativeTarget||this.root.updateBlockedByResize))return;const{layout:b,layoutId:N}=this.options;if(!(!this.layout||!(b||N))){if(this.resolvedRelativeTargetAt=Ga.timestamp,!this.targetDelta&&!this.relativeTarget){const E=this.getClosestProjectingParent();E&&E.layout&&this.animationProgress!==1?(this.relativeParent=E,this.forceRelativeParentToResolveTarget(),this.relativeTarget=oa(),this.relativeTargetOrigin=oa(),Ef(this.relativeTargetOrigin,this.layout.layoutBox,E.layout.layoutBox),Qi(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}if(!(!this.relativeTarget&&!this.targetDelta)){if(this.target||(this.target=oa(),this.targetWithTransforms=oa()),this.relativeTarget&&this.relativeTargetOrigin&&this.relativeParent&&this.relativeParent.target?(this.forceRelativeParentToResolveTarget(),tE(this.target,this.relativeTarget,this.relativeParent.target)):this.targetDelta?(this.resumingFrom?this.target=this.applyTransform(this.layout.layoutBox):Qi(this.target,this.layout.layoutBox),RF(this.target,this.targetDelta)):Qi(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget){this.attemptToResolveRelativeTarget=!1;const E=this.getClosestProjectingParent();E&&!!E.resumingFrom==!!this.resumingFrom&&!E.options.layoutScroll&&E.target&&this.animationProgress!==1?(this.relativeParent=E,this.forceRelativeParentToResolveTarget(),this.relativeTarget=oa(),this.relativeTargetOrigin=oa(),Ef(this.relativeTargetOrigin,this.target,E.target),Qi(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}Bf&&Ju.resolvedTargetDeltas++}}}getClosestProjectingParent(){if(!(!this.parent||SU(this.parent.latestValues)||TF(this.parent.latestValues)))return this.parent.isProjecting()?this.parent:this.parent.getClosestProjectingParent()}isProjecting(){return!!((this.relativeTarget||this.targetDelta||this.options.layoutRoot)&&this.layout)}calcProjection(){var m;const y=this.getLead(),K=!!this.resumingFrom||this!==y;let F=!0;if((this.isProjectionDirty||!((m=this.parent)===null||m===void 0)&&m.isProjectionDirty)&&(F=!1),K&&(this.isSharedProjectionDirty||this.isTransformDirty)&&(F=!1),this.resolvedRelativeTargetAt===Ga.timestamp&&(F=!1),F)return;const{layout:R,layoutId:b}=this.options;if(this.isTreeAnimating=!!(this.parent&&this.parent.isTreeAnimating||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!this.layout||!(R||b))return;Qi(this.layoutCorrected,this.layout.layoutBox);const N=this.treeScale.x,E=this.treeScale.y;cE(this.layoutCorrected,this.treeScale,this.path,K),y.layout&&!y.target&&(this.treeScale.x!==1||this.treeScale.y!==1)&&(y.target=y.layout.layoutBox,y.targetWithTransforms=oa());const{target:O}=y;if(!O){this.prevProjectionDelta&&(this.createProjectionDeltas(),this.scheduleRender());return}!this.projectionDelta||!this.prevProjectionDelta?this.createProjectionDeltas():(YF(this.prevProjectionDelta.x,this.projectionDelta.x),YF(this.prevProjectionDelta.y,this.projectionDelta.y)),wf(this.projectionDelta,this.layoutCorrected,O,this.latestValues),(this.treeScale.x!==N||this.treeScale.y!==E||!$F(this.projectionDelta.x,this.prevProjectionDelta.x)||!$F(this.projectionDelta.y,this.prevProjectionDelta.y))&&(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners(\"projectionUpdate\",O)),Bf&&Ju.recalculatedProjection++}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(m=!0){var y;if((y=this.options.visualElement)===null||y===void 0||y.scheduleRender(),m){const K=this.getStack();K&&K.scheduleRender()}this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}createProjectionDeltas(){this.prevProjectionDelta=Ud(),this.projectionDelta=Ud(),this.projectionDeltaWithTransform=Ud()}setAnimationOrigin(m,y=!1){const K=this.snapshot,F=K?K.latestValues:{},R=ve({},this.latestValues),b=Ud();(!this.relativeParent||!this.relativeParent.options.layoutRoot)&&(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!y;const N=oa(),E=K?K.source:void 0,O=this.layout?this.layout.source:void 0,B=E!==O,L=this.getStack(),q=!L||L.members.length<=1,W=!!(B&&!q&&this.options.crossfade===!0&&!this.path.some(PE));this.animationProgress=0;let Y;this.mixTargetDelta=P=>{const te=P/1e3;iT(b.x,m.x,te),iT(b.y,m.y,te),this.setTargetDelta(b),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(Ef(N,this.layout.layoutBox,this.relativeParent.layout.layoutBox),HE(this.relativeTarget,this.relativeTargetOrigin,N,te),Y&&EE(this.relativeTarget,Y)&&(this.isProjectionDirty=!1),Y||(Y=oa()),Qi(Y,this.relativeTarget)),B&&(this.animationValues=R,CE(R,F,this.latestValues,te,W,q)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=te},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(m){this.notifyListeners(\"animationStart\"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&(Qs(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Cn.update(()=>{fh.hasAnimatedSinceResize=!0,this.currentAnimation=SE(0,eT,it(ve({},m),{onUpdate:y=>{this.mixTargetDelta(y),m.onUpdate&&m.onUpdate(y)},onComplete:()=>{m.onComplete&&m.onComplete(),this.completeAnimation()}})),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const m=this.getStack();m&&m.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners(\"animationComplete\")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(eT),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const m=this.getLead();let{targetWithTransforms:y,target:K,layout:F,latestValues:R}=m;if(!(!y||!K||!F)){if(this!==m&&this.layout&&F&&cT(this.options.animationType,this.layout.layoutBox,F.layoutBox)){K=this.target||oa();const b=hi(this.layout.layoutBox.x);K.x.min=m.target.x.min,K.x.max=K.x.min+b;const N=hi(this.layout.layoutBox.y);K.y.min=m.target.y.min,K.y.max=K.y.min+N}Qi(y,K),yd(y,R),wf(this.projectionDeltaWithTransform,this.layoutCorrected,y,R)}}registerSharedNode(m,y){this.sharedNodes.has(m)||this.sharedNodes.set(m,new ME),this.sharedNodes.get(m).add(y);const F=y.options.initialPromotionConfig;y.promote({transition:F?F.transition:void 0,preserveFollowOpacity:F&&F.shouldPreserveFollowOpacity?F.shouldPreserveFollowOpacity(y):void 0})}isLead(){const m=this.getStack();return m?m.lead===this:!0}getLead(){var m;const{layoutId:y}=this.options;return y?((m=this.getStack())===null||m===void 0?void 0:m.lead)||this:this}getPrevLead(){var m;const{layoutId:y}=this.options;return y?(m=this.getStack())===null||m===void 0?void 0:m.prevLead:void 0}getStack(){const{layoutId:m}=this.options;if(m)return this.root.sharedNodes.get(m)}promote({needsReset:m,transition:y,preserveFollowOpacity:K}={}){const F=this.getStack();F&&F.promote(this,K),m&&(this.projectionDelta=void 0,this.needsReset=!0),y&&this.setOptions({transition:y})}relegate(){const m=this.getStack();return m?m.relegate(this):!1}resetSkewAndRotation(){const{visualElement:m}=this.options;if(!m)return;let y=!1;const{latestValues:K}=m;if((K.z||K.rotate||K.rotateX||K.rotateY||K.rotateZ||K.skewX||K.skewY)&&(y=!0),!y)return;const F={};K.z&&xU(\"z\",m,F,this.animationValues);for(let R=0;R<KU.length;R++)xU(`rotate${KU[R]}`,m,F,this.animationValues),xU(`skew${KU[R]}`,m,F,this.animationValues);m.render();for(const R in F)m.setStaticValue(R,F[R]),this.animationValues&&(this.animationValues[R]=F[R]);m.scheduleRender()}getProjectionStyles(m){var y,K;if(!this.instance||this.isSVG)return;if(!this.isVisible)return QE;const F={visibility:\"\"},R=this.getTransformTemplate();if(this.needsReset)return this.needsReset=!1,F.opacity=\"\",F.pointerEvents=th(m==null?void 0:m.pointerEvents)||\"\",F.transform=R?R(this.latestValues,\"\"):\"none\",F;const b=this.getLead();if(!this.projectionDelta||!this.layout||!b.target){const B={};return this.options.layoutId&&(B.opacity=this.latestValues.opacity!==void 0?this.latestValues.opacity:1,B.pointerEvents=th(m==null?void 0:m.pointerEvents)||\"\"),this.hasProjected&&!Wu(this.latestValues)&&(B.transform=R?R({},\"\"):\"none\",this.hasProjected=!1),B}const N=b.animationValues||b.latestValues;this.applyTransformsToTarget(),F.transform=BE(this.projectionDeltaWithTransform,this.treeScale,N),R&&(F.transform=R(N,F.transform));const{x:E,y:O}=this.projectionDelta;F.transformOrigin=`${E.origin*100}% ${O.origin*100}% 0`,b.animationValues?F.opacity=b===this?(K=(y=N.opacity)!==null&&y!==void 0?y:this.latestValues.opacity)!==null&&K!==void 0?K:1:this.preserveOpacity?this.latestValues.opacity:N.opacityExit:F.opacity=b===this?N.opacity!==void 0?N.opacity:\"\":N.opacityExit!==void 0?N.opacityExit:0;for(const B in ah){if(N[B]===void 0)continue;const{correct:L,applyTo:q}=ah[B],W=F.transform===\"none\"?N[B]:L(N[B],b);if(q){const Y=q.length;for(let P=0;P<Y;P++)F[q[P]]=W}else F[B]=W}return this.options.layoutId&&(F.pointerEvents=b===this?th(m==null?void 0:m.pointerEvents)||\"\":\"none\"),F}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach(m=>{var y;return(y=m.currentAnimation)===null||y===void 0?void 0:y.stop()}),this.root.nodes.forEach(aT),this.root.sharedNodes.clear()}}}function jE(i){i.updateLayout()}function LE(i){var o;const u=((o=i.resumeFrom)===null||o===void 0?void 0:o.snapshot)||i.snapshot;if(i.isLead()&&i.layout&&u&&i.hasListeners(\"didUpdate\")){const{layoutBox:p,measuredBox:A}=i.layout,{animationType:U}=i.options,m=u.source!==i.layout.source;U===\"size\"?Bi(b=>{const N=m?u.measuredBox[b]:u.layoutBox[b],E=hi(N);N.min=p[b].min,N.max=N.min+E}):cT(U,u.layoutBox,p)&&Bi(b=>{const N=m?u.measuredBox[b]:u.layoutBox[b],E=hi(p[b]);N.max=N.min+E,i.relativeTarget&&!i.currentAnimation&&(i.isProjectionDirty=!0,i.relativeTarget[b].max=i.relativeTarget[b].min+E)});const y=Ud();wf(y,p,u.layoutBox);const K=Ud();m?wf(K,i.applyTransform(A,!0),u.measuredBox):wf(K,p,u.layoutBox);const F=!HF(y);let R=!1;if(!i.resumeFrom){const b=i.getClosestProjectingParent();if(b&&!b.resumeFrom){const{snapshot:N,layout:E}=b;if(N&&E){const O=oa();Ef(O,u.layoutBox,N.layoutBox);const B=oa();Ef(B,p,E.layoutBox),XF(O,B)||(R=!0),b.options.layoutRoot&&(i.relativeTarget=B,i.relativeTargetOrigin=O,i.relativeParent=b)}}}i.notifyListeners(\"didUpdate\",{layout:p,snapshot:u,delta:K,layoutDelta:y,hasLayoutChanged:F,hasRelativeTargetChanged:R})}else if(i.isLead()){const{onExitComplete:p}=i.options;p&&p()}i.options.transition=void 0}function OE(i){Bf&&Ju.totalNodes++,i.parent&&(i.isProjecting()||(i.isProjectionDirty=i.parent.isProjectionDirty),i.isSharedProjectionDirty||(i.isSharedProjectionDirty=!!(i.isProjectionDirty||i.parent.isProjectionDirty||i.parent.isSharedProjectionDirty)),i.isTransformDirty||(i.isTransformDirty=i.parent.isTransformDirty))}function VE(i){i.isProjectionDirty=i.isSharedProjectionDirty=i.isTransformDirty=!1}function IE(i){i.clearSnapshot()}function aT(i){i.clearMeasurements()}function qE(i){i.isLayoutDirty=!1}function YE(i){const{visualElement:o}=i.options;o&&o.getProps().onBeforeLayoutMeasure&&o.notify(\"BeforeLayoutMeasure\"),i.resetTransform()}function rT(i){i.finishAnimation(),i.targetDelta=i.relativeTarget=i.target=void 0,i.isProjectionDirty=!0}function GE(i){i.resolveTargetDelta()}function WE(i){i.calcProjection()}function JE(i){i.resetSkewAndRotation()}function zE(i){i.removeLeadSnapshot()}function iT(i,o,u){i.translate=Vn(o.translate,0,u),i.scale=Vn(o.scale,1,u),i.origin=o.origin,i.originPoint=o.originPoint}function oT(i,o,u,p){i.min=Vn(o.min,u.min,p),i.max=Vn(o.max,u.max,p)}function HE(i,o,u,p){oT(i.x,o.x,u.x,p),oT(i.y,o.y,u.y,p)}function PE(i){return i.animationValues&&i.animationValues.opacityExit!==void 0}const ZE={duration:.45,ease:[.4,0,.1,1]},lT=i=>typeof navigator!=\"undefined\"&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(i),sT=lT(\"applewebkit/\")&&!lT(\"chrome/\")?Math.round:Hr;function uT(i){i.min=sT(i.min),i.max=sT(i.max)}function XE(i){uT(i.x),uT(i.y)}function cT(i,o,u){return i===\"position\"||i===\"preserve-aspect\"&&!eE(_F(o),_F(u),.2)}function _E(i){var o;return i!==i.root&&((o=i.scroll)===null||o===void 0?void 0:o.wasRoot)}const $E=nT({attachResizeListener:(i,o)=>Rf(i,\"resize\",o),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),FU={current:void 0},dT=nT({measureScroll:i=>({x:i.scrollLeft,y:i.scrollTop}),defaultParent:()=>{if(!FU.current){const i=new $E({});i.mount(window),i.setOptions({layoutScroll:!0}),FU.current=i}return FU.current},resetTransform:(i,o)=>{i.style.transform=o!==void 0?o:\"none\"},checkIsScrollRoot:i=>window.getComputedStyle(i).position===\"fixed\"}),eM={pan:{Feature:AE},drag:{Feature:hE,ProjectionNode:dT,MeasureLayout:DF}};function pT(i,o,u){const{props:p}=i;i.animationState&&p.whileHover&&i.animationState.setActive(\"whileHover\",u===\"Start\");const A=\"onHover\"+u,U=p[A];U&&Cn.postRender(()=>U(o,kf(o)))}class tM extends Ls{mount(){const{current:o}=this.node;o&&(this.unmount=tN(o,u=>(pT(this.node,u,\"Start\"),p=>pT(this.node,p,\"End\"))))}unmount(){}}class nM extends Ls{constructor(){super(...arguments),this.isActive=!1}onFocus(){let o=!1;try{o=this.node.current.matches(\":focus-visible\")}catch(u){o=!0}!o||!this.node.animationState||(this.node.animationState.setActive(\"whileFocus\",!0),this.isActive=!0)}onBlur(){!this.isActive||!this.node.animationState||(this.node.animationState.setActive(\"whileFocus\",!1),this.isActive=!1)}mount(){this.unmount=bf(Rf(this.node.current,\"focus\",()=>this.onFocus()),Rf(this.node.current,\"blur\",()=>this.onBlur()))}unmount(){}}function fT(i,o,u){const{props:p}=i;i.animationState&&p.whileTap&&i.animationState.setActive(\"whileTap\",u===\"Start\");const A=\"onTap\"+(u===\"End\"?\"\":u),U=p[A];U&&Cn.postRender(()=>U(o,kf(o)))}class aM extends Ls{mount(){const{current:o}=this.node;o&&(this.unmount=iN(o,u=>(fT(this.node,u,\"Start\"),(p,{success:A})=>fT(this.node,p,A?\"End\":\"Cancel\")),{useGlobalTarget:this.node.props.globalTapTarget}))}unmount(){}}const TU=new WeakMap,CU=new WeakMap,rM=i=>{const o=TU.get(i.target);o&&o(i)},iM=i=>{i.forEach(rM)};function oM(u){var p=u,{root:i}=p,o=Wr(p,[\"root\"]);const A=i||document;CU.has(A)||CU.set(A,{});const U=CU.get(A),m=JSON.stringify(o);return U[m]||(U[m]=new IntersectionObserver(iM,ve({root:i},o))),U[m]}function lM(i,o,u){const p=oM(o);return TU.set(i,u),p.observe(i),()=>{TU.delete(i),p.unobserve(i)}}const sM={some:0,all:1};class uM extends Ls{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:o={}}=this.node.getProps(),{root:u,margin:p,amount:A=\"some\",once:U}=o,m={root:u?u.current:void 0,rootMargin:p,threshold:typeof A==\"number\"?A:sM[A]},y=K=>{const{isIntersecting:F}=K;if(this.isInView===F||(this.isInView=F,U&&!F&&this.hasEnteredView))return;F&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive(\"whileInView\",F);const{onViewportEnter:R,onViewportLeave:b}=this.node.getProps(),N=F?R:b;N&&N(K)};return lM(this.node.current,m,y)}mount(){this.startObserver()}update(){if(typeof IntersectionObserver==\"undefined\")return;const{props:o,prevProps:u}=this.node;[\"amount\",\"margin\",\"root\"].some(cM(o,u))&&this.startObserver()}unmount(){}}function cM({viewport:i={}},{viewport:o={}}={}){return u=>i[u]!==o[u]}const dM={inView:{Feature:uM},tap:{Feature:aM},focus:{Feature:nM},hover:{Feature:tM}},pM={layout:{ProjectionNode:dT,MeasureLayout:DF}},bU={current:null},mT={current:!1};function fM(){if(mT.current=!0,!!Kv)if(window.matchMedia){const i=window.matchMedia(\"(prefers-reduced-motion)\"),o=()=>bU.current=i.matches;i.addListener(o),o()}else bU.current=!1}const mM=[...q1,cr,js],hM=i=>mM.find(I1(i)),hT=new WeakMap;function AM(i,o,u){for(const p in o){const A=o[p],U=u[p];if(ur(A))i.addValue(p,A),process.env.NODE_ENV===\"development\"&&X0(A.version===\"11.18.2\",`Attempting to mix Motion versions ${A.version} with 11.18.2 may not work as expected.`);else if(ur(U))i.addValue(p,xf(A,{owner:i}));else if(U!==A)if(i.hasValue(p)){const m=i.getValue(p);m.liveStyle===!0?m.jump(A):m.hasAnimated||m.set(A)}else{const m=i.getStaticValue(p);i.addValue(p,xf(m!==void 0?m:A,{owner:i}))}}for(const p in u)o[p]===void 0&&i.removeValue(p);return o}const AT=[\"AnimationStart\",\"AnimationComplete\",\"Update\",\"BeforeLayoutMeasure\",\"LayoutMeasure\",\"LayoutAnimationStart\",\"LayoutAnimationComplete\"];class gM{scrapeMotionValuesFromProps(o,u,p){return{}}constructor({parent:o,props:u,presenceContext:p,reducedMotionConfig:A,blockInitialAnimation:U,visualState:m},y={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=oU,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify(\"Update\",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{const O=qo.now();this.renderScheduledAt<O&&(this.renderScheduledAt=O,Cn.render(this.render,!1,!0))};const{latestValues:K,renderState:F,onUpdate:R}=m;this.onUpdate=R,this.latestValues=K,this.baseTarget=ve({},K),this.initialValues=u.initial?ve({},K):{},this.renderState=F,this.parent=o,this.props=u,this.presenceContext=p,this.depth=o?o.depth+1:0,this.reducedMotionConfig=A,this.options=y,this.blockInitialAnimation=!!U,this.isControllingVariants=eh(u),this.isVariantNode=Qx(u),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=!!(o&&o.current);const E=this.scrapeMotionValuesFromProps(u,{},this),{willChange:b}=E,N=Wr(E,[\"willChange\"]);for(const O in N){const B=N[O];K[O]!==void 0&&ur(B)&&B.set(K[O],!1)}}mount(o){this.current=o,hT.set(o,this),this.projection&&!this.projection.instance&&this.projection.mount(o),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach((u,p)=>this.bindToMotionValue(p,u)),mT.current||fM(),this.shouldReduceMotion=this.reducedMotionConfig===\"never\"?!1:this.reducedMotionConfig===\"always\"?!0:bU.current,process.env.NODE_ENV!==\"production\"&&X0(this.shouldReduceMotion!==!0,\"You have Reduced Motion enabled on your device. Animations may not appear as expected.\"),this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){hT.delete(this.current),this.projection&&this.projection.unmount(),Qs(this.notifyUpdate),Qs(this.render),this.valueSubscriptions.forEach(o=>o()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const o in this.events)this.events[o].clear();for(const o in this.features){const u=this.features[o];u&&(u.unmount(),u.isMounted=!1)}this.current=null}bindToMotionValue(o,u){this.valueSubscriptions.has(o)&&this.valueSubscriptions.get(o)();const p=Iu.has(o),A=u.on(\"change\",y=>{this.latestValues[o]=y,this.props.onUpdate&&Cn.preRender(this.notifyUpdate),p&&this.projection&&(this.projection.isTransformDirty=!0)}),U=u.on(\"renderRequest\",this.scheduleRender);let m;window.MotionCheckAppearSync&&(m=window.MotionCheckAppearSync(this,o,u)),this.valueSubscriptions.set(o,()=>{A(),U(),m&&m(),u.owner&&u.stop()})}sortNodePosition(o){return!this.current||!this.sortInstanceNodePosition||this.type!==o.type?0:this.sortInstanceNodePosition(this.current,o.current)}updateFeatures(){let o=\"animation\";for(o in fd){const u=fd[o];if(!u)continue;const{isEnabled:p,Feature:A}=u;if(!this.features[o]&&A&&p(this.props)&&(this.features[o]=new A(this)),this.features[o]){const U=this.features[o];U.isMounted?U.update():(U.mount(),U.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):oa()}getStaticValue(o){return this.latestValues[o]}setStaticValue(o,u){this.latestValues[o]=u}update(o,u){(o.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=o,this.prevPresenceContext=this.presenceContext,this.presenceContext=u;for(let p=0;p<AT.length;p++){const A=AT[p];this.propEventSubscriptions[A]&&(this.propEventSubscriptions[A](),delete this.propEventSubscriptions[A]);const U=\"on\"+A,m=o[U];m&&(this.propEventSubscriptions[A]=this.on(A,m))}this.prevMotionValues=AM(this,this.scrapeMotionValuesFromProps(o,this.prevProps,this),this.prevMotionValues),this.handleChildMotionValue&&this.handleChildMotionValue(),this.onUpdate&&this.onUpdate(this)}getProps(){return this.props}getVariant(o){return this.props.variants?this.props.variants[o]:void 0}getDefaultTransition(){return this.props.transition}getTransformPagePoint(){return this.props.transformPagePoint}getClosestVariantNode(){return this.isVariantNode?this:this.parent?this.parent.getClosestVariantNode():void 0}addVariantChild(o){const u=this.getClosestVariantNode();if(u)return u.variantChildren&&u.variantChildren.add(o),()=>u.variantChildren.delete(o)}addValue(o,u){const p=this.values.get(o);u!==p&&(p&&this.removeValue(o),this.bindToMotionValue(o,u),this.values.set(o,u),this.latestValues[o]=u.get())}removeValue(o){this.values.delete(o);const u=this.valueSubscriptions.get(o);u&&(u(),this.valueSubscriptions.delete(o)),delete this.latestValues[o],this.removeValueFromRenderState(o,this.renderState)}hasValue(o){return this.values.has(o)}getValue(o,u){if(this.props.values&&this.props.values[o])return this.props.values[o];let p=this.values.get(o);return p===void 0&&u!==void 0&&(p=xf(u===null?void 0:u,{owner:this}),this.addValue(o,p)),p}readValue(o,u){var p;let A=this.latestValues[o]!==void 0||!this.current?this.latestValues[o]:(p=this.getBaseTargetFromProps(this.props,o))!==null&&p!==void 0?p:this.readValueFromInstance(this.current,o,this.options);return A!=null&&(typeof A==\"string\"&&(O1(A)||C1(A))?A=parseFloat(A):!hM(A)&&js.test(u)&&(A=M1(o,u)),this.setBaseTarget(o,ur(A)?A.get():A)),ur(A)?A.get():A}setBaseTarget(o,u){this.baseTarget[o]=u}getBaseTarget(o){var u;const{initial:p}=this.props;let A;if(typeof p==\"string\"||typeof p==\"object\"){const m=Nv(this.props,p,(u=this.presenceContext)===null||u===void 0?void 0:u.custom);m&&(A=m[o])}if(p&&A!==void 0)return A;const U=this.getBaseTargetFromProps(this.props,o);return U!==void 0&&!ur(U)?U:this.initialValues[o]!==void 0&&A===void 0?void 0:this.baseTarget[o]}on(o,u){return this.events[o]||(this.events[o]=new Hv),this.events[o].add(u)}notify(o,...u){this.events[o]&&this.events[o].notify(...u)}}class gT extends gM{constructor(){super(...arguments),this.KeyframeResolver=G1}sortInstanceNodePosition(o,u){return o.compareDocumentPosition(u)&2?1:-1}getBaseTargetFromProps(o,u){return o.style?o.style[u]:void 0}removeValueFromRenderState(o,{vars:u,style:p}){delete u[o],delete p[o]}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:o}=this.props;ur(o)&&(this.childSubscription=o.on(\"change\",u=>{this.current&&(this.current.textContent=`${u}`)}))}}function vM(i){return window.getComputedStyle(i)}class UM extends gT{constructor(){super(...arguments),this.type=\"html\",this.renderInstance=Px}readValueFromInstance(o,u){if(Iu.has(u)){const p=aU(u);return p&&p.default||0}else{const p=vM(o),A=(Yx(u)?p.getPropertyValue(u):p[u])||0;return typeof A==\"string\"?A.trim():A}}measureInstanceViewportBox(o,{transformPagePoint:u}){return EF(o,u)}build(o,u,p){Bv(o,u,p.transformTemplate)}scrapeMotionValuesFromProps(o,u,p){return Lv(o,u,p)}}class SM extends gT{constructor(){super(...arguments),this.type=\"svg\",this.isSVGTag=!1,this.measureInstanceViewportBox=oa}getBaseTargetFromProps(o,u){return o[u]}readValueFromInstance(o,u){if(Iu.has(u)){const p=aU(u);return p&&p.default||0}return u=Zx.has(u)?u:bv(u),o.getAttribute(u)}scrapeMotionValuesFromProps(o,u,p){return $x(o,u,p)}build(o,u,p){Qv(o,u,this.isSVGTag,p.transformTemplate)}renderInstance(o,u,p,A){Xx(o,u,p,A)}mount(o){this.isSVGTag=jv(o.tagName),super.mount(o)}}const yM=(i,o)=>kv(i)?new SM(o):new UM(o,{allowProjection:i!==Q.Fragment}),KM=H2(ve(ve(ve(ve({},Ww),dM),eM),pM),yM),pe=c2(KM);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */var xM={xmlns:\"http://www.w3.org/2000/svg\",width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",stroke:\"currentColor\",strokeWidth:2,strokeLinecap:\"round\",strokeLinejoin:\"round\"};/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const FM=i=>i.replace(/([a-z0-9])([A-Z])/g,\"$1-$2\").toLowerCase().trim(),It=(i,o)=>{const u=Q.forwardRef((b,R)=>{var N=b,{color:p=\"currentColor\",size:A=24,strokeWidth:U=2,absoluteStrokeWidth:m,className:y=\"\",children:K}=N,F=Wr(N,[\"color\",\"size\",\"strokeWidth\",\"absoluteStrokeWidth\",\"className\",\"children\"]);return Q.createElement(\"svg\",ve(it(ve({ref:R},xM),{width:A,height:A,stroke:p,strokeWidth:m?Number(U)*24/Number(A):U,className:[\"lucide\",`lucide-${FM(i)}`,y].join(\" \")}),F),[...o.map(([E,O])=>Q.createElement(E,O)),...Array.isArray(K)?K:[K]])});return u.displayName=`${i}`,u};/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const co=It(\"Award\",[[\"circle\",{cx:\"12\",cy:\"8\",r:\"6\",key:\"1vp47v\"}],[\"path\",{d:\"M15.477 12.89 17 22l-5-3-5 3 1.523-9.11\",key:\"em7aur\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const RU=It(\"Bell\",[[\"path\",{d:\"M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9\",key:\"1qo2s2\"}],[\"path\",{d:\"M10.3 21a1.94 1.94 0 0 0 3.4 0\",key:\"qgo35s\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const vT=It(\"Bot\",[[\"path\",{d:\"M12 8V4H8\",key:\"hb8ula\"}],[\"rect\",{width:\"16\",height:\"12\",x:\"4\",y:\"8\",rx:\"2\",key:\"enze0r\"}],[\"path\",{d:\"M2 14h2\",key:\"vft8re\"}],[\"path\",{d:\"M20 14h2\",key:\"4cs60a\"}],[\"path\",{d:\"M15 13v2\",key:\"1xurst\"}],[\"path\",{d:\"M9 13v2\",key:\"rq6x2g\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const Qf=It(\"Calendar\",[[\"path\",{d:\"M8 2v4\",key:\"1cmpym\"}],[\"path\",{d:\"M16 2v4\",key:\"4m81vk\"}],[\"rect\",{width:\"18\",height:\"18\",x:\"3\",y:\"4\",rx:\"2\",key:\"1hopcy\"}],[\"path\",{d:\"M3 10h18\",key:\"8toen8\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const Kd=It(\"CheckCircle\",[[\"path\",{d:\"M22 11.08V12a10 10 0 1 1-5.93-9.14\",key:\"g774vq\"}],[\"path\",{d:\"m9 11 3 3L22 4\",key:\"1pflzl\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const TM=It(\"ChevronDown\",[[\"path\",{d:\"m6 9 6 6 6-6\",key:\"qrunsl\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const CM=It(\"ChevronLeft\",[[\"path\",{d:\"m15 18-6-6 6-6\",key:\"1wnfg3\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const xd=It(\"ChevronRight\",[[\"path\",{d:\"m9 18 6-6-6-6\",key:\"mthhwq\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const bM=It(\"ChevronUp\",[[\"path\",{d:\"m18 15-6-6-6 6\",key:\"153udz\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const UT=It(\"Clock\",[[\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",key:\"1mglay\"}],[\"polyline\",{points:\"12 6 12 12 16 14\",key:\"68esgv\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const mh=It(\"Crown\",[[\"path\",{d:\"m2 4 3 12h14l3-12-6 7-4-7-4 7-6-7zm3 16h14\",key:\"zkxr6b\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const kU=It(\"Flag\",[[\"path\",{d:\"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z\",key:\"i9b6wo\"}],[\"line\",{x1:\"4\",x2:\"4\",y1:\"22\",y2:\"15\",key:\"1cm3nv\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const NU=It(\"Flame\",[[\"path\",{d:\"M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z\",key:\"96xj49\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const RM=It(\"Gamepad2\",[[\"line\",{x1:\"6\",x2:\"10\",y1:\"11\",y2:\"11\",key:\"1gktln\"}],[\"line\",{x1:\"8\",x2:\"8\",y1:\"9\",y2:\"13\",key:\"qnk9ow\"}],[\"line\",{x1:\"15\",x2:\"15.01\",y1:\"12\",y2:\"12\",key:\"krot7o\"}],[\"line\",{x1:\"18\",x2:\"18.01\",y1:\"10\",y2:\"10\",key:\"1lcuu1\"}],[\"path\",{d:\"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z\",key:\"mfqc10\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const kM=It(\"Gift\",[[\"rect\",{x:\"3\",y:\"8\",width:\"18\",height:\"4\",rx:\"1\",key:\"bkv52\"}],[\"path\",{d:\"M12 8v13\",key:\"1c76mn\"}],[\"path\",{d:\"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7\",key:\"6wjy6b\"}],[\"path\",{d:\"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5\",key:\"1ihvrl\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const ST=It(\"Heart\",[[\"path\",{d:\"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z\",key:\"c3ymky\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const wU=It(\"History\",[[\"path\",{d:\"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8\",key:\"1357e3\"}],[\"path\",{d:\"M3 3v5h5\",key:\"1xhq8a\"}],[\"path\",{d:\"M12 7v5l4 2\",key:\"1fdv2h\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const NM=It(\"LayoutGrid\",[[\"rect\",{width:\"7\",height:\"7\",x:\"3\",y:\"3\",rx:\"1\",key:\"1g98yp\"}],[\"rect\",{width:\"7\",height:\"7\",x:\"14\",y:\"3\",rx:\"1\",key:\"6d4xhi\"}],[\"rect\",{width:\"7\",height:\"7\",x:\"14\",y:\"14\",rx:\"1\",key:\"nxv5o0\"}],[\"rect\",{width:\"7\",height:\"7\",x:\"3\",y:\"14\",rx:\"1\",key:\"1bb6yr\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const EU=It(\"Lock\",[[\"rect\",{width:\"18\",height:\"11\",x:\"3\",y:\"11\",rx:\"2\",ry:\"2\",key:\"1w4ew1\"}],[\"path\",{d:\"M7 11V7a5 5 0 0 1 10 0v4\",key:\"fwvmzm\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const wM=It(\"MapPin\",[[\"path\",{d:\"M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z\",key:\"2oe9fu\"}],[\"circle\",{cx:\"12\",cy:\"10\",r:\"3\",key:\"ilqhr7\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const EM=It(\"Medal\",[[\"path\",{d:\"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15\",key:\"143lza\"}],[\"path\",{d:\"M11 12 5.12 2.2\",key:\"qhuxz6\"}],[\"path\",{d:\"m13 12 5.88-9.8\",key:\"hbye0f\"}],[\"path\",{d:\"M8 7h8\",key:\"i86dvs\"}],[\"circle\",{cx:\"12\",cy:\"17\",r:\"5\",key:\"qbz8iq\"}],[\"path\",{d:\"M12 18v-2h-.5\",key:\"fawc4q\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const MM=It(\"Minus\",[[\"path\",{d:\"M5 12h14\",key:\"1ays0h\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const BM=It(\"Send\",[[\"path\",{d:\"m22 2-7 20-4-9-9-4Z\",key:\"1q3vgg\"}],[\"path\",{d:\"M22 2 11 13\",key:\"nzbqef\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const yT=It(\"Share2\",[[\"circle\",{cx:\"18\",cy:\"5\",r:\"3\",key:\"gq8acd\"}],[\"circle\",{cx:\"6\",cy:\"12\",r:\"3\",key:\"w7nqdw\"}],[\"circle\",{cx:\"18\",cy:\"19\",r:\"3\",key:\"1xt0gg\"}],[\"line\",{x1:\"8.59\",x2:\"15.42\",y1:\"13.51\",y2:\"17.49\",key:\"47mynk\"}],[\"line\",{x1:\"15.41\",x2:\"8.59\",y1:\"6.51\",y2:\"10.49\",key:\"1n3mei\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const QM=It(\"Smartphone\",[[\"rect\",{width:\"14\",height:\"20\",x:\"5\",y:\"2\",rx:\"2\",ry:\"2\",key:\"1yt0o3\"}],[\"path\",{d:\"M12 18h.01\",key:\"mhygvu\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const El=It(\"Sparkles\",[[\"path\",{d:\"m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275L12 3Z\",key:\"17u4zn\"}],[\"path\",{d:\"M5 3v4\",key:\"bklmnn\"}],[\"path\",{d:\"M19 17v4\",key:\"iiml17\"}],[\"path\",{d:\"M3 5h4\",key:\"nem4j1\"}],[\"path\",{d:\"M17 19h4\",key:\"lbex7p\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const hh=It(\"Star\",[[\"polygon\",{points:\"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2\",key:\"8f66p6\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const Fd=It(\"Target\",[[\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",key:\"1mglay\"}],[\"circle\",{cx:\"12\",cy:\"12\",r:\"6\",key:\"1vlfrh\"}],[\"circle\",{cx:\"12\",cy:\"12\",r:\"2\",key:\"1c9p78\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const DM=It(\"Trash2\",[[\"path\",{d:\"M3 6h18\",key:\"d0wm0j\"}],[\"path\",{d:\"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6\",key:\"4alrt4\"}],[\"path\",{d:\"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2\",key:\"v07s0e\"}],[\"line\",{x1:\"10\",x2:\"10\",y1:\"11\",y2:\"17\",key:\"1uufr5\"}],[\"line\",{x1:\"14\",x2:\"14\",y1:\"11\",y2:\"17\",key:\"xtxkd\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const jM=It(\"TrendingDown\",[[\"polyline\",{points:\"22 17 13.5 8.5 8.5 13.5 2 7\",key:\"1r2t7k\"}],[\"polyline\",{points:\"16 17 22 17 22 11\",key:\"11uiuu\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const Os=It(\"TrendingUp\",[[\"polyline\",{points:\"22 7 13.5 15.5 8.5 10.5 2 17\",key:\"126l90\"}],[\"polyline\",{points:\"16 7 22 7 22 13\",key:\"kwv8wd\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const Td=It(\"Trophy\",[[\"path\",{d:\"M6 9H4.5a2.5 2.5 0 0 1 0-5H6\",key:\"17hqa7\"}],[\"path\",{d:\"M18 9h1.5a2.5 2.5 0 0 0 0-5H18\",key:\"lmptdp\"}],[\"path\",{d:\"M4 22h16\",key:\"57wxv0\"}],[\"path\",{d:\"M10 14.66V17c0 .55-.47.98-.97 1.21C7.85 18.75 7 20.24 7 22\",key:\"1nw9bq\"}],[\"path\",{d:\"M14 14.66V17c0 .55.47.98.97 1.21C16.15 18.75 17 20.24 17 22\",key:\"1np0yb\"}],[\"path\",{d:\"M18 2H6v7a6 6 0 0 0 12 0V2Z\",key:\"u46fv3\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const LM=It(\"User\",[[\"path\",{d:\"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2\",key:\"975kel\"}],[\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",key:\"17ys0d\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const OM=It(\"Users\",[[\"path\",{d:\"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2\",key:\"1yyitq\"}],[\"circle\",{cx:\"9\",cy:\"7\",r:\"4\",key:\"nufk8\"}],[\"path\",{d:\"M22 21v-2a4 4 0 0 0-3-3.87\",key:\"kshegd\"}],[\"path\",{d:\"M16 3.13a4 4 0 0 1 0 7.75\",key:\"1da9ce\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const Ah=It(\"X\",[[\"path\",{d:\"M18 6 6 18\",key:\"1bl5f8\"}],[\"path\",{d:\"m6 6 12 12\",key:\"d8bk6v\"}]]);/**\n * @license lucide-react v0.323.0 - ISC\n *\n * This source code is licensed under the ISC license.\n * See the LICENSE file in the root directory of this source tree.\n */const Ml=It(\"Zap\",[[\"polygon\",{points:\"13 2 3 14 12 14 11 22 21 10 12 10 13 2\",key:\"45s27k\"}]]),VM={},KT=i=>{let o;const u=new Set,p=(R,b)=>{const N=typeof R==\"function\"?R(o):R;if(!Object.is(N,o)){const E=o;o=(b!=null?b:typeof N!=\"object\"||N===null)?N:Object.assign({},o,N),u.forEach(O=>O(o,E))}},A=()=>o,K={setState:p,getState:A,getInitialState:()=>F,subscribe:R=>(u.add(R),()=>u.delete(R)),destroy:()=>{(VM?\"production\":void 0)!==\"production\"&&console.warn(\"[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected.\"),u.clear()}},F=o=i(p,A,K);return K},IM=i=>i?KT(i):KT;var MU={exports:{}},BU={},gh={exports:{}},QU={};/**\n * @license React\n * use-sync-external-store-shim.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var xT;function qM(){if(xT)return QU;xT=1;var i=Q;function o(b,N){return b===N&&(b!==0||1/b===1/N)||b!==b&&N!==N}var u=typeof Object.is==\"function\"?Object.is:o,p=i.useState,A=i.useEffect,U=i.useLayoutEffect,m=i.useDebugValue;function y(b,N){var E=N(),O=p({inst:{value:E,getSnapshot:N}}),B=O[0].inst,L=O[1];return U(function(){B.value=E,B.getSnapshot=N,K(B)&&L({inst:B})},[b,E,N]),A(function(){return K(B)&&L({inst:B}),b(function(){K(B)&&L({inst:B})})},[b]),m(E),E}function K(b){var N=b.getSnapshot;b=b.value;try{var E=N();return!u(b,E)}catch(O){return!0}}function F(b,N){return N()}var R=typeof window==\"undefined\"||typeof window.document==\"undefined\"||typeof window.document.createElement==\"undefined\"?F:y;return QU.useSyncExternalStore=i.useSyncExternalStore!==void 0?i.useSyncExternalStore:R,QU}var DU={};/**\n * @license React\n * use-sync-external-store-shim.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var FT;function YM(){return FT||(FT=1,process.env.NODE_ENV!==\"production\"&&function(){function i(E,O){return E===O&&(E!==0||1/E===1/O)||E!==E&&O!==O}function o(E,O){R||A.startTransition===void 0||(R=!0,console.error(\"You are using an outdated, pre-release alpha of React 18 that does not support useSyncExternalStore. The use-sync-external-store shim will not work correctly. Upgrade to a newer pre-release.\"));var B=O();if(!b){var L=O();U(B,L)||(console.error(\"The result of getSnapshot should be cached to avoid an infinite loop\"),b=!0)}L=m({inst:{value:B,getSnapshot:O}});var q=L[0].inst,W=L[1];return K(function(){q.value=B,q.getSnapshot=O,u(q)&&W({inst:q})},[E,B,O]),y(function(){return u(q)&&W({inst:q}),E(function(){u(q)&&W({inst:q})})},[E]),F(B),B}function u(E){var O=E.getSnapshot;E=E.value;try{var B=O();return!U(E,B)}catch(L){return!0}}function p(E,O){return O()}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var A=Q,U=typeof Object.is==\"function\"?Object.is:i,m=A.useState,y=A.useEffect,K=A.useLayoutEffect,F=A.useDebugValue,R=!1,b=!1,N=typeof window==\"undefined\"||typeof window.document==\"undefined\"||typeof window.document.createElement==\"undefined\"?p:o;DU.useSyncExternalStore=A.useSyncExternalStore!==void 0?A.useSyncExternalStore:N,typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())}()),DU}var TT;function CT(){return TT||(TT=1,process.env.NODE_ENV===\"production\"?gh.exports=qM():gh.exports=YM()),gh.exports}/**\n * @license React\n * use-sync-external-store-shim/with-selector.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var bT;function GM(){if(bT)return BU;bT=1;var i=Q,o=CT();function u(F,R){return F===R&&(F!==0||1/F===1/R)||F!==F&&R!==R}var p=typeof Object.is==\"function\"?Object.is:u,A=o.useSyncExternalStore,U=i.useRef,m=i.useEffect,y=i.useMemo,K=i.useDebugValue;return BU.useSyncExternalStoreWithSelector=function(F,R,b,N,E){var O=U(null);if(O.current===null){var B={hasValue:!1,value:null};O.current=B}else B=O.current;O=y(function(){function q(me){if(!W){if(W=!0,Y=me,me=N(me),E!==void 0&&B.hasValue){var ye=B.value;if(E(ye,me))return P=ye}return P=me}if(ye=P,p(Y,me))return ye;var be=N(me);return E!==void 0&&E(ye,be)?(Y=me,ye):(Y=me,P=be)}var W=!1,Y,P,te=b===void 0?null:b;return[function(){return q(R())},te===null?void 0:function(){return q(te())}]},[R,b,N,E]);var L=A(F,O[0],O[1]);return m(function(){B.hasValue=!0,B.value=L},[L]),K(L),L},BU}var jU={};/**\n * @license React\n * use-sync-external-store-shim/with-selector.development.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var RT;function WM(){return RT||(RT=1,process.env.NODE_ENV!==\"production\"&&function(){function i(F,R){return F===R&&(F!==0||1/F===1/R)||F!==F&&R!==R}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var o=Q,u=CT(),p=typeof Object.is==\"function\"?Object.is:i,A=u.useSyncExternalStore,U=o.useRef,m=o.useEffect,y=o.useMemo,K=o.useDebugValue;jU.useSyncExternalStoreWithSelector=function(F,R,b,N,E){var O=U(null);if(O.current===null){var B={hasValue:!1,value:null};O.current=B}else B=O.current;O=y(function(){function q(me){if(!W){if(W=!0,Y=me,me=N(me),E!==void 0&&B.hasValue){var ye=B.value;if(E(ye,me))return P=ye}return P=me}if(ye=P,p(Y,me))return ye;var be=N(me);return E!==void 0&&E(ye,be)?(Y=me,ye):(Y=me,P=be)}var W=!1,Y,P,te=b===void 0?null:b;return[function(){return q(R())},te===null?void 0:function(){return q(te())}]},[R,b,N,E]);var L=A(F,O[0],O[1]);return m(function(){B.hasValue=!0,B.value=L},[L]),K(L),L},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=\"undefined\"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==\"function\"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())}()),jU}process.env.NODE_ENV===\"production\"?MU.exports=GM():MU.exports=WM();var JM=MU.exports;const zM=dn(JM),kT={},{useDebugValue:HM}=mv,{useSyncExternalStoreWithSelector:PM}=zM;let NT=!1;const ZM=i=>i;function XM(i,o=ZM,u){(kT?\"production\":void 0)!==\"production\"&&u&&!NT&&(console.warn(\"[DEPRECATED] Use `createWithEqualityFn` instead of `create` or use `useStoreWithEqualityFn` instead of `useStore`. They can be imported from 'zustand/traditional'. https://github.com/pmndrs/zustand/discussions/1937\"),NT=!0);const p=PM(i.subscribe,i.getState,i.getServerState||i.getInitialState,o,u);return HM(p),p}const wT=i=>{(kT?\"production\":void 0)!==\"production\"&&typeof i!=\"function\"&&console.warn(\"[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.\");const o=typeof i==\"function\"?IM(i):i,u=(p,A)=>XM(o,p,A);return Object.assign(u,o),u},_M=i=>i?wT(i):wT,ET=\"playbasis_runtime_quests\";function LU(i){return i?`${ET}_${i}`:`${ET}_default`}function MT(i){if(typeof window==\"undefined\"||!window.localStorage)return[];try{const o=localStorage.getItem(LU(i));if(!o)return[];const u=JSON.parse(o);return Array.isArray(u)?u.filter(p=>typeof p==\"object\"&&p!==null&&\"questId\"in p&&\"title\"in p&&typeof p.questId==\"string\"):[]}catch(o){return console.warn(\"[RuntimeQuestStore] Failed to parse stored quests:\",o),[]}}function $M(i,o){if(typeof window==\"undefined\"||!window.localStorage)return console.warn(\"[RuntimeQuestStore] localStorage not available\"),!1;try{const u=MT(o);if(u.some(U=>U.questId===i.questId))return console.log(\"[RuntimeQuestStore] Quest already exists:\",i.questId),!1;const p=it(ve({},i),{_runtimeCreated:!0,_createdAt:Date.now(),_playerId:o}),A=[...u,p];return localStorage.setItem(LU(o),JSON.stringify(A)),console.log(\"[RuntimeQuestStore] Persisted quest:\",i.questId),!0}catch(u){return console.error(\"[RuntimeQuestStore] Failed to persist quest:\",u),!1}}function eB(i,o,u,p){if(typeof window==\"undefined\"||!window.localStorage)return!1;try{const A=MT(p),U=A.findIndex(K=>K.questId===i);if(U===-1)return!1;const m=A[U],y=it(ve({},m),{current:o,progressPct:Math.min(100,Math.floor(o/Math.max(m.target,1)*100)),status:u||(o>=m.target?\"completed\":\"active\")});return A[U]=y,localStorage.setItem(LU(p),JSON.stringify(A)),console.log(\"[RuntimeQuestStore] Updated quest progress:\",i,o),!0}catch(A){return console.error(\"[RuntimeQuestStore] Failed to update quest:\",A),!1}}const Pr=_M(i=>({isOpen:!0,activeLayer:\"dashboard\",activeWidgetId:null,theme:\"default\",isLoading:!1,apiConfig:null,activeTab:\"overview\",activeModal:\"player-profile\",selectedBadgeId:null,selectedQuestId:null,selectedActivityDate:null,user:null,quests:[],activities:[],wallet:null,transactions:[],leaderboard:null,leaderboardEntries:[],collections:[],badges:[],notifications:[{id:\"1\",type:\"badge\",message:\"New badge earned!\"}],messages:[],isChatOpen:!1,setLayer:o=>i({activeLayer:o}),toggleOpen:()=>i(o=>({isOpen:!o.isOpen,activeLayer:o.isOpen?\"orb\":\"dashboard\"})),toggleChat:()=>i(o=>({isChatOpen:!o.isChatOpen})),addMessage:o=>i(u=>({messages:[...u.messages,o]})),setTheme:o=>i({theme:o}),setLoading:o=>i({isLoading:o}),setApiConfig:o=>i({apiConfig:o}),setActiveTab:o=>i({activeTab:o}),openModal:(o,u)=>i({activeModal:o,selectedBadgeId:o===\"badge-detail\"&&u!=null?u:null,selectedQuestId:o===\"quest-detail\"&&u!=null?u:null,selectedActivityDate:o===\"activity-day\"&&u!=null?u:null}),closeModal:()=>i({activeModal:\"none\",selectedBadgeId:null,selectedQuestId:null,selectedActivityDate:null}),openBadgeDetail:o=>i({activeModal:\"badge-detail\",selectedBadgeId:o}),openQuestDetail:o=>i({activeModal:\"quest-detail\",selectedQuestId:o}),openActivityDay:o=>i({activeModal:\"activity-day\",selectedActivityDate:o}),setUser:o=>i({user:o}),setQuests:o=>i({quests:o}),addQuest:o=>i(u=>{var p;return $M(o,(p=u.apiConfig)==null?void 0:p.playerId),{quests:[o,...u.quests]}}),updateQuestProgress:(o,u,p)=>i(A=>{var U;return eB(o,u,p,(U=A.apiConfig)==null?void 0:U.playerId),{quests:A.quests.map(m=>m.questId===o?it(ve({},m),{current:u,progressPct:Math.min(100,Math.floor(u/Math.max(m.target,1)*100)),status:p||(u>=m.target?\"completed\":m.status)}):m)}}),setActivities:o=>i({activities:o}),setWallet:o=>i({wallet:o}),setTransactions:o=>i({transactions:o}),setLeaderboard:o=>i({leaderboard:o}),setLeaderboardEntries:o=>i({leaderboardEntries:o}),setCollections:o=>i({collections:o}),setBadges:o=>i({badges:o}),setNotifications:o=>i({notifications:o}),markNotificationRead:o=>i(u=>({notifications:u.notifications.map(p=>p.id===o?it(ve({},p),{read:!0}):p)})),clearNotifications:()=>i({notifications:[]})})),BT=({position:i=\"bottom-right\"})=>{const{user:o,wallet:u,toggleOpen:p,activeLayer:A,notifications:U,theme:m}=Pr(),y=m===\"qwik\";if(A===\"dashboard\"||A===\"fullscreen\")return null;const K=u?u.balance%1e3/1e3*100:0,F=2*Math.PI*28,R=F-K/100*F,b=U&&U.length>0,N={\"bottom-right\":\"bottom-[max(1.5rem,env(safe-area-inset-bottom))] right-[max(1.5rem,env(safe-area-inset-right))]\",\"bottom-left\":\"bottom-[max(1.5rem,env(safe-area-inset-bottom))] left-[max(1.5rem,env(safe-area-inset-left))]\",\"top-right\":\"top-[max(1.5rem,env(safe-area-inset-top))] right-[max(1.5rem,env(safe-area-inset-right))]\",\"top-left\":\"top-[max(1.5rem,env(safe-area-inset-top))] left-[max(1.5rem,env(safe-area-inset-left))]\"};return h.jsxs(pe.div,{className:`fixed ${N[i]} z-[9999] cursor-pointer group touch-manipulation`,whileHover:{scale:1.1,filter:\"brightness(1.2)\"},whileTap:{scale:.9},onClick:p,initial:{scale:0,opacity:0},animate:{scale:1,opacity:1,y:[0,-6,0]},transition:{y:{duration:3,repeat:1/0,ease:\"easeInOut\"},default:{type:\"spring\",damping:15,stiffness:200,delay:.2}},children:[h.jsxs(\"div\",{className:\"absolute inset-0 flex items-center justify-center pointer-events-none\",children:[h.jsx(pe.div,{className:\"absolute w-full h-full rounded-full bg-[#ff6b57]/30\",animate:{scale:[1,1.5,1],opacity:[.3,0,.3]},transition:{duration:3,repeat:1/0,ease:\"easeInOut\"}}),h.jsx(pe.div,{className:\"absolute w-full h-full rounded-full bg-[#ff8a6a]/20\",animate:{scale:[1,1.8,1],opacity:[.2,0,.2]},transition:{duration:4,repeat:1/0,ease:\"easeInOut\",delay:.5}})]}),h.jsxs(\"div\",{className:\"relative w-16 h-16 sm:w-20 sm:h-20 transition-all duration-300\",children:[h.jsx(\"div\",{className:`absolute inset-0 rounded-full border-2 border-white/20 ${y?\"bg-gradient-to-br from-[#ff6b57] via-[#ff8a6a] to-[#ffa07a] shadow-[0_0_20px_rgba(255,107,87,0.4),0_0_40px_rgba(255,107,87,0.2)]\":\"bg-gradient-to-br from-[#ff6b57] via-[#ff8a6a] to-[#ffa07a] shadow-[0_0_20px_rgba(255,107,87,0.4)]\"}`}),h.jsx(\"div\",{className:\"absolute inset-[2px] rounded-full bg-gradient-to-br from-white/40 to-transparent backdrop-blur-sm\"}),h.jsxs(\"svg\",{className:\"absolute inset-0 w-full h-full -rotate-90 drop-shadow-md\",viewBox:\"0 0 64 64\",children:[h.jsx(\"circle\",{cx:\"32\",cy:\"32\",r:\"28\",fill:\"none\",stroke:\"rgba(0,0,0,0.3)\",strokeWidth:\"4\"}),h.jsx(pe.circle,{cx:\"32\",cy:\"32\",r:\"28\",fill:\"none\",stroke:\"url(#progressGradient)\",strokeWidth:\"4\",strokeLinecap:\"round\",strokeDasharray:F,initial:{strokeDashoffset:F},animate:{strokeDashoffset:R},transition:{duration:1.5,ease:\"easeOut\",delay:.5}}),h.jsx(\"defs\",{children:h.jsxs(\"linearGradient\",{id:\"progressGradient\",x1:\"0%\",y1:\"0%\",x2:\"100%\",y2:\"0%\",children:[h.jsx(\"stop\",{offset:\"0%\",stopColor:\"#ff6b57\"}),h.jsx(\"stop\",{offset:\"100%\",stopColor:\"#ffa07a\"})]})})]}),h.jsx(\"div\",{className:\"absolute inset-0 flex flex-col items-center justify-center pt-1\",children:o?h.jsxs(pe.div,{className:\"flex flex-col items-center\",initial:{scale:.5,opacity:0},animate:{scale:1,opacity:1},transition:{delay:.4},children:[h.jsx(\"span\",{className:\"text-lg sm:text-xl font-black leading-none text-white drop-shadow-md\",children:u?u.balance>999?(u.balance/1e3).toFixed(1)+\"k\":u.balance:0}),h.jsx(\"span\",{className:\"text-[8px] sm:text-[9px] uppercase tracking-widest font-bold mt-0.5 text-white drop-shadow-md\",children:\"XP\"})]}):h.jsx(Td,{size:24,className:\"text-white drop-shadow-lg\"})}),b&&h.jsx(pe.div,{className:\"absolute top-0 right-0 w-5 h-5 bg-gradient-to-r from-[#ff6b57] to-[#ff8a6a] rounded-full flex items-center justify-center shadow-lg border border-white/20 z-10\",initial:{scale:0},animate:{scale:1},transition:{type:\"spring\",damping:10,stiffness:300,delay:.8},children:h.jsx(El,{size:10,className:\"text-white\"})}),h.jsxs(pe.div,{className:\"absolute -inset-2 pointer-events-none\",animate:{rotate:360},transition:{duration:20,repeat:1/0,ease:\"linear\"},children:[h.jsx(\"div\",{className:\"absolute top-0 left-1/2 w-1.5 h-1.5 rounded-full opacity-80 blur-[1px] bg-[#ff6b57]\"}),h.jsx(\"div\",{className:\"absolute bottom-0 right-1/4 w-1 h-1 rounded-full opacity-60 blur-[1px] bg-[#ffa07a]\"}),h.jsx(\"div\",{className:\"absolute top-1/4 right-0 w-1 h-1 rounded-full opacity-70 blur-[1px] bg-[#ff8a6a]\"})]})]}),o&&h.jsxs(pe.div,{className:`absolute -bottom-2 left-1/2 -translate-x-1/2 px-2.5 py-0.5 backdrop-blur-md rounded-full text-[9px] sm:text-[10px] font-bold shadow-lg whitespace-nowrap z-20 ${y?\"bg-[#ff6b57]/95 text-white border border-white/30\":\"bg-slate-900/90 text-[#ff6b57] border border-[#ff6b57]/40\"}`,initial:{y:5,opacity:0},animate:{y:0,opacity:1},transition:{delay:.6},children:[\"LVL \",o.level]})]})},Vs=({value:i,duration:o=1e3,className:u=\"\",prefix:p=\"\",suffix:A=\"\",decimals:U=0})=>{const[m,y]=Q.useState(0),K=Q.useRef(0),F=Q.useRef();Q.useEffect(()=>{const b=K.current,N=i,E=performance.now(),O=B=>{const L=B-E,q=Math.min(L/o,1),W=q===1?1:1-Math.pow(2,-10*q),Y=b+(N-b)*W;y(Y),q<1?F.current=requestAnimationFrame(O):K.current=N};return F.current=requestAnimationFrame(O),()=>{F.current&&cancelAnimationFrame(F.current)}},[i,o]);const R=U>0?m.toFixed(U):Math.round(m).toLocaleString();return h.jsxs(\"span\",{className:`tabular-nums ${u}`,children:[p,R,A]})},tB={cyan:{start:\"#ff6b57\",end:\"#ff8a6a\"},purple:{start:\"#ff8a6a\",end:\"#ffbfb0\"},gold:{start:\"#fbbf24\",end:\"#f59e0b\"},green:{start:\"#22c55e\",end:\"#10b981\"},pink:{start:\"#e55a48\",end:\"#ff6b57\"},coral:{start:\"#ff6b57\",end:\"#ff8a6a\"}},Bl=({value:i,max:o=100,size:u=80,strokeWidth:p=6,className:A=\"\",label:U,sublabel:m,color:y=\"coral\",showValue:K=!0})=>{const F=Math.min(i/o*100,100),R=(u-p)/2,b=2*Math.PI*R,N=b-F/100*b,E=`radial-gradient-${y}-${Math.random().toString(36).substr(2,9)}`,O=tB[y];return h.jsxs(\"div\",{className:`inline-flex flex-col items-center overflow-visible ${A}`,children:[h.jsxs(\"div\",{className:\"relative overflow-visible flex-shrink-0\",style:{width:u,height:u,minWidth:u,minHeight:u},children:[h.jsxs(\"svg\",{width:u,height:u,viewBox:`0 0 ${u} ${u}`,className:\"-rotate-90\",overflow:\"visible\",style:{width:u,height:u,display:\"block\"},children:[h.jsx(\"circle\",{cx:u/2,cy:u/2,r:R,fill:\"none\",stroke:\"currentColor\",strokeWidth:p,className:\"text-slate-200 dark:text-slate-700\"}),h.jsx(pe.circle,{cx:u/2,cy:u/2,r:R,fill:\"none\",stroke:`url(#${E})`,strokeWidth:p,strokeLinecap:\"round\",strokeDasharray:b,initial:{strokeDashoffset:b},animate:{strokeDashoffset:N},transition:{duration:1,ease:\"easeOut\",delay:.2}}),h.jsx(\"defs\",{children:h.jsxs(\"linearGradient\",{id:E,x1:\"0%\",y1:\"0%\",x2:\"100%\",y2:\"0%\",children:[h.jsx(\"stop\",{offset:\"0%\",stopColor:O.start}),h.jsx(\"stop\",{offset:\"100%\",stopColor:O.end})]})})]}),h.jsxs(\"div\",{className:\"absolute inset-0 flex flex-col items-center justify-center overflow-visible\",children:[K&&h.jsxs(pe.span,{className:\"font-semibold text-slate-900 dark:text-white\",style:{fontSize:u<50?10:u<70?12:16},initial:{opacity:0,scale:.5},animate:{opacity:1,scale:1},transition:{delay:.5},children:[Math.round(F),\"%\"]}),U&&h.jsx(\"span\",{className:\"text-slate-500 dark:text-slate-400 font-medium truncate text-center\",style:{fontSize:u<50?8:10,maxWidth:u*.75},children:U})]})]}),m&&h.jsx(\"span\",{className:\"mt-1 text-xs text-slate-600 dark:text-slate-400 font-medium\",children:m})]})},QT=(i,o=14)=>{switch(i){case 1:return h.jsx(mh,{size:o,className:\"text-amber-400\"});case 2:return h.jsx(EM,{size:o,className:\"text-slate-400\"});case 3:return h.jsx(co,{size:o,className:\"text-orange-400\"});default:return null}},nB=i=>{switch(i){case 1:return\"bg-gradient-to-r from-[#ff6b57] to-[#ff8a6a] text-white shadow-md\";case 2:return\"bg-gradient-to-r from-slate-300 to-slate-400 text-slate-800\";case 3:return\"bg-gradient-to-r from-orange-400 to-orange-500 text-white\";default:return\"bg-slate-100 dark:bg-slate-700 text-slate-600 dark:text-slate-300\"}},DT=({delta:i,showZero:o=!1})=>i>0?h.jsxs(\"span\",{className:\"flex items-center gap-0.5 text-green-500 text-xs font-medium\",children:[h.jsx(Os,{size:12}),\"+\",i]}):i<0?h.jsxs(\"span\",{className:\"flex items-center gap-0.5 text-red-500 text-xs font-medium\",children:[h.jsx(jM,{size:12}),i]}):o?h.jsx(\"span\",{className:\"flex items-center gap-0.5 text-slate-400 text-xs text-center justify-end w-full\",children:h.jsx(MM,{size:12})}):null,OU=({entries:i,title:o=\"Leaderboard\",scope:u=\"global\",className:p=\"\",maxDisplay:A=5,onViewAll:U,onEntryClick:m})=>{const y=i.slice(0,A),K={global:\"\uD83C\uDF0D Global\",team:\"\uD83D\uDC65 Team\",season:\"\uD83C\uDFC6 Season\"};return h.jsxs(\"div\",{className:`${p}`,children:[h.jsxs(\"div\",{className:\"flex items-center justify-between mb-3\",children:[h.jsx(\"h3\",{className:\"font-semibold text-slate-900 dark:text-white\",children:o}),h.jsx(\"span\",{className:\"text-xs text-slate-500 dark:text-slate-400 bg-slate-100 dark:bg-slate-800 px-2 py-0.5 rounded-full\",children:K[u]})]}),h.jsx(\"div\",{className:\"space-y-2\",children:y.map((F,R)=>{var b;return h.jsxs(pe.div,{className:`flex items-center gap-3 p-2 rounded-lg transition-colors cursor-pointer ${F.isCurrentUser?\"bg-[#ff6b57]/5 dark:bg-[#ff6b57]/10 border border-[#ff6b57]/20 dark:border-[#ff6b57]/30\":\"bg-slate-50 dark:bg-slate-800/50 hover:bg-slate-100 dark:hover:bg-slate-800\"}`,initial:{opacity:0,x:-20},animate:{opacity:1,x:0},transition:{delay:R*.1},whileHover:{scale:1.02,x:4},whileTap:{scale:.98},onClick:()=>m==null?void 0:m(F),children:[h.jsx(\"div\",{className:`w-7 h-7 rounded-full flex items-center justify-center text-xs font-bold ${nB(F.rank)}`,children:QT(F.rank)||F.rank}),h.jsx(\"div\",{className:\"w-8 h-8 rounded-full bg-gradient-to-br from-[#ff6b57] to-[#ff8a6a] flex items-center justify-center text-white text-xs font-bold overflow-hidden\",children:F.avatarUrl?h.jsx(\"img\",{src:F.avatarUrl,alt:\"\",className:\"w-full h-full object-cover\"}):F.displayName.charAt(0).toUpperCase()}),h.jsx(\"div\",{className:\"flex-1 min-w-0\",children:h.jsxs(\"p\",{className:`text-sm font-medium truncate ${F.isCurrentUser?\"text-[#ff6b57] dark:text-[#ff8a6a]\":\"text-gray-900 dark:text-white\"}`,children:[F.displayName,F.isCurrentUser&&h.jsx(\"span\",{className:\"ml-1 text-xs\",children:\"(You)\"})]})}),h.jsxs(\"div\",{className:\"text-right\",children:[h.jsx(\"p\",{className:\"text-sm font-bold text-slate-900 dark:text-white\",children:((b=F.score)!=null?b:0).toLocaleString()}),h.jsx(DT,{delta:F.delta})]})]},F.userId)})}),i.length>A&&U&&h.jsx(\"button\",{onClick:U,className:\"w-full mt-3 py-2 text-xs font-medium text-[#ff6b57] hover:text-[#e55a48] hover:bg-[#ff6b57]/10 rounded-lg transition-colors\",children:\"View Full Leaderboard \u2192\"})]})},jT={common:{border:\"border-slate-300 dark:border-slate-600\",bg:\"bg-slate-50 dark:bg-slate-800\",glow:\"\",text:\"text-slate-700 dark:text-slate-300\",label:\"Common\",labelColor:\"text-slate-500\",labelBg:\"bg-slate-100 dark:bg-slate-700\",iconColor:\"text-slate-400\"},rare:{border:\"border-slate-400 dark:border-slate-500\",bg:\"bg-slate-100 dark:bg-slate-800\",glow:\"shadow-[0_0_12px_rgba(255,107,87,0.15)]\",text:\"text-slate-800 dark:text-slate-200\",label:\"Rare\",labelColor:\"text-slate-600\",labelBg:\"bg-slate-200 dark:bg-slate-700\",iconColor:\"text-slate-500\"},epic:{border:\"border-[#ff8a6a] dark:border-[#ff8a6a]\",bg:\"bg-[#fff0eb] dark:bg-[#ff8a6a]/10\",glow:\"shadow-[0_0_16px_rgba(255,138,106,0.25)]\",text:\"text-[#ff6b57] dark:text-[#ff8a6a]\",label:\"Epic\",labelColor:\"text-[#ff6b57]\",labelBg:\"bg-[#ffe7e0] dark:bg-[#ff6b57]/20\",iconColor:\"text-[#ff6b57]\"},legendary:{border:\"border-[#ff6b57] dark:border-[#ff6b57]\",bg:\"bg-[#ffe7e0] dark:bg-[#ff6b57]/20\",glow:\"shadow-[0_0_20px_rgba(255,107,87,0.4)]\",text:\"text-[#e55a48] dark:text-[#ff6b57]\",label:\"Legendary\",labelColor:\"text-[#e55a48]\",labelBg:\"bg-[#ffd4cb] dark:bg-[#e55a48]/20\",iconColor:\"text-[#e55a48]\"}},VU=({badges:i,title:o=\"Badges\",className:u=\"\",maxDisplay:p=6,onBadgeClick:A,onViewAll:U})=>{const m=i.slice(0,p),y=i.filter(F=>F.unlocked).length,K=i.length;return h.jsxs(\"div\",{className:u,children:[h.jsxs(\"div\",{className:\"flex items-center justify-between mb-4\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(co,{size:18,className:\"text-[#ff6b57]\"}),h.jsx(\"h3\",{className:\"font-bold text-slate-900 dark:text-white\",children:o})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(Bl,{value:y,max:K,size:40,strokeWidth:3,showValue:!1,color:\"coral\"}),h.jsxs(\"div\",{className:\"text-right\",children:[h.jsxs(\"div\",{className:\"text-sm font-bold text-slate-900 dark:text-white\",children:[y,\"/\",K]}),h.jsx(\"div\",{className:\"text-[10px] text-slate-500\",children:\"unlocked\"})]})]})]}),h.jsx(\"div\",{className:\"grid grid-cols-3 gap-4\",children:m.map((F,R)=>{const b=jT[F.rarity],N=F.rarity===\"legendary\";return h.jsxs(pe.div,{className:\"relative\",initial:{opacity:0,y:20,scale:.8},animate:{opacity:1,y:0,scale:1},transition:{delay:R*.08,type:\"spring\",stiffness:200,damping:15},children:[h.jsxs(pe.div,{className:`\n relative aspect-square rounded-2xl border-2 \n flex flex-col items-center justify-center p-3\n transition-all duration-300 cursor-pointer\n ${b.border} \n ${F.unlocked?`${b.bg} shadow-lg`:\"bg-white/50 dark:bg-slate-800/30 border-slate-300/50 dark:border-slate-600/50 backdrop-blur-sm\"}\n `,whileHover:F.unlocked?{scale:1.1,y:-8,rotate:[0,-2,2,-2,0],transition:{duration:.3}}:{scale:1.02},whileTap:{scale:.95},onClick:()=>A==null?void 0:A(F.id),children:[F.unlocked&&N&&h.jsx(pe.div,{className:\"absolute inset-0 rounded-2xl overflow-hidden\",initial:{opacity:0},animate:{opacity:[0,1,0]},transition:{duration:2,repeat:1/0,repeatDelay:1},children:h.jsx(\"div\",{className:\"absolute inset-0 bg-gradient-to-r from-transparent via-white/30 to-transparent skew-x-12 -translate-x-full animate-shimmer\"})}),F.unlocked&&h.jsx(\"div\",{className:`absolute inset-0 rounded-2xl ${b.glow} opacity-40 blur-md`}),h.jsx(\"div\",{className:\"relative z-10 w-14 h-14 mb-2\",children:h.jsx(pe.div,{className:`\n w-full h-full rounded-full \n flex items-center justify-center\n ${F.unlocked?\"bg-gradient-to-br from-white/40 to-white/10 backdrop-blur-sm\":\"bg-white/60 dark:bg-slate-700/50\"}\n `,animate:F.unlocked?{boxShadow:[\"0 0 20px rgba(255, 107, 87, 0.3)\",\"0 0 40px rgba(255, 107, 87, 0.5)\",\"0 0 20px rgba(255, 107, 87, 0.3)\"]}:{},transition:{duration:2,repeat:1/0},children:F.imageUrl?h.jsx(\"img\",{src:F.imageUrl,alt:F.name,className:`w-10 h-10 object-contain ${F.unlocked?\"\":\"opacity-30 grayscale\"}`}):h.jsx(\"span\",{className:`text-3xl ${F.unlocked?\"\":\"opacity-30 grayscale\"}`,children:N?\"\uD83D\uDC51\":F.rarity===\"epic\"?\"\uD83D\uDC8E\":F.rarity===\"rare\"?\"\u2B50\":\"\uD83C\uDFC5\"})})}),F.unlocked&&h.jsx(\"div\",{className:\"absolute top-1.5 left-1.5\",children:N&&h.jsx(pe.div,{animate:{rotate:360},transition:{duration:20,repeat:1/0,ease:\"linear\"},children:h.jsx(mh,{size:14,className:\"text-amber-400\"})})}),!F.unlocked&&h.jsx(pe.div,{className:\"absolute inset-0 flex items-center justify-center rounded-2xl\",initial:{opacity:0},animate:{opacity:1},transition:{delay:R*.05},children:h.jsx(pe.div,{className:\"flex flex-col items-center gap-1\",animate:{scale:[1,1.05,1]},transition:{duration:2,repeat:1/0,ease:\"easeInOut\"},children:h.jsx(\"div\",{className:\"p-2.5 bg-white dark:bg-slate-800 rounded-full shadow-lg border border-slate-200 dark:border-slate-700\",children:h.jsx(EU,{size:18,className:\"text-slate-500 dark:text-slate-400\"})})})}),F.newlyEarned&&h.jsx(pe.div,{className:\"absolute -top-2 -right-2 w-7 h-7 bg-gradient-to-br from-[#ff6b57] to-[#ff8a6a] rounded-full flex items-center justify-center shadow-xl border-2 border-white dark:border-slate-900\",initial:{scale:0,rotate:-180},animate:{scale:1,rotate:0},transition:{type:\"spring\",delay:.3+R*.05,stiffness:200},children:h.jsx(pe.div,{animate:{rotate:[0,10,-10,10,0]},transition:{duration:.5,delay:.5+R*.05},children:h.jsx(El,{size:12,className:\"text-white\"})})}),h.jsx(\"p\",{className:`\n relative z-10 text-[11px] text-center font-semibold leading-tight line-clamp-2\n ${F.unlocked?b.text+\" drop-shadow-sm\":\"text-slate-500 dark:text-slate-500\"}\n `,children:F.name})]}),F.unlocked&&N&&h.jsx(h.Fragment,{children:[...Array(3)].map((E,O)=>h.jsx(pe.div,{className:\"absolute w-1 h-1 bg-amber-400 rounded-full\",style:{left:`${30+O*20}%`,top:\"10%\"},animate:{y:[0,-20,0],opacity:[0,1,0],scale:[0,1,0]},transition:{duration:2,repeat:1/0,delay:O*.3}},O))})]},F.id)})}),i.length>p&&U&&h.jsxs(pe.button,{onClick:U,className:\"w-full mt-4 py-3 px-4 bg-gradient-to-r from-[#ff6b57]/10 to-[#ff8a6a]/10 hover:from-[#ff6b57]/20 hover:to-[#ff8a6a]/20 border border-[#ff6b57]/20 rounded-xl transition-all font-semibold text-sm text-[#ff6b57] flex items-center justify-center gap-2 group\",whileHover:{scale:1.02},whileTap:{scale:.98},children:[h.jsxs(\"span\",{children:[\"View All \",i.length,\" Badges\"]}),h.jsx(pe.span,{animate:{x:[0,4,0]},transition:{duration:1,repeat:1/0},children:\"\u2192\"})]})]})},aB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M168.49,199.51a12,12,0,0,1-17,17l-80-80a12,12,0,0,1,0-17l80-80a12,12,0,0,1,17,17L97,128Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M160,48V208L80,128Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M163.06,40.61a8,8,0,0,0-8.72,1.73l-80,80a8,8,0,0,0,0,11.32l80,80A8,8,0,0,0,168,208V48A8,8,0,0,0,163.06,40.61ZM152,188.69,91.31,128,152,67.31Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M168,48V208a8,8,0,0,1-13.66,5.66l-80-80a8,8,0,0,1,0-11.32l80-80A8,8,0,0,1,168,48Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M164.24,203.76a6,6,0,1,1-8.48,8.48l-80-80a6,6,0,0,1,0-8.48l80-80a6,6,0,0,1,8.48,8.48L88.49,128Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M162.83,205.17a4,4,0,0,1-5.66,5.66l-80-80a4,4,0,0,1,0-5.66l80-80a4,4,0,1,1,5.66,5.66L85.66,128Z\"}))]]),rB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M128,20A108,108,0,1,0,236,128,108.12,108.12,0,0,0,128,20Zm0,192a84,84,0,1,1,84-84A84.09,84.09,0,0,1,128,212Zm68-84a12,12,0,0,1-12,12H128a12,12,0,0,1-12-12V72a12,12,0,0,1,24,0v44h44A12,12,0,0,1,196,128Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm56,112H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48a8,8,0,0,1,0,16Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M128,26A102,102,0,1,0,230,128,102.12,102.12,0,0,0,128,26Zm0,192a90,90,0,1,1,90-90A90.1,90.1,0,0,1,128,218Zm62-90a6,6,0,0,1-6,6H128a6,6,0,0,1-6-6V72a6,6,0,0,1,12,0v50h50A6,6,0,0,1,190,128Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M128,28A100,100,0,1,0,228,128,100.11,100.11,0,0,0,128,28Zm0,192a92,92,0,1,1,92-92A92.1,92.1,0,0,1,128,220Zm60-92a4,4,0,0,1-4,4H128a4,4,0,0,1-4-4V72a4,4,0,0,1,8,0v52h52A4,4,0,0,1,188,128Z\"}))]]),iB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M177.62,159.6a52,52,0,0,1-34,34,12.2,12.2,0,0,1-3.6.55,12,12,0,0,1-3.6-23.45,28,28,0,0,0,18.32-18.32,12,12,0,0,1,22.9,7.2ZM220,144a92,92,0,0,1-184,0c0-28.81,11.27-58.18,33.48-87.28a12,12,0,0,1,17.9-1.33L107.07,74.5,127,19.89a12,12,0,0,1,18.94-5.12C168.2,33.25,220,82.85,220,144Zm-24,0c0-41.71-30.61-78.39-52.52-99.29l-20.21,55.4a12,12,0,0,1-19.63,4.5L80.71,82.36C67,103.38,60,124.06,60,144a68,68,0,0,0,136,0Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M208,144a80,80,0,0,1-160,0c0-30.57,14.42-58.26,31-80l33,32,26.27-72C159.86,41.92,208,88.15,208,144Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M183.89,153.34a57.6,57.6,0,0,1-46.56,46.55A8.75,8.75,0,0,1,136,200a8,8,0,0,1-1.32-15.89c16.57-2.79,30.63-16.85,33.44-33.45a8,8,0,0,1,15.78,2.68ZM216,144a88,88,0,0,1-176,0c0-27.92,11-56.47,32.66-84.85a8,8,0,0,1,11.93-.89l24.12,23.41,22-60.41a8,8,0,0,1,12.63-3.41C165.21,36,216,84.55,216,144Zm-16,0c0-46.09-35.79-85.92-58.21-106.33L119.52,98.74a8,8,0,0,1-13.09,3L80.06,76.16C64.09,99.21,56,122,56,144a72,72,0,0,0,144,0Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M143.38,17.85a8,8,0,0,0-12.63,3.41l-22,60.41L84.59,58.26a8,8,0,0,0-11.93.89C51,87.53,40,116.08,40,144a88,88,0,0,0,176,0C216,84.55,165.21,36,143.38,17.85Zm40.51,135.49a57.6,57.6,0,0,1-46.56,46.55A7.65,7.65,0,0,1,136,200a8,8,0,0,1-1.32-15.89c16.57-2.79,30.63-16.85,33.44-33.45a8,8,0,0,1,15.78,2.68Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M181.92,153A55.58,55.58,0,0,1,137,197.92a7,7,0,0,1-1,.08,6,6,0,0,1-1-11.92c17.38-2.92,32.13-17.68,35.08-35.08a6,6,0,1,1,11.84,2ZM214,144a86,86,0,0,1-172,0c0-27.47,10.85-55.61,32.25-83.64a6,6,0,0,1,9-.67l26.34,25.56,23.09-63.31a6,6,0,0,1,9.47-2.56C163.72,37.33,214,85.4,214,144Zm-12,0c0-48.4-38.65-89.84-61.07-109.8L117.64,98.06a6,6,0,0,1-9.82,2.25l-28-27.22C62.67,97.13,54,121,54,144a74,74,0,0,0,148,0Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M183.89,153.34a57.6,57.6,0,0,1-46.56,46.55A8.75,8.75,0,0,1,136,200a8,8,0,0,1-1.32-15.89c16.57-2.79,30.63-16.85,33.44-33.45a8,8,0,0,1,15.78,2.68ZM216,144a88,88,0,0,1-176,0c0-27.92,11-56.47,32.66-84.85a8,8,0,0,1,11.93-.89l24.12,23.41,22-60.41a8,8,0,0,1,12.63-3.41C165.21,36,216,84.55,216,144Zm-16,0c0-46.09-35.79-85.92-58.21-106.33L119.52,98.74a8,8,0,0,1-13.09,3L80.06,76.16C64.09,99.21,56,122,56,144a72,72,0,0,0,144,0Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M179.94,152.67a53.51,53.51,0,0,1-43.28,43.27,3.68,3.68,0,0,1-.66.06,4,4,0,0,1-.66-7.94c18.18-3.06,33.63-18.51,36.72-36.73a4,4,0,0,1,7.88,1.34ZM212,144a84,84,0,0,1-168,0c0-27,10.71-54.75,31.84-82.43a4,4,0,0,1,6-.44l28.55,27.7,24.15-66.2a4,4,0,0,1,6.31-1.71C162.22,38.69,212,86.24,212,144Zm-8,0c0-50.82-41.73-93.91-63.94-113.23l-24.3,66.6a4,4,0,0,1-6.55,1.5L79.5,70C61.25,95.07,52,119.93,52,144a76,76,0,0,0,152,0Z\"}))]]),oB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M176,116H152a12,12,0,0,1,0-24h24a12,12,0,0,1,0,24ZM104,92h-4V88a12,12,0,0,0-24,0v4H72a12,12,0,0,0,0,24h4v4a12,12,0,0,0,24,0v-4h4a12,12,0,0,0,0-24ZM244.76,202.94a40,40,0,0,1-61,5.35,7,7,0,0,1-.53-.56L144.67,164H111.33L72.81,207.73c-.17.19-.35.38-.53.56A40,40,0,0,1,4.62,173.05a1.18,1.18,0,0,1,0-.2L21,88.79A63.88,63.88,0,0,1,83.88,36H172a64.08,64.08,0,0,1,62.93,52.48,1.8,1.8,0,0,1,0,.19l16.36,84.17a1.77,1.77,0,0,1,0,.2A39.74,39.74,0,0,1,244.76,202.94ZM172,140a40,40,0,0,0,0-80H83.89A39.9,39.9,0,0,0,44.62,93.06a1.55,1.55,0,0,0,0,.21l-16.34,84a16,16,0,0,0,13,18.44,16.07,16.07,0,0,0,13.86-4.21L96.9,144.07a12,12,0,0,1,9-4.07Zm55.76,37.31-7-35.95a63.84,63.84,0,0,1-44.27,22.46l24.41,27.72a16,16,0,0,0,26.85-14.23Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M216.86,207.57a28,28,0,0,1-24.66-7.77L150.09,152H172a51.94,51.94,0,0,0,51.2-61h0l16.36,84.17A28,28,0,0,1,216.86,207.57Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M176,112H152a8,8,0,0,1,0-16h24a8,8,0,0,1,0,16ZM104,96H96V88a8,8,0,0,0-16,0v8H72a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16ZM241.48,200.65a36,36,0,0,1-54.94,4.81c-.12-.12-.24-.24-.35-.37L146.48,160h-37L69.81,205.09l-.35.37A36.08,36.08,0,0,1,44,216,36,36,0,0,1,8.56,173.75a.68.68,0,0,1,0-.14L24.93,89.52A59.88,59.88,0,0,1,83.89,40H172a60.08,60.08,0,0,1,59,49.25c0,.06,0,.12,0,.18l16.37,84.17a.68.68,0,0,1,0,.14A35.74,35.74,0,0,1,241.48,200.65ZM172,144a44,44,0,0,0,0-88H83.89A43.9,43.9,0,0,0,40.68,92.37l0,.13L24.3,176.59A20,20,0,0,0,58,194.3l41.92-47.59a8,8,0,0,1,6-2.71Zm59.7,32.59-8.74-45A60,60,0,0,1,172,160h-4.2L198,194.31a20.09,20.09,0,0,0,17.46,5.39,20,20,0,0,0,16.23-23.11Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M247.44,173.75a.68.68,0,0,0,0-.14L231.05,89.44c0-.06,0-.12,0-.18A60.08,60.08,0,0,0,172,40H83.89a59.88,59.88,0,0,0-59,49.52L8.58,173.61a.68.68,0,0,0,0,.14,36,36,0,0,0,60.9,31.71l.35-.37L109.52,160h37l39.71,45.09c.11.13.23.25.35.37A36.08,36.08,0,0,0,212,216a36,36,0,0,0,35.43-42.25ZM104,112H96v8a8,8,0,0,1-16,0v-8H72a8,8,0,0,1,0-16h8V88a8,8,0,0,1,16,0v8h8a8,8,0,0,1,0,16Zm40-8a8,8,0,0,1,8-8h24a8,8,0,0,1,0,16H152A8,8,0,0,1,144,104Zm84.37,87.47a19.84,19.84,0,0,1-12.9,8.23A20.09,20.09,0,0,1,198,194.31L167.8,160H172a60,60,0,0,0,51-28.38l8.74,45A19.82,19.82,0,0,1,228.37,191.47Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M176,110H152a6,6,0,0,1,0-12h24a6,6,0,0,1,0,12ZM104,98H94V88a6,6,0,0,0-12,0V98H72a6,6,0,0,0,0,12H82v10a6,6,0,0,0,12,0V110h10a6,6,0,0,0,0-12ZM239.84,199.5A34,34,0,0,1,212,214,34.11,34.11,0,0,1,188,204.05l-.26-.28L147.38,158H108.62L68.31,203.76,68,204A34,34,0,0,1,44,214a34,34,0,0,1-33.46-39.91s0-.06,0-.1L26.9,89.88A57.89,57.89,0,0,1,83.89,42H172a58.07,58.07,0,0,1,57.05,47.63c0,.07,0,.12,0,.19L245.46,174s0,.07,0,.11A33.75,33.75,0,0,1,239.84,199.5ZM172,146a46,46,0,0,0,0-92H83.89A45.9,45.9,0,0,0,38.71,92a.36.36,0,0,0,0,.1L22.33,176.23a22,22,0,0,0,37.11,19.45l42-47.65a6,6,0,0,1,4.5-2Zm61.67,30.23-9.79-50.35A58.06,58.06,0,0,1,172,158h-8.63l33.19,37.68a22,22,0,0,0,37.11-19.45Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M176,112H152a8,8,0,0,1,0-16h24a8,8,0,0,1,0,16ZM104,96H96V88a8,8,0,0,0-16,0v8H72a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16ZM241.48,200.65a36,36,0,0,1-54.94,4.81c-.12-.12-.24-.24-.35-.37L146.48,160h-37L69.81,205.09l-.35.37A36.08,36.08,0,0,1,44,216,36,36,0,0,1,8.56,173.75a.68.68,0,0,1,0-.14L24.93,89.52A59.88,59.88,0,0,1,83.89,40H172a60.08,60.08,0,0,1,59,49.25c0,.06,0,.12,0,.18l16.37,84.17a.68.68,0,0,1,0,.14A35.74,35.74,0,0,1,241.48,200.65ZM172,144a44,44,0,0,0,0-88H83.89A43.9,43.9,0,0,0,40.68,92.37l0,.13L24.3,176.59A20,20,0,0,0,58,194.3l41.92-47.59a8,8,0,0,1,6-2.71Zm59.7,32.59-8.74-45A60,60,0,0,1,172,160h-4.2L198,194.31a20.09,20.09,0,0,0,17.46,5.39,20,20,0,0,0,16.23-23.11Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M176,108H152a4,4,0,0,1,0-8h24a4,4,0,0,1,0,8Zm-72-8H92V88a4,4,0,0,0-8,0v12H72a4,4,0,0,0,0,8H84v12a4,4,0,0,0,8,0V108h12a4,4,0,0,0,0-8Zm134.21,98.36a32,32,0,0,1-48.84,4.27l-.17-.18L148.29,156H107.72L66.81,202.44l-.18.19A32.08,32.08,0,0,1,44,212a32,32,0,0,1-31.5-37.56L28.87,90.21A55.87,55.87,0,0,1,83.89,44H172a56.07,56.07,0,0,1,55.1,46.1.29.29,0,0,1,0,.1l16.37,84.16A31.86,31.86,0,0,1,238.21,198.36ZM172,148a48,48,0,1,0,0-96H83.9A47.9,47.9,0,0,0,36.74,91.67L20.36,175.9a24,24,0,0,0,19.48,27.73,24,24,0,0,0,21-6.58l42-47.69a4,4,0,0,1,3-1.36Zm63.63,27.83-11-56.66A56.09,56.09,0,0,1,172,156H159l36.16,41.06a24,24,0,0,0,40.52-21.23Z\"}))]]),lB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M219.71,117.38a12,12,0,0,0-7.25-8.52L161.28,88.39l10.59-70.61a12,12,0,0,0-20.64-10l-112,120a12,12,0,0,0,4.31,19.33l51.18,20.47L84.13,238.22a12,12,0,0,0,20.64,10l112-120A12,12,0,0,0,219.71,117.38ZM113.6,203.55l6.27-41.77a12,12,0,0,0-7.41-12.92L68.74,131.37,142.4,52.45l-6.27,41.77a12,12,0,0,0,7.41,12.92l43.72,17.49Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M96,240l16-80L48,136,160,16,144,96l64,24Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M215.79,118.17a8,8,0,0,0-5-5.66L153.18,90.9l14.66-73.33a8,8,0,0,0-13.69-7l-112,120a8,8,0,0,0,3,13l57.63,21.61L88.16,238.43a8,8,0,0,0,13.69,7l112-120A8,8,0,0,0,215.79,118.17ZM109.37,214l10.47-52.38a8,8,0,0,0-5-9.06L62,132.71l84.62-90.66L136.16,94.43a8,8,0,0,0,5,9.06l52.8,19.8Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M213.85,125.46l-112,120a8,8,0,0,1-13.69-7l14.66-73.33L45.19,143.49a8,8,0,0,1-3-13l112-120a8,8,0,0,1,13.69,7L153.18,90.9l57.63,21.61a8,8,0,0,1,3,12.95Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M213.84,118.63a6,6,0,0,0-3.73-4.25L150.88,92.17l15-75a6,6,0,0,0-10.27-5.27l-112,120a6,6,0,0,0,2.28,9.71l59.23,22.21-15,75a6,6,0,0,0,3.14,6.52A6.07,6.07,0,0,0,96,246a6,6,0,0,0,4.39-1.91l112-120A6,6,0,0,0,213.84,118.63ZM106,220.46l11.85-59.28a6,6,0,0,0-3.77-6.8l-55.6-20.85,91.46-98L138.12,94.82a6,6,0,0,0,3.77,6.8l55.6,20.85Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M215.79,118.17a8,8,0,0,0-5-5.66L153.18,90.9l14.66-73.33a8,8,0,0,0-13.69-7l-112,120a8,8,0,0,0,3,13l57.63,21.61L88.16,238.43a8,8,0,0,0,13.69,7l112-120A8,8,0,0,0,215.79,118.17ZM109.37,214l10.47-52.38a8,8,0,0,0-5-9.06L62,132.71l84.62-90.66L136.16,94.43a8,8,0,0,0,5,9.06l52.8,19.8Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M211.89,119.09a4,4,0,0,0-2.49-2.84l-60.81-22.8,15.33-76.67a4,4,0,0,0-6.84-3.51l-112,120a4,4,0,0,0-1,3.64,4,4,0,0,0,2.49,2.84l60.81,22.8L92.08,239.22a4,4,0,0,0,6.84,3.51l112-120A4,4,0,0,0,211.89,119.09ZM102.68,227l13.24-66.2a4,4,0,0,0-2.52-4.53L55,134.36,153.32,29l-13.24,66.2a4,4,0,0,0,2.52,4.53L201,121.64Z\"}))]]),sB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M234.49,111.07,90.41,22.94A20,20,0,0,0,60,39.87V216.13a20,20,0,0,0,30.41,16.93l144.08-88.13a19.82,19.82,0,0,0,0-33.86ZM84,208.85V47.15L216.16,128Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M228.23,134.69,84.15,222.81A8,8,0,0,1,72,216.12V39.88a8,8,0,0,1,12.15-6.69l144.08,88.12A7.82,7.82,0,0,1,228.23,134.69Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M232.4,114.49,88.32,26.35a16,16,0,0,0-16.2-.3A15.86,15.86,0,0,0,64,39.87V216.13A15.94,15.94,0,0,0,80,232a16.07,16.07,0,0,0,8.36-2.35L232.4,141.51a15.81,15.81,0,0,0,0-27ZM80,215.94V40l143.83,88Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M240,128a15.74,15.74,0,0,1-7.6,13.51L88.32,229.65a16,16,0,0,1-16.2.3A15.86,15.86,0,0,1,64,216.13V39.87a15.86,15.86,0,0,1,8.12-13.82,16,16,0,0,1,16.2.3L232.4,114.49A15.74,15.74,0,0,1,240,128Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M231.36,116.19,87.28,28.06a14,14,0,0,0-14.18-.27A13.69,13.69,0,0,0,66,39.87V216.13a13.69,13.69,0,0,0,7.1,12.08,14,14,0,0,0,14.18-.27l144.08-88.13a13.82,13.82,0,0,0,0-23.62Zm-6.26,13.38L81,217.7a2,2,0,0,1-2.06,0,1.78,1.78,0,0,1-1-1.61V39.87a1.78,1.78,0,0,1,1-1.61A2.06,2.06,0,0,1,80,38a2,2,0,0,1,1,.31L225.1,126.43a1.82,1.82,0,0,1,0,3.14Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M232.4,114.49,88.32,26.35a16,16,0,0,0-16.2-.3A15.86,15.86,0,0,0,64,39.87V216.13A15.94,15.94,0,0,0,80,232a16.07,16.07,0,0,0,8.36-2.35L232.4,141.51a15.81,15.81,0,0,0,0-27ZM80,215.94V40l143.83,88Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M230.32,117.9,86.24,29.79a11.91,11.91,0,0,0-12.17-.23A11.71,11.71,0,0,0,68,39.89V216.11a11.71,11.71,0,0,0,6.07,10.33,11.91,11.91,0,0,0,12.17-.23L230.32,138.1a11.82,11.82,0,0,0,0-20.2Zm-4.18,13.37L82.06,219.39a4,4,0,0,1-4.07.07,3.77,3.77,0,0,1-2-3.35V39.89a3.77,3.77,0,0,1,2-3.35,4,4,0,0,1,4.07.07l144.08,88.12a3.8,3.8,0,0,1,0,6.54Z\"}))]]),uB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M199,125.31l-49.88-18.39L130.69,57a19.92,19.92,0,0,0-37.38,0L74.92,106.92,25,125.31a19.92,19.92,0,0,0,0,37.38l49.88,18.39L93.31,231a19.92,19.92,0,0,0,37.38,0l18.39-49.88L199,162.69a19.92,19.92,0,0,0,0-37.38Zm-63.38,35.16a12,12,0,0,0-7.11,7.11L112,212.28l-16.47-44.7a12,12,0,0,0-7.11-7.11L43.72,144l44.7-16.47a12,12,0,0,0,7.11-7.11L112,75.72l16.47,44.7a12,12,0,0,0,7.11,7.11L180.28,144ZM140,40a12,12,0,0,1,12-12h12V16a12,12,0,0,1,24,0V28h12a12,12,0,0,1,0,24H188V64a12,12,0,0,1-24,0V52H152A12,12,0,0,1,140,40ZM252,88a12,12,0,0,1-12,12h-4v4a12,12,0,0,1-24,0v-4h-4a12,12,0,0,1,0-24h4V72a12,12,0,0,1,24,0v4h4A12,12,0,0,1,252,88Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M194.82,151.43l-55.09,20.3-20.3,55.09a7.92,7.92,0,0,1-14.86,0l-20.3-55.09-55.09-20.3a7.92,7.92,0,0,1,0-14.86l55.09-20.3,20.3-55.09a7.92,7.92,0,0,1,14.86,0l20.3,55.09,55.09,20.3A7.92,7.92,0,0,1,194.82,151.43Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M197.58,129.06,146,110l-19-51.62a15.92,15.92,0,0,0-29.88,0L78,110l-51.62,19a15.92,15.92,0,0,0,0,29.88L78,178l19,51.62a15.92,15.92,0,0,0,29.88,0L146,178l51.62-19a15.92,15.92,0,0,0,0-29.88ZM137,164.22a8,8,0,0,0-4.74,4.74L112,223.85,91.78,169A8,8,0,0,0,87,164.22L32.15,144,87,123.78A8,8,0,0,0,91.78,119L112,64.15,132.22,119a8,8,0,0,0,4.74,4.74L191.85,144ZM144,40a8,8,0,0,1,8-8h16V16a8,8,0,0,1,16,0V32h16a8,8,0,0,1,0,16H184V64a8,8,0,0,1-16,0V48H152A8,8,0,0,1,144,40ZM248,88a8,8,0,0,1-8,8h-8v8a8,8,0,0,1-16,0V96h-8a8,8,0,0,1,0-16h8V72a8,8,0,0,1,16,0v8h8A8,8,0,0,1,248,88Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M208,144a15.78,15.78,0,0,1-10.42,14.94L146,178l-19,51.62a15.92,15.92,0,0,1-29.88,0L78,178l-51.62-19a15.92,15.92,0,0,1,0-29.88L78,110l19-51.62a15.92,15.92,0,0,1,29.88,0L146,110l51.62,19A15.78,15.78,0,0,1,208,144ZM152,48h16V64a8,8,0,0,0,16,0V48h16a8,8,0,0,0,0-16H184V16a8,8,0,0,0-16,0V32H152a8,8,0,0,0,0,16Zm88,32h-8V72a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0V96h8a8,8,0,0,0,0-16Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M196.89,130.94,144.4,111.6,125.06,59.11a13.92,13.92,0,0,0-26.12,0L79.6,111.6,27.11,130.94a13.92,13.92,0,0,0,0,26.12L79.6,176.4l19.34,52.49a13.92,13.92,0,0,0,26.12,0L144.4,176.4l52.49-19.34a13.92,13.92,0,0,0,0-26.12Zm-4.15,14.86-55.08,20.3a6,6,0,0,0-3.56,3.56l-20.3,55.08a1.92,1.92,0,0,1-3.6,0L89.9,169.66a6,6,0,0,0-3.56-3.56L31.26,145.8a1.92,1.92,0,0,1,0-3.6l55.08-20.3a6,6,0,0,0,3.56-3.56l20.3-55.08a1.92,1.92,0,0,1,3.6,0l20.3,55.08a6,6,0,0,0,3.56,3.56l55.08,20.3a1.92,1.92,0,0,1,0,3.6ZM146,40a6,6,0,0,1,6-6h18V16a6,6,0,0,1,12,0V34h18a6,6,0,0,1,0,12H182V64a6,6,0,0,1-12,0V46H152A6,6,0,0,1,146,40ZM246,88a6,6,0,0,1-6,6H230v10a6,6,0,0,1-12,0V94H208a6,6,0,0,1,0-12h10V72a6,6,0,0,1,12,0V82h10A6,6,0,0,1,246,88Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M197.58,129.06,146,110l-19-51.62a15.92,15.92,0,0,0-29.88,0L78,110l-51.62,19a15.92,15.92,0,0,0,0,29.88L78,178l19,51.62a15.92,15.92,0,0,0,29.88,0L146,178l51.62-19a15.92,15.92,0,0,0,0-29.88ZM137,164.22a8,8,0,0,0-4.74,4.74L112,223.85,91.78,169A8,8,0,0,0,87,164.22L32.15,144,87,123.78A8,8,0,0,0,91.78,119L112,64.15,132.22,119a8,8,0,0,0,4.74,4.74L191.85,144ZM144,40a8,8,0,0,1,8-8h16V16a8,8,0,0,1,16,0V32h16a8,8,0,0,1,0,16H184V64a8,8,0,0,1-16,0V48H152A8,8,0,0,1,144,40ZM248,88a8,8,0,0,1-8,8h-8v8a8,8,0,0,1-16,0V96h-8a8,8,0,0,1,0-16h8V72a8,8,0,0,1,16,0v8h8A8,8,0,0,1,248,88Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M196.2,132.81l-53.36-19.65L123.19,59.8a11.93,11.93,0,0,0-22.38,0L81.16,113.16,27.8,132.81a11.93,11.93,0,0,0,0,22.38l53.36,19.65,19.65,53.36a11.93,11.93,0,0,0,22.38,0l19.65-53.36,53.36-19.65a11.93,11.93,0,0,0,0-22.38Zm-2.77,14.87L138.35,168a4,4,0,0,0-2.37,2.37l-20.3,55.08a3.92,3.92,0,0,1-7.36,0L88,170.35A4,4,0,0,0,85.65,168l-55.08-20.3a3.92,3.92,0,0,1,0-7.36L85.65,120A4,4,0,0,0,88,117.65l20.3-55.08a3.92,3.92,0,0,1,7.36,0L136,117.65a4,4,0,0,0,2.37,2.37l55.08,20.3a3.92,3.92,0,0,1,0,7.36ZM148,40a4,4,0,0,1,4-4h20V16a4,4,0,0,1,8,0V36h20a4,4,0,0,1,0,8H180V64a4,4,0,0,1-8,0V44H152A4,4,0,0,1,148,40Zm96,48a4,4,0,0,1-4,4H228v12a4,4,0,0,1-8,0V92H208a4,4,0,0,1,0-8h12V72a4,4,0,0,1,8,0V84h12A4,4,0,0,1,244,88Z\"}))]]),cB=new Map([[\"bold\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M140,32V64a12,12,0,0,1-24,0V32a12,12,0,0,1,24,0Zm33.25,62.75a12,12,0,0,0,8.49-3.52L204.37,68.6a12,12,0,0,0-17-17L164.77,74.26a12,12,0,0,0,8.48,20.49ZM224,116H192a12,12,0,0,0,0,24h32a12,12,0,0,0,0-24Zm-42.26,48.77a12,12,0,1,0-17,17l22.63,22.63a12,12,0,0,0,17-17ZM128,180a12,12,0,0,0-12,12v32a12,12,0,0,0,24,0V192A12,12,0,0,0,128,180ZM74.26,164.77,51.63,187.4a12,12,0,0,0,17,17l22.63-22.63a12,12,0,1,0-17-17ZM76,128a12,12,0,0,0-12-12H32a12,12,0,0,0,0,24H64A12,12,0,0,0,76,128ZM68.6,51.63a12,12,0,1,0-17,17L74.26,91.23a12,12,0,0,0,17-17Z\"}))],[\"duotone\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z\",opacity:\"0.2\"}),Q.createElement(\"path\",{d:\"M136,32V64a8,8,0,0,1-16,0V32a8,8,0,0,1,16,0Zm37.25,58.75a8,8,0,0,0,5.66-2.35l22.63-22.62a8,8,0,0,0-11.32-11.32L167.6,77.09a8,8,0,0,0,5.65,13.66ZM224,120H192a8,8,0,0,0,0,16h32a8,8,0,0,0,0-16Zm-45.09,47.6a8,8,0,0,0-11.31,11.31l22.62,22.63a8,8,0,0,0,11.32-11.32ZM128,184a8,8,0,0,0-8,8v32a8,8,0,0,0,16,0V192A8,8,0,0,0,128,184ZM77.09,167.6,54.46,190.22a8,8,0,0,0,11.32,11.32L88.4,178.91A8,8,0,0,0,77.09,167.6ZM72,128a8,8,0,0,0-8-8H32a8,8,0,0,0,0,16H64A8,8,0,0,0,72,128ZM65.78,54.46A8,8,0,0,0,54.46,65.78L77.09,88.4A8,8,0,0,0,88.4,77.09Z\"}))],[\"fill\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm33.94,58.75,17-17a8,8,0,0,1,11.32,11.32l-17,17a8,8,0,0,1-11.31-11.31ZM48,136a8,8,0,0,1,0-16H72a8,8,0,0,1,0,16Zm46.06,37.25-17,17a8,8,0,0,1-11.32-11.32l17-17a8,8,0,0,1,11.31,11.31Zm0-79.19a8,8,0,0,1-11.31,0l-17-17A8,8,0,0,1,77.09,65.77l17,17A8,8,0,0,1,94.06,94.06ZM136,208a8,8,0,0,1-16,0V184a8,8,0,0,1,16,0Zm0-136a8,8,0,0,1-16,0V48a8,8,0,0,1,16,0Zm54.23,118.23a8,8,0,0,1-11.32,0l-17-17a8,8,0,0,1,11.31-11.31l17,17A8,8,0,0,1,190.23,190.23ZM208,136H184a8,8,0,0,1,0-16h24a8,8,0,0,1,0,16Z\"}))],[\"light\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M134,32V64a6,6,0,0,1-12,0V32a6,6,0,0,1,12,0Zm39.25,56.75A6,6,0,0,0,177.5,87l22.62-22.63a6,6,0,0,0-8.48-8.48L169,78.5a6,6,0,0,0,4.24,10.25ZM224,122H192a6,6,0,0,0,0,12h32a6,6,0,0,0,0-12Zm-46.5,47A6,6,0,0,0,169,177.5l22.63,22.62a6,6,0,0,0,8.48-8.48ZM128,186a6,6,0,0,0-6,6v32a6,6,0,0,0,12,0V192A6,6,0,0,0,128,186ZM78.5,169,55.88,191.64a6,6,0,1,0,8.48,8.48L87,177.5A6,6,0,1,0,78.5,169ZM70,128a6,6,0,0,0-6-6H32a6,6,0,0,0,0,12H64A6,6,0,0,0,70,128ZM64.36,55.88a6,6,0,0,0-8.48,8.48L78.5,87A6,6,0,1,0,87,78.5Z\"}))],[\"regular\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M136,32V64a8,8,0,0,1-16,0V32a8,8,0,0,1,16,0Zm37.25,58.75a8,8,0,0,0,5.66-2.35l22.63-22.62a8,8,0,0,0-11.32-11.32L167.6,77.09a8,8,0,0,0,5.65,13.66ZM224,120H192a8,8,0,0,0,0,16h32a8,8,0,0,0,0-16Zm-45.09,47.6a8,8,0,0,0-11.31,11.31l22.62,22.63a8,8,0,0,0,11.32-11.32ZM128,184a8,8,0,0,0-8,8v32a8,8,0,0,0,16,0V192A8,8,0,0,0,128,184ZM77.09,167.6,54.46,190.22a8,8,0,0,0,11.32,11.32L88.4,178.91A8,8,0,0,0,77.09,167.6ZM72,128a8,8,0,0,0-8-8H32a8,8,0,0,0,0,16H64A8,8,0,0,0,72,128ZM65.78,54.46A8,8,0,0,0,54.46,65.78L77.09,88.4A8,8,0,0,0,88.4,77.09Z\"}))],[\"thin\",Q.createElement(Q.Fragment,null,Q.createElement(\"path\",{d:\"M132,32V64a4,4,0,0,1-8,0V32a4,4,0,0,1,8,0Zm41.25,54.75a4,4,0,0,0,2.83-1.18L198.71,63a4,4,0,0,0-5.66-5.66L170.43,79.92a4,4,0,0,0,2.82,6.83ZM224,124H192a4,4,0,0,0,0,8h32a4,4,0,0,0,0-8Zm-47.92,46.43a4,4,0,1,0-5.65,5.65l22.62,22.63a4,4,0,0,0,5.66-5.66ZM128,188a4,4,0,0,0-4,4v32a4,4,0,0,0,8,0V192A4,4,0,0,0,128,188ZM79.92,170.43,57.29,193.05A4,4,0,0,0,63,198.71l22.62-22.63a4,4,0,1,0-5.65-5.65ZM68,128a4,4,0,0,0-4-4H32a4,4,0,0,0,0,8H64A4,4,0,0,0,68,128ZM63,57.29A4,4,0,0,0,57.29,63L79.92,85.57a4,4,0,1,0,5.65-5.65Z\"}))]]),dB=Q.createContext({color:\"currentColor\",size:\"1em\",weight:\"regular\",mirrored:!1}),Ql=Q.forwardRef((i,o)=>{const B=i,{alt:u,color:p,size:A,weight:U,mirrored:m,children:y,weights:K}=B,F=Wr(B,[\"alt\",\"color\",\"size\",\"weight\",\"mirrored\",\"children\",\"weights\"]),L=Q.useContext(dB),{color:R=\"currentColor\",size:b,weight:N=\"regular\",mirrored:E=!1}=L,O=Wr(L,[\"color\",\"size\",\"weight\",\"mirrored\"]);return Q.createElement(\"svg\",ve(ve({ref:o,xmlns:\"http://www.w3.org/2000/svg\",width:A!=null?A:b,height:A!=null?A:b,fill:p!=null?p:R,viewBox:\"0 0 256 256\",transform:m||E?\"scale(-1, 1)\":void 0},O),F),!!u&&Q.createElement(\"title\",null,u),y,K.get(U!=null?U:N))});Ql.displayName=\"IconBase\";const LT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:aB})));LT.displayName=\"CaretLeftIcon\";const pB=LT,OT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:rB})));OT.displayName=\"ClockIcon\";const fB=OT,VT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:iB})));VT.displayName=\"FireIcon\";const mB=VT,IT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:oB})));IT.displayName=\"GameControllerIcon\";const hB=IT,qT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:lB})));qT.displayName=\"LightningIcon\";const AB=qT,YT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:sB})));YT.displayName=\"PlayIcon\";const gB=YT,GT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:uB})));GT.displayName=\"SparkleIcon\";const vB=GT,WT=Q.forwardRef((i,o)=>Q.createElement(Ql,it(ve({ref:o},i),{weights:cB})));WT.displayName=\"SpinnerIcon\";const UB=WT,JT=[{id:\"match3\",title:\"Match-3 Challenge\",description:\"Take on Nong Po in this timed puzzle battle!\",icon:\"\uD83D\uDC8E\",bannerPath:\"https://sapbstg001.blob.core.windows.net/games/match3/images/game-banners/banner-qwik-match3\",url:\"https://sapbstg001.blob.core.windows.net/games/match3/index.html\",gradient:\"from-fuchsia-500 to-purple-600\",status:\"available\",category:\"puzzle\",features:[\"leaderboard\",\"xp-sync\",\"ai-remix\",\"hosted\"],meta:{avgDuration:\"90 seconds\",difficulty:\"medium\"}},{id:\"bubble-blast\",title:\"Bubble Blast\",description:\"Aim, match, and blast bubbles in this arcade puzzle.\",icon:\"\uD83E\uDEE7\",bannerPath:\"https://sapbstg001.blob.core.windows.net/games/bubble-blast/images/game-banners/banner-qwik-bubble-blast\",url:\"https://sapbstg001.blob.core.windows.net/games/bubble-blast/index.html\",gradient:\"from-sky-500 to-indigo-600\",status:\"available\",category:\"puzzle\",features:[\"leaderboard\",\"xp-sync\",\"hosted\",\"iframe-ready\"],meta:{avgDuration:\"2-3 minutes\",difficulty:\"easy\"}}],zT=JT;let Df=null,vh=null,HT=0;const SB=5*60*1e3;function PT(){if(vh)return vh;if(typeof window!=\"undefined\"){const i=window.location.hostname;if(i===\"localhost\"||i===\"127.0.0.1\")return\"http://localhost:3001\";if(i.includes(\"staging\"))return\"https://staging.play.playbasis.ai\"}return\"https://play.playbasis.ai\"}function yB(i){const o=new Map;return JT.forEach(u=>o.set(u.id,u)),i.forEach(u=>o.set(u.id,u)),Array.from(o.values())}function KB(){return Ms(this,null,function*(){if(Df&&Date.now()-HT<SB)return Df;try{const i=PT(),o=yield fetch(`${i}/api/play/games`,{headers:{Accept:\"application/json\"}});if(!o.ok)throw new Error(\"Failed to fetch games\");const u=yield o.json();return Df=yB(u.games||[]),vh=u.baseUrl,HT=Date.now(),Df}catch(i){return console.warn(\"[GameRegistry] Failed to fetch games, using fallback:\",i),zT}})}function IU(i){return/^https?:\\/\\//i.test(i.url)?i.url:`${vh||PT()}${i.url}`}function xB(){return Df||zT}const FB=({url:i,title:o,onBack:u})=>{const p=Q.useRef(null),[A,U]=Q.useState(!0),{user:m,apiConfig:y}=Pr(),K=()=>{var F;if(U(!1),(F=p.current)!=null&&F.contentWindow){const R=typeof window!=\"undefined\"?window.location.origin:void 0,b={type:\"INIT_SESSION\",player:{id:(m==null?void 0:m.userId)||(y==null?void 0:y.playerId)||\"guest\",displayName:(m==null?void 0:m.displayName)||\"Guest\",metadata:(m==null?void 0:m.metadata)||{}},tenantId:(y==null?void 0:y.tenantId)||\"sandbox\",apiBaseUrl:y==null?void 0:y.baseUrl,playBaseUrl:R,settings:{theme:\"dark\"}};p.current.contentWindow.postMessage(b,\"*\")}};return h.jsxs(\"div\",{className:\"flex flex-col h-full w-full min-h-0 overflow-hidden animate-fade-in glass-card rounded-2xl\",children:[h.jsxs(\"div\",{className:\"flex items-center justify-between p-3 border-b border-white/10\",children:[h.jsxs(pe.button,{onClick:u,className:\"p-2 rounded-lg flex items-center gap-2 text-sm font-medium text-slate-300 active:bg-white/10 transition-colors\",whileTap:{scale:.95},children:[h.jsx(pB,{size:18,weight:\"bold\"}),\"Exit\"]}),h.jsx(\"h3\",{className:\"text-white font-bold truncate text-sm\",children:o}),h.jsx(\"div\",{className:\"w-16\"}),\" \"]}),h.jsxs(\"div\",{className:\"relative flex-1 min-h-0 bg-black\",children:[A&&h.jsx(\"div\",{className:\"absolute inset-0 flex items-center justify-center\",children:h.jsxs(\"div\",{className:\"flex flex-col items-center gap-3\",children:[h.jsx(pe.div,{animate:{rotate:360},transition:{duration:1,repeat:1/0,ease:\"linear\"},children:h.jsx(UB,{size:32,className:\"text-emerald-400\"})}),h.jsx(\"span\",{className:\"text-xs font-medium text-slate-400\",children:\"Loading Game...\"})]})}),h.jsx(\"iframe\",{ref:p,src:i,className:\"w-full h-full border-0 absolute inset-0 bg-transparent\",onLoad:K,title:o,allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; vibrations\"})]})]})},qU=({status:i})=>{const o={live:{className:\"bg-red-500/10 text-red-500 border-red-500/20\",text:\"LIVE\",icon:h.jsx(\"div\",{className:\"w-1.5 h-1.5 rounded-full bg-red-500 animate-pulse\"})},new:{className:\"bg-emerald-500/10 text-emerald-500 border-emerald-500/20\",text:\"NEW\",icon:h.jsx(vB,{size:10,weight:\"fill\"})},hot:{className:\"bg-orange-500/10 text-orange-500 border-orange-500/20\",text:\"HOT\",icon:h.jsx(mB,{size:10,weight:\"fill\"})},beta:{className:\"bg-amber-500/10 text-amber-500 border-amber-500/20\",text:\"BETA\",icon:h.jsx(AB,{size:10,weight:\"fill\"})}},{className:u,text:p,icon:A}=o[i];return h.jsxs(\"span\",{className:`${u} text-[10px] font-bold px-2 py-0.5 rounded-full flex items-center gap-1 border`,children:[A,\" \",p]})},TB=({game:i,onSelect:o})=>{var U,m;const u=i.status!==\"available\",p=`${i.title} banner`,A=mv.useMemo(()=>{if(!i.bannerPath||typeof window==\"undefined\")return null;try{if(/^https?:\\/\\//i.test(i.bannerPath))return i.bannerPath;const y=IU(i),K=y.match(/^(https?:\\/\\/[^/]+\\/games\\/[^/]+\\/)/i),F=K!=null&&K[1]?K[1]:y.endsWith(\"/\")?y:y.endsWith(\".html\")?y.replace(/[^/]+\\.html$/,\"\"):`${y}/`,R=`https://sapbstg001.blob.core.windows.net/games/${i.id}/`,b=F||R;return new URL(i.bannerPath,b).toString()}catch(y){return null}},[i.bannerPath,i.url]);return h.jsxs(pe.div,{className:`\n relative rounded-2xl overflow-hidden cursor-pointer\n shadow-lg border border-white/10\n ${u?\"opacity-50 grayscale cursor-not-allowed\":\"\"}\n `,whileTap:u?{}:{scale:.98},onClick:()=>!u&&o(),children:[A?h.jsxs(\"picture\",{className:\"absolute inset-0\",children:[h.jsx(\"source\",{srcSet:`${A}.webp`,type:\"image/webp\"}),h.jsx(\"img\",{src:`${A}.png`,alt:p,className:\"h-full w-full object-cover\",loading:\"lazy\"})]}):h.jsx(\"div\",{className:`absolute inset-0 bg-gradient-to-br ${i.gradient||\"from-slate-800 to-slate-900\"}`}),h.jsx(\"div\",{className:\"absolute inset-0 opacity-10\",style:{backgroundImage:\"linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px)\",backgroundSize:\"24px 24px\"}}),h.jsx(\"div\",{className:\"absolute inset-0 bg-gradient-to-t from-black/70 via-black/15 to-transparent\"}),h.jsxs(\"div\",{className:\"relative p-5 min-h-[180px] flex flex-col justify-between\",children:[h.jsxs(\"div\",{className:\"flex items-start justify-between\",children:[h.jsxs(\"div\",{className:\"flex flex-wrap gap-1.5\",children:[((U=i.features)==null?void 0:U.includes(\"xp-sync\"))&&h.jsx(qU,{status:\"live\"}),((m=i.features)==null?void 0:m.includes(\"ai-remix\"))&&h.jsx(qU,{status:\"hot\"})]}),h.jsx(\"div\",{className:\"text-5xl filter drop-shadow-lg\",children:i.icon})]}),h.jsxs(\"div\",{className:\"space-y-3\",children:[h.jsxs(\"div\",{children:[h.jsx(\"h3\",{className:\"text-white font-bold text-xl leading-tight drop-shadow-md\",children:i.title}),h.jsx(\"p\",{className:\"text-slate-300 text-sm mt-1 line-clamp-2\",children:i.description})]}),i.meta&&h.jsxs(\"div\",{className:\"flex items-center gap-3 text-xs text-slate-400\",children:[i.meta.avgDuration&&h.jsxs(\"span\",{className:\"flex items-center gap-1\",children:[h.jsx(fB,{size:12}),\" \",i.meta.avgDuration]}),i.meta.difficulty&&h.jsx(\"span\",{className:\"px-2 py-0.5 rounded bg-white/10 capitalize\",children:i.meta.difficulty})]}),h.jsxs(pe.button,{className:`\n w-full flex items-center justify-center gap-2 py-3 px-4 rounded-xl\n bg-white/20 backdrop-blur-sm border border-white/30\n text-white font-bold text-sm\n active:bg-white/30 transition-colors\n `,whileTap:{scale:.95},children:[h.jsx(gB,{size:18,weight:\"fill\"}),u?\"Coming Soon\":\"Play Now\"]})]})]})]})},CB=({games:i,selectedGame:o,onSelectGame:u})=>{const p=typeof window!=\"undefined\"?window.ReactNativeWebView:void 0,A=m=>{if(p!=null&&p.postMessage){p.postMessage(JSON.stringify({type:\"OPEN_GAME\",url:IU(m),title:m.title}));return}u(m)};if(o)return h.jsx(\"div\",{className:\"flex flex-col h-full -mx-4 -mt-4\",children:h.jsx(FB,{url:IU(o),title:o.title,onBack:()=>u(null)})});const U=i.filter(m=>m.id===\"match3\"||m.id===\"bubble-blast\");return h.jsxs(pe.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},className:\"space-y-5\",children:[h.jsxs(\"div\",{className:\"flex items-center justify-between\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-3\",children:[h.jsx(\"div\",{className:\"w-10 h-10 rounded-xl bg-gradient-to-br from-emerald-500 to-teal-600 flex items-center justify-center shadow-lg shadow-emerald-500/20\",children:h.jsx(hB,{size:20,weight:\"fill\",className:\"text-white\"})}),h.jsxs(\"div\",{children:[h.jsx(\"h2\",{className:\"text-white font-bold text-lg\",children:\"Arcade Center\"}),h.jsx(\"p\",{className:\"text-slate-400 text-xs\",children:\"Play games, earn XP\"})]})]}),h.jsx(qU,{status:\"beta\"})]}),h.jsx(\"div\",{className:\"space-y-4\",children:U.map(m=>h.jsx(TB,{game:m,onSelect:()=>A(m)},m.id))}),h.jsx(\"div\",{className:\"glass-card rounded-xl p-4\",children:h.jsx(\"p\",{className:\"text-xs text-center text-slate-400\",children:\"Games are hosted externally and loaded securely. XP syncs to your wallet! \uD83C\uDFAE\"})})]},\"arcade\")},Cd=({isOpen:i,onClose:o,title:u,subtitle:p,children:A,headerGradient:U=\"from-[#ff6b57] to-[#ff8a6a]\"})=>h.jsx(cd,{children:i&&h.jsxs(pe.div,{className:\"absolute inset-0 z-[200] flex flex-col bg-white dark:bg-slate-900 rounded-t-3xl sm:rounded-3xl overflow-hidden\",initial:{x:\"100%\"},animate:{x:0},exit:{x:\"100%\"},transition:{type:\"spring\",damping:25,stiffness:300},children:[h.jsxs(\"div\",{className:`relative p-4 bg-gradient-to-r ${U} text-white`,children:[h.jsx(\"button\",{onClick:o,className:\"absolute left-3 top-1/2 -translate-y-1/2 p-2 hover:bg-white/20 rounded-full transition-colors\",children:h.jsx(CM,{size:24})}),h.jsxs(\"div\",{className:\"text-center\",children:[h.jsx(\"h2\",{className:\"font-bold text-lg\",children:u}),p&&h.jsx(\"p\",{className:\"text-sm text-white/70\",children:p})]}),h.jsx(\"button\",{onClick:o,className:\"absolute right-3 top-1/2 -translate-y-1/2 p-2 hover:bg-white/20 rounded-full transition-colors\",children:h.jsx(Ah,{size:20})})]}),h.jsx(\"div\",{className:\"flex-1 overflow-y-auto hide-scrollbar\",children:A})]})}),bB=()=>{var K;const{activeModal:i,closeModal:o,leaderboardEntries:u,theme:p}=Pr(),A=i===\"leaderboard-full\",U=p===\"qwik\",m=u.length>0?[...u,{rank:8,userId:\"u-riley\",displayName:\"Riley Star\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Riley\",score:8600,delta:-3},{rank:9,userId:\"u-avery\",displayName:\"Avery Blaze\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Avery\",score:8400,delta:1},{rank:10,userId:\"u-quinn\",displayName:\"Quinn Force\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Quinn\",score:8200,delta:0},{rank:11,userId:\"u-charlie\",displayName:\"Charlie Wave\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Charlie\",score:8e3,delta:2},{rank:12,userId:\"u-blake\",displayName:\"Blake Storm\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Blake\",score:7800,delta:-1}]:[],y=m.find(F=>F.isCurrentUser);return h.jsx(Cd,{isOpen:A,onClose:o,title:\"Full Leaderboard\",subtitle:\"Season Rankings\",headerGradient:U?\"from-[#ff6b57] to-[#ff8a6a]\":\"from-white to-[#fff7f4]\",children:h.jsx(\"div\",{className:\"theme-qwik p-0\",children:h.jsxs(\"div\",{className:\"p-6 sm:p-8 bg-white border border-[#ff6b57]/15 rounded-3xl shadow-lg mx-2 mt-4 mb-6\",children:[h.jsxs(\"div\",{className:\"grid grid-cols-3 gap-4 mb-6\",children:[h.jsxs(\"div\",{className:\"flex flex-col items-center justify-center\",children:[h.jsx(Td,{size:28,className:\"mb-1 text-[#ff6b57]\"}),h.jsxs(\"div\",{className:\"text-2xl font-extrabold text-[#ff6b57]\",children:[\"#\",(y==null?void 0:y.rank)||4]}),h.jsx(\"div\",{className:\"text-xs font-semibold text-slate-500 mt-1\",children:\"Your Rank\"})]}),h.jsxs(\"div\",{className:\"flex flex-col items-center justify-center\",children:[h.jsx(hh,{size:28,className:\"mb-1 text-[#ff8a6a]\"}),h.jsx(\"div\",{className:\"text-2xl font-extrabold text-[#ff8a6a]\",children:((K=y==null?void 0:y.score)!=null?K:0).toLocaleString()}),h.jsx(\"div\",{className:\"text-xs font-semibold text-slate-500 mt-1\",children:\"Your Score\"})]}),h.jsxs(\"div\",{className:\"flex flex-col items-center justify-center\",children:[h.jsx(OM,{size:28,className:\"mb-1 text-[#ff6b57]\"}),h.jsx(\"div\",{className:\"text-2xl font-extrabold text-[#ff6b57]\",children:m.length}),h.jsx(\"div\",{className:\"text-xs font-semibold text-slate-500 mt-1\",children:\"Players\"})]})]}),h.jsxs(\"div\",{className:\"flex items-center justify-between bg-white rounded-xl p-4 mb-6 border border-[#ff6b57]/10\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(Qf,{size:18,className:\"text-[#ff8a6a]\"}),h.jsx(\"span\",{className:\"text-sm font-semibold text-slate-600\",children:\"Season ends in\"})]}),h.jsx(\"span\",{className:\"text-base font-bold text-[#ff6b57]\",children:\"12 days\"})]}),h.jsx(\"div\",{className:\"space-y-3\",children:m.map((F,R)=>{var b;return h.jsxs(pe.div,{className:`flex items-center gap-3 p-4 rounded-2xl border border-[#ff6b57]/10 bg-white ${F.isCurrentUser?\"ring-2 ring-[#ff6b57]\":\"\"}`,initial:{opacity:0,x:-20},animate:{opacity:1,x:0},transition:{delay:.1+R*.05},children:[h.jsx(\"div\",{className:\"w-10 h-10 rounded-full bg-white shadow flex items-center justify-center font-bold text-lg text-[#ff6b57] border border-[#ff6b57]/10\",children:QT(F.rank,16)||F.rank}),h.jsx(\"img\",{src:F.avatarUrl||`https://api.dicebear.com/7.x/avataaars/svg?seed=${F.displayName}`,alt:F.displayName,className:\"w-12 h-12 rounded-full border-2 border-[#ff6b57]/10 shadow\"}),h.jsxs(\"div\",{className:\"flex-1 min-w-0\",children:[h.jsxs(\"div\",{className:`font-bold truncate ${F.isCurrentUser?\"text-[#ff6b57]\":\"text-[#0f172a]\"}`,children:[F.displayName,F.isCurrentUser&&h.jsx(\"span\",{className:\"ml-1 text-xs bg-[#ffe7e0] text-[#ff6b57] px-1.5 py-0.5 rounded-full align-middle\",children:\"You\"})]}),h.jsxs(\"div\",{className:\"text-sm text-slate-500 font-semibold\",children:[((b=F.score)!=null?b:0).toLocaleString(),\" pts\"]})]}),h.jsx(DT,{delta:F.delta})]},F.userId)})})]})})})},RB=[{rank:1,userId:\"1\",displayName:\"Alex Champion\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Alex\",score:12450,delta:3},{rank:2,userId:\"2\",displayName:\"Jordan Elite\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Jordan\",score:11200,delta:-1},{rank:3,userId:\"3\",displayName:\"Sam Striker\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Sam\",score:10850,delta:2},{rank:4,userId:\"current\",displayName:\"You\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=You\",score:9500,delta:5,isCurrentUser:!0},{rank:5,userId:\"5\",displayName:\"Casey Pro\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Casey\",score:9100,delta:0}],ZT=[{id:\"cmjykv6d10000bvaiqfv0caif\",name:\"Starter\",slug:\"badge.qwik.starter\",description:\"Awarded when a player activates their Qwik card for the first time.\",rarity:\"common\",unlocked:!0,earnedAt:\"2025-11-15\"},{id:\"cmjykv6rr0001bvaia4wb9wen\",name:\"Profile Pro\",slug:\"badge.qwik.profile_complete\",description:\"Complete all required profile fields inside the Qwik app.\",rarity:\"common\",unlocked:!0,earnedAt:\"2025-11-20\"},{id:\"cmjykv70q0002bvaij5yyz682\",name:\"Budget Boss\",slug:\"badge.qwik.budget_boss\",description:\"Create your first budget and save the configuration.\",rarity:\"common\",unlocked:!1},{id:\"cmjykv7mu5005bvaix4as5mn5\",name:\"7-Day Streak\",slug:\"badge.qwik.streak_7\",description:\"Maintain a 7-day login streak.\",rarity:\"rare\",unlocked:!0,newlyEarned:!0,earnedAt:\"2025-12-28\"},{id:\"cmjykv81o0006bvai2gtmbbkn\",name:\"Streak Master\",slug:\"badge.qwik.streak_21\",description:\"Keep a 21-day login streak alive without missing a day.\",rarity:\"epic\",unlocked:!1},{id:\"cmjykv7fm0004bvailrvq0dx0\",name:\"Social Spark\",slug:\"badge.qwik.social_spark\",description:\"Complete 10 QwikIT sends to different contacts.\",rarity:\"rare\",unlocked:!0,earnedAt:\"2025-12-01\"},{id:\"cmjykv7830003bvai3nv3rrrn\",name:\"Credit Curious\",slug:\"badge.qwik.credit_curious\",description:\"Check your credit score across three different weeks.\",rarity:\"rare\",unlocked:!1},{id:\"cmjykv8a90007bvaibnr35z5v\",name:\"Learner\",slug:\"badge.qwik.learner_3\",description:\"Complete three learning lessons inside the app.\",rarity:\"common\",unlocked:!1},{id:\"cmjykv8hm0008bvain41u8t1r\",name:\"Campus Ambassador\",slug:\"badge.qwik.ambassador\",description:\"Complete three successful referral activations.\",rarity:\"legendary\",unlocked:!1}],YU=[{questId:\"quest.qwik.onboarding\",type:\"mission\",title:\"Qwik Getting Started\",description:\"Complete your initial setup to unlock your full Qwik experience.\",status:\"active\",target:3,current:1,progressPct:33,rewards:{xp:400,badges:[\"badge.qwik.starter\"]},steps:[{id:\"s1\",label:\"Activate your card\",description:\"Complete card activation to start earning XP.\",eventType:\"card.activated\",completed:!0},{id:\"s2\",label:\"Complete your profile\",description:\"Fill in your personal details and preferences.\",eventType:\"profile.updated\",completed:!1},{id:\"s3\",label:\"Create your first budget\",description:\"Set up a spending budget to track your habits.\",eventType:\"budget.created\",completed:!1}]},{questId:\"quest.qwik.money_habits\",type:\"habit\",title:\"Money Habits Week\",description:\"Build healthy financial habits by logging in and reviewing your transactions.\",status:\"active\",target:10,current:4,progressPct:40,rewards:{xp:500,badges:[\"badge.qwik.streak_7\"]},steps:[{id:\"s1\",label:\"Log in for 7 days\",description:\"Open the app daily to build your streak.\",eventType:\"auth.login\",targetCount:7,currentCount:4,completed:!1},{id:\"s2\",label:\"Review transactions 3 times\",description:\"Check your transaction history on the dedicated screen.\",eventType:\"transactions.viewed\",targetCount:3,currentCount:0,completed:!1}]},{questId:\"quest.qwik.social_loop\",type:\"mission\",title:\"QwikIT Social Loop\",description:\"Use QwikIT to send and request money from friends.\",status:\"completed\",target:8,current:8,progressPct:100,rewards:{xp:300,badges:[\"badge.qwik.social_spark\"]},steps:[{id:\"s1\",label:\"Send money 5 times\",description:\"Use QwikIT to send money to your contacts.\",eventType:\"qwikit.sent\",targetCount:5,currentCount:5,completed:!0},{id:\"s2\",label:\"Request money 3 times\",description:\"Create payment requests via QwikIT.\",eventType:\"qwikit.requested\",targetCount:3,currentCount:3,completed:!0}]},{questId:\"quest.qwik.credit_confidence\",type:\"habit\",title:\"Credit Confidence\",description:\"Learn about credit and check your score to build confidence.\",status:\"available\",target:4,current:0,progressPct:0,rewards:{xp:450,badges:[\"badge.qwik.credit_curious\"]},steps:[{id:\"s1\",label:\"Complete 3 learning modules\",description:\"Finish micro-learning lessons about credit.\",eventType:\"learning.lesson_completed\",targetCount:3,currentCount:0,completed:!1},{id:\"s2\",label:\"View your credit score\",description:\"Check your credit score in the app.\",eventType:\"credit.score_viewed\",targetCount:1,currentCount:0,completed:!1}]}],kB=()=>{const i=[];for(let o=0;o<84;o++){const u=new Date;u.setDate(u.getDate()-o),i.push({date:u.toISOString().split(\"T\")[0],count:Math.floor(Math.random()*8)})}return i},NB=()=>{const{activeModal:i,closeModal:o,selectedBadgeId:u,badges:p,theme:A}=Pr(),U=i===\"badge-detail\",y=(p.length>0?p:ZT).find(b=>b.id===u),K=A===\"qwik\";if(!y)return null;const F=jT[y.rarity],R=y.earnedAt?new Date(y.earnedAt).toLocaleDateString(\"en-US\",{year:\"numeric\",month:\"long\",day:\"numeric\"}):null;return h.jsx(Cd,{isOpen:U,onClose:o,title:\"Badge Details\",headerGradient:K?\"from-[#ff6b57] to-[#ff8a6a]\":y.rarity===\"legendary\"?\"from-amber-500 to-yellow-500\":y.rarity===\"epic\"?\"from-[#ff6b57] to-[#ff8a6a]\":y.rarity===\"rare\"?\"from-slate-500 to-slate-400\":\"from-slate-500 to-slate-600\",children:h.jsxs(\"div\",{className:\"p-6 flex flex-col items-center\",children:[h.jsxs(pe.div,{className:`relative w-32 h-32 rounded-2xl ${F.bg} ${F.border} border-2 ${F.glow} flex items-center justify-center mb-6`,initial:{scale:.8,opacity:0},animate:{scale:1,opacity:1},transition:{type:\"spring\",delay:.1},children:[y.unlocked?y.imageUrl?h.jsx(\"img\",{src:y.imageUrl,alt:y.name,className:\"w-20 h-20 object-contain\"}):h.jsx(El,{size:48,className:F.iconColor}):h.jsx(EU,{size:48,className:\"text-slate-400\"}),y.newlyEarned&&h.jsx(pe.div,{className:\"absolute -top-2 -right-2 w-8 h-8 bg-gradient-to-r from-amber-400 to-orange-500 rounded-full flex items-center justify-center shadow-lg\",animate:{scale:[1,1.2,1]},transition:{duration:2,repeat:1/0},children:h.jsx(hh,{size:16,className:\"text-white\"})})]}),h.jsx(\"h3\",{className:\"text-2xl font-bold text-slate-900 dark:text-white mb-2\",children:y.name}),h.jsx(\"span\",{className:`px-3 py-1 rounded-full text-sm font-medium ${F.labelBg} ${F.labelColor} mb-4`,children:F.label}),h.jsx(\"div\",{className:`flex items-center gap-2 mb-6 ${y.unlocked?\"text-green-600\":\"text-slate-400\"}`,children:y.unlocked?h.jsxs(h.Fragment,{children:[h.jsx(Kd,{size:20}),h.jsx(\"span\",{className:\"font-medium\",children:\"Unlocked\"})]}):h.jsxs(h.Fragment,{children:[h.jsx(EU,{size:20}),h.jsx(\"span\",{className:\"font-medium\",children:\"Locked\"})]})}),R&&h.jsxs(\"div\",{className:\"flex items-center gap-2 text-slate-500 mb-6\",children:[h.jsx(Qf,{size:16}),h.jsxs(\"span\",{className:\"text-sm\",children:[\"Earned on \",R]})]}),h.jsxs(\"div\",{className:\"w-full bg-slate-50 dark:bg-slate-800 rounded-xl p-4 mb-6\",children:[h.jsx(\"h4\",{className:\"font-semibold text-slate-900 dark:text-white mb-2\",children:\"How to earn\"}),h.jsx(\"p\",{className:\"text-sm text-slate-600 dark:text-slate-300\",children:y.description||`Complete challenges to unlock the ${y.name} badge.`})]}),y.unlocked&&h.jsxs(pe.button,{className:\"w-full py-3 bg-gradient-to-r from-[#ff6b57] to-[#ff8a6a] text-white font-semibold rounded-xl flex items-center justify-center gap-2 shadow-lg\",whileHover:{scale:1.02},whileTap:{scale:.98},children:[h.jsx(yT,{size:18}),\"Share Achievement\"]})]})})},Ai={id:\"nong-po-001\",displayName:\"NONG PO\",nickname:\"\u0E19\u0E49\u0E2D\u0E07\u0E42\u0E1B\u0E49\",email:\"nongpo@playbasis.demo\",avatarUrl:\"data:image/jpeg;base64,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\",metadata:{persona:\"achiever\",tier:\"elite\",country:\"TH\",region:\"Bangkok\",device:\"iOS\",vipStatus:!0,lifetimeValue:15e3,sessionsPerWeek:7,joinDate:\"2025-01-01\",bio:\"The perfect player who never misses a day! \uD83C\uDFC6\"},createdAt:\"2025-01-01T00:00:00Z\",updatedAt:new Date().toISOString()};function wB(){const i=[],o=new Date(\"2025-01-01\"),u=new Date(\"2025-12-31\");for(let p=new Date(o);p<=u;p.setDate(p.getDate()+1)){const A=p.toISOString().split(\"T\")[0],U=p.getDay(),m=p.getMonth();let y=3;(U===0||U===6)&&(y+=2),(m===0||m===11)&&(y+=1);const K=p.getDate();K===1&&(y+=2),K===15&&(y+=1);const F=Math.floor(Math.random()*3)-1,R=Math.max(1,Math.min(8,y+F));i.push({date:A,count:R})}return i.reverse()}function EB(){const i=[],o=new Date(\"2025-01-01\"),u=new Date(\"2025-12-31\");let p=0,A=1;const U=[{desc:\"Daily login bonus\",amount:50,category:\"login\"},{desc:\"Task completed\",amount:100,category:\"task\"},{desc:\"Quiz answered correctly\",amount:75,category:\"quiz\"},{desc:\"Achievement unlocked\",amount:200,category:\"achievement\"},{desc:\"Referral reward\",amount:500,category:\"referral\"},{desc:\"Survey completed\",amount:150,category:\"survey\"},{desc:\"Video watched\",amount:25,category:\"engagement\"},{desc:\"Challenge completed\",amount:300,category:\"challenge\"},{desc:\"Social share bonus\",amount:50,category:\"social\"}],m=[{desc:\"Purchased: Premium Badge\",amount:200,category:\"badge\"},{desc:\"Purchased: Custom Theme\",amount:150,category:\"cosmetic\"},{desc:\"Purchased: Avatar Item\",amount:100,category:\"cosmetic\"},{desc:\"Redeemed: Gift Card\",amount:5e3,category:\"redemption\"},{desc:\"Entry: Tournament\",amount:500,category:\"tournament\"}];let y=0,K=1;for(let F=new Date(o);F<=u;F.setDate(F.getDate()+1)){const R=F.getTime();y++,i.push({id:`t-${A++}`,type:\"earn\",amount:50,description:\"Daily login bonus\",timestamp:R,category:\"login\"}),p+=50;const b=1+Math.floor(Math.random()*3);for(let E=0;E<b;E++){const O=U[Math.floor(Math.random()*U.length)],B=Math.floor(Math.random()*50)-25,L=Math.max(25,O.amount+B);i.push({id:`t-${A++}`,type:\"earn\",amount:L,description:O.desc,timestamp:R+(E+1)*36e5,category:O.category}),p+=L}if(y===7||y===30||y===100||y===200||y===365){const E=y>=365?1e4:y>=200?7500:y>=100?5e3:y>=30?1e3:200;i.push({id:`t-${A++}`,type:\"bonus\",amount:E,description:`\uD83D\uDD25 Streak bonus (${y} days)!`,timestamp:R+432e5,category:\"streak\"}),p+=E}const N=Math.floor(p/5e3)+1;if(N>K&&(i.push({id:`t-${A++}`,type:\"bonus\",amount:500*(N-K),description:`\uD83C\uDF89 Level up! Now Level ${N}`,timestamp:R+5e7,category:\"levelup\"}),K=N),Math.random()<.15&&p>1e3){const E=m[Math.floor(Math.random()*m.length)],O=Math.min(E.amount,Math.floor(p*.1));O>50&&i.push({id:`t-${A++}`,type:\"spend\",amount:O,description:E.desc,timestamp:R+6e7,category:E.category})}F.getDate()===1&&(i.push({id:`t-${A++}`,type:\"bonus\",amount:1e3,description:\"\uD83D\uDCC5 Monthly active player bonus\",timestamp:R+36e5,category:\"monthly\"}),p+=1e3)}return i.sort((F,R)=>R.timestamp-F.timestamp)}function MB(){return[{id:\"b-legend-1\",name:\"Year One Legend\",slug:\"year-one-legend\",description:\"Completed 365 consecutive days of activity\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=YearOneLegend&backgroundColor=ffd700\",rarity:\"legendary\",earnedAt:\"2025-12-31T23:59:00Z\",category:\"milestone\"},{id:\"b-legend-2\",name:\"Elite Champion\",slug:\"elite-champion\",description:\"Reached Elite tier status\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=EliteChampion&backgroundColor=ffd700\",rarity:\"legendary\",earnedAt:\"2025-10-15T14:30:00Z\",category:\"tier\"},{id:\"b-legend-3\",name:\"Perfect Month\",slug:\"perfect-month\",description:\"Achieved maximum daily activity for an entire month\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=PerfectMonth&backgroundColor=ffd700\",rarity:\"legendary\",earnedAt:\"2025-03-31T18:00:00Z\",category:\"streak\"},{id:\"b-epic-1\",name:\"Century Streak\",slug:\"century-streak\",description:\"Maintained a 100-day activity streak\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=CenturyStreak&backgroundColor=a855f7\",rarity:\"epic\",earnedAt:\"2025-04-10T12:00:00Z\",category:\"streak\"},{id:\"b-epic-2\",name:\"Leaderboard King\",slug:\"leaderboard-king\",description:\"Reached #1 on the weekly leaderboard\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=LeaderboardKing&backgroundColor=a855f7\",rarity:\"epic\",earnedAt:\"2025-06-15T09:00:00Z\",category:\"competition\"},{id:\"b-epic-3\",name:\"Quest Crusher\",slug:\"quest-crusher\",description:\"Completed 10 quests ahead of schedule\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=QuestCrusher&backgroundColor=a855f7\",rarity:\"epic\",earnedAt:\"2025-08-20T16:45:00Z\",category:\"achievement\"},{id:\"b-epic-4\",name:\"Platinum Collector\",slug:\"platinum-collector\",description:\"Earned 50,000 lifetime points\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=PlatinumCollector&backgroundColor=a855f7\",rarity:\"epic\",earnedAt:\"2025-09-05T11:30:00Z\",category:\"milestone\"},{id:\"b-rare-1\",name:\"Week Warrior\",slug:\"week-warrior\",description:\"First 7-day streak achieved\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=WeekWarrior&backgroundColor=3b82f6\",rarity:\"rare\",earnedAt:\"2025-01-07T20:00:00Z\",category:\"streak\"},{id:\"b-rare-2\",name:\"Month Master\",slug:\"month-master\",description:\"Completed 30 consecutive days\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=MonthMaster&backgroundColor=3b82f6\",rarity:\"rare\",earnedAt:\"2025-01-30T18:00:00Z\",category:\"streak\"},{id:\"b-rare-3\",name:\"Social Butterfly\",slug:\"social-butterfly\",description:\"Referred 5 friends to the platform\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=SocialButterfly&backgroundColor=3b82f6\",rarity:\"rare\",earnedAt:\"2025-02-14T10:00:00Z\",category:\"social\"},{id:\"b-rare-4\",name:\"Quiz Champion\",slug:\"quiz-champion\",description:\"Answered 100 quiz questions correctly\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=QuizChampion&backgroundColor=3b82f6\",rarity:\"rare\",earnedAt:\"2025-03-10T14:20:00Z\",category:\"learning\"},{id:\"b-rare-5\",name:\"Top 10 Regular\",slug:\"top-ten-regular\",description:\"Stayed in Top 10 for 4 consecutive weeks\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=TopTenRegular&backgroundColor=3b82f6\",rarity:\"rare\",earnedAt:\"2025-05-01T08:00:00Z\",category:\"competition\"},{id:\"b-common-1\",name:\"First Steps\",slug:\"first-steps\",description:\"Completed your first activity\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=FirstSteps&backgroundColor=22c55e\",rarity:\"common\",earnedAt:\"2025-01-01T00:05:00Z\",category:\"onboarding\"},{id:\"b-common-2\",name:\"Early Bird\",slug:\"early-bird\",description:\"Logged in before 7 AM\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=EarlyBird&backgroundColor=22c55e\",rarity:\"common\",earnedAt:\"2025-01-02T06:30:00Z\",category:\"engagement\"},{id:\"b-common-3\",name:\"Night Owl\",slug:\"night-owl\",description:\"Logged in after midnight\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=NightOwl&backgroundColor=22c55e\",rarity:\"common\",earnedAt:\"2025-01-03T00:15:00Z\",category:\"engagement\"},{id:\"b-common-4\",name:\"First Quest\",slug:\"first-quest\",description:\"Set your first quest\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=QuestCrusher&backgroundColor=22c55e\",rarity:\"common\",earnedAt:\"2025-01-01T10:00:00Z\",category:\"onboarding\"},{id:\"b-common-5\",name:\"Profile Complete\",slug:\"profile-complete\",description:\"Filled out your complete profile\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=ProfileComplete&backgroundColor=22c55e\",rarity:\"common\",earnedAt:\"2025-01-01T09:00:00Z\",category:\"onboarding\"},{id:\"b-common-6\",name:\"First Purchase\",slug:\"first-purchase\",description:\"Made your first points redemption\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=FirstPurchase&backgroundColor=22c55e\",rarity:\"common\",earnedAt:\"2025-01-15T15:30:00Z\",category:\"wallet\"}]}function BB(){return[{questId:\"quest-annual-points\",type:\"financial\",name:\"Annual Points Champion\",description:\"Earn 100,000 points in 2025\",target:1e5,current:98500,progressPct:98,startDate:\"2025-01-01\",endDate:\"2025-12-31\",status:\"active\",milestones:[{name:\"10K Points\",target:1e4,reached:!0,reachedAt:\"2025-02-01\"},{name:\"25K Points\",target:25e3,reached:!0,reachedAt:\"2025-04-15\"},{name:\"50K Points\",target:5e4,reached:!0,reachedAt:\"2025-07-01\"},{name:\"75K Points\",target:75e3,reached:!0,reachedAt:\"2025-09-20\"},{name:\"100K Points\",target:1e5,reached:!1}],steps:[{id:\"s1\",label:\"Make your first purchase\",description:\"Use your card for any transaction to start earning points.\",eventType:\"card.purchase\",completed:!0},{id:\"s2\",label:\"Earn 50,000 points\",description:\"Continue using your card and completing activities.\",eventType:\"points.earned\",targetCount:5e4,currentCount:5e4,completed:!0},{id:\"s3\",label:\"Earn 100,000 points\",description:\"Reach the annual champion milestone.\",eventType:\"points.earned\",targetCount:1e5,currentCount:98500,completed:!1}]},{questId:\"quest-365-streak\",type:\"habit\",name:\"Year of Dedication\",description:\"Maintain a 365-day activity streak\",target:365,current:365,progressPct:100,startDate:\"2025-01-01\",endDate:\"2025-12-31\",status:\"completed\",milestones:[{name:\"7 Days\",target:7,reached:!0,reachedAt:\"2025-01-07\"},{name:\"30 Days\",target:30,reached:!0,reachedAt:\"2025-01-30\"},{name:\"100 Days\",target:100,reached:!0,reachedAt:\"2025-04-10\"},{name:\"200 Days\",target:200,reached:!0,reachedAt:\"2025-07-19\"},{name:\"365 Days\",target:365,reached:!0,reachedAt:\"2025-12-31\"}],steps:[{id:\"s1\",label:\"Log in daily for 7 days\",description:\"Open the app every day to build your streak.\",eventType:\"auth.login\",targetCount:7,currentCount:7,completed:!0},{id:\"s2\",label:\"Maintain a 30-day streak\",description:\"Keep your daily login habit going for a full month.\",eventType:\"auth.login\",targetCount:30,currentCount:30,completed:!0},{id:\"s3\",label:\"Complete 365 consecutive days\",description:\"A full year of dedication!\",eventType:\"auth.login\",targetCount:365,currentCount:365,completed:!0}]},{questId:\"quest-badges\",type:\"performance\",name:\"Badge Collector\",description:\"Earn 20 unique badges\",target:20,current:18,progressPct:90,startDate:\"2025-01-01\",endDate:\"2025-12-31\",status:\"active\",milestones:[{name:\"5 Badges\",target:5,reached:!0,reachedAt:\"2025-01-15\"},{name:\"10 Badges\",target:10,reached:!0,reachedAt:\"2025-03-10\"},{name:\"15 Badges\",target:15,reached:!0,reachedAt:\"2025-06-20\"},{name:\"20 Badges\",target:20,reached:!1}],steps:[{id:\"s1\",label:\"Earn 5 badges\",description:\"Complete various activities to unlock your first badges.\",eventType:\"badge.earned\",targetCount:5,currentCount:5,completed:!0},{id:\"s2\",label:\"Earn 10 badges\",description:\"Keep exploring features to earn more badges.\",eventType:\"badge.earned\",targetCount:10,currentCount:10,completed:!0},{id:\"s3\",label:\"Collect 20 unique badges\",description:\"Become a true badge collector!\",eventType:\"badge.earned\",targetCount:20,currentCount:18,completed:!1}]},{questId:\"quest-quizzes\",type:\"learning\",name:\"Knowledge Seeker\",description:\"Complete 50 educational quizzes\",target:50,current:50,progressPct:100,startDate:\"2025-01-01\",endDate:\"2025-06-30\",status:\"completed\",milestones:[{name:\"10 Quizzes\",target:10,reached:!0,reachedAt:\"2025-02-01\"},{name:\"25 Quizzes\",target:25,reached:!0,reachedAt:\"2025-03-15\"},{name:\"50 Quizzes\",target:50,reached:!0,reachedAt:\"2025-05-20\"}],steps:[{id:\"s1\",label:\"Complete 10 quizzes\",description:\"Start learning with our educational modules.\",eventType:\"learning.lesson_completed\",targetCount:10,currentCount:10,completed:!0},{id:\"s2\",label:\"Complete 25 quizzes\",description:\"Expand your financial knowledge.\",eventType:\"learning.lesson_completed\",targetCount:25,currentCount:25,completed:!0},{id:\"s3\",label:\"Complete 50 quizzes\",description:\"Become a financial knowledge master!\",eventType:\"learning.lesson_completed\",targetCount:50,currentCount:50,completed:!0}]},{questId:\"quest-referrals\",type:\"social\",name:\"Community Builder\",description:\"Refer 10 friends to join\",target:10,current:8,progressPct:80,startDate:\"2025-01-01\",endDate:\"2025-12-31\",status:\"active\",milestones:[{name:\"1 Friend\",target:1,reached:!0,reachedAt:\"2025-01-20\"},{name:\"5 Friends\",target:5,reached:!0,reachedAt:\"2025-04-01\"},{name:\"10 Friends\",target:10,reached:!1}],steps:[{id:\"s1\",label:\"Share your referral code\",description:\"Send your unique code to friends and family.\",eventType:\"referral.invited\",completed:!0},{id:\"s2\",label:\"Get 5 friends to sign up\",description:\"Have 5 friends activate their accounts.\",eventType:\"referral.completed\",targetCount:5,currentCount:5,completed:!0},{id:\"s3\",label:\"Reach 10 successful referrals\",description:\"Build your community to 10 members.\",eventType:\"referral.completed\",targetCount:10,currentCount:8,completed:!1}]}]}function QB(){return[{rank:1,userId:\"nong-po-001\",displayName:\"NONG PO \uD83C\uDFC6\",avatarUrl:Ai.avatarUrl,score:98500,delta:0,isCurrentUser:!0},{rank:2,userId:\"u-somchai\",displayName:\"Somchai K.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Somchai\",score:87200,delta:1},{rank:3,userId:\"u-arisara\",displayName:\"Arisara W.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Arisara\",score:82100,delta:-1},{rank:4,userId:\"u-thanawat\",displayName:\"Thanawat P.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Thanawat\",score:76800,delta:2},{rank:5,userId:\"u-ploy\",displayName:\"Ploy N.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Ploy\",score:71500,delta:0},{rank:6,userId:\"u-krit\",displayName:\"Krit S.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Krit\",score:68900,delta:-2},{rank:7,userId:\"u-mint\",displayName:\"Mint C.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Mint\",score:65200,delta:3},{rank:8,userId:\"u-beam\",displayName:\"Beam R.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Beam\",score:61800,delta:1},{rank:9,userId:\"u-fah\",displayName:\"Fah T.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Fah\",score:58400,delta:-1},{rank:10,userId:\"u-earth\",displayName:\"Earth M.\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Earth\",score:55100,delta:0}]}function DB(){const i=Date.now();return[{id:\"n-1\",type:\"badge\",message:'\uD83C\uDFC6 LEGENDARY! You earned \"Year One Legend\" badge!',timestamp:i-36e5,read:!1},{id:\"n-2\",type:\"streak\",message:\"\uD83D\uDD25 AMAZING! 365-day streak achieved! You're incredible!\",timestamp:i-72e5,read:!1},{id:\"n-3\",type:\"quest\",message:'\uD83C\uDFAF Goal \"Year of Dedication\" completed! +5000 bonus points',timestamp:i-864e5,read:!0},{id:\"n-4\",type:\"leaderboard\",message:\"\uD83D\uDCC8 You're #1 on the leaderboard! Keep it up!\",timestamp:i-1728e5,read:!0},{id:\"n-5\",type:\"level_up\",message:\"\uD83C\uDF89 Level UP! You reached Level 20!\",timestamp:i-2592e5,read:!0},{id:\"n-6\",type:\"social\",message:\"\uD83D\uDC4B Your friend Somchai just joined! +500 referral points\",timestamp:i-3456e5,read:!0},{id:\"n-7\",type:\"system\",message:\"\u2728 New challenges available! Check them out\",timestamp:i-432e6,read:!0}]}function jB(){const i=EB(),o=wB(),u=MB(),p=BB(),A=QB(),U=DB(),m=i.filter(b=>b.type!==\"spend\").reduce((b,N)=>b+N.amount,0),y=i.filter(b=>b.type===\"spend\").reduce((b,N)=>b+N.amount,0),K=m-y,F=i.filter(b=>b.type!==\"spend\"&&b.timestamp>Date.now()-7*24*60*60*1e3).reduce((b,N)=>b+N.amount,0),R=o.reduce((b,N)=>b+N.count,0)/o.length;return{player:Ai,user:{userId:Ai.id,level:20,exp:m,compositeScore:98,positiveChangePct:15},wallet:{currency:\"PTS\",balance:K,earnedDelta:F,lifetimeEarned:m,lifetimeSpent:y},activities:o,transactions:i,badges:u,quests:p,leaderboard:A,notifications:U,stats:{totalDaysActive:365,currentStreak:365,longestStreak:365,totalBadges:u.length,totalQuestsCompleted:p.filter(b=>b.status===\"completed\").length,totalPointsEarned:m,totalPointsSpent:y,averageDailyActivity:Math.round(R*10)/10,rank:1,tier:\"Elite\"}}}let GU=null;function WU(){return GU||(GU=jB()),GU}function Dl(i,o,u){return Ms(this,null,function*(){const p=ve({\"Content-Type\":\"application/json\",\"X-Tenant-ID\":o.tenantId||\"sandbox\"},(u==null?void 0:u.headers)||{});o.subscriptionKey&&(p[\"Ocp-Apim-Subscription-Key\"]=o.subscriptionKey);const A=`${o.baseUrl}${i.startsWith(\"/\")?\"\":\"/\"}${i}`,U=yield fetch(A,it(ve({method:\"GET\"},u),{headers:p}));if(!U.ok)throw new Error(`API request failed: ${U.status} ${U.statusText}`);return U.json()})}function LB(i){return Ms(this,null,function*(){var B,L,q;const[o,u,p,A,U,m,y]=yield Promise.all([Dl(`/players/${i.playerId}`,i),Dl(`/players/${i.playerId}/points`,i),Dl(`/players/${i.playerId}/badges`,i).catch(()=>({badges:[]})),Dl(\"/badges?pageSize=50\",i).catch(()=>({items:[]})),Dl(`/players/${i.playerId}/quests`,i).catch(()=>[]),Dl(\"/quests?pageSize=50\",i).catch(()=>({items:[]})),Dl(`/events?playerId=${i.playerId}&pageSize=20`,i).catch(()=>({items:[]}))]),K=o.player,F=((B=u.balances)==null?void 0:B.find(W=>W.currency===\"xp\"))||((L=u.balances)==null?void 0:L[0]),R=Array.isArray(U)?U:[],b=m.items||[];process.env.NODE_ENV===\"development\"&&(console.log(\"[Quest Debug] Player Progress Records:\",R.length,R),console.log(\"[Quest Debug] Catalog Quests:\",b.length)),new Set((p.badges||[]).map(W=>W.id));const N=(A.items||[]).map(W=>{const Y=(p.badges||[]).find(P=>P.id===W.id);return{id:W.id,name:W.name,slug:W.slug,description:W.description,imageUrl:Y==null?void 0:Y.imageUrl,awardedAt:Y?Y.awardedAt:\"\"}}),E=b.map(W=>{var gt;const Y=R.find(Ce=>Ce.questId===W.id);let P=\"available\";Y&&(P=Y.state===\"COMPLETED\"?\"completed\":\"active\");let te={};if(Y!=null&&Y.progress)try{te=typeof Y.progress==\"string\"?JSON.parse(Y.progress):Y.progress}catch(Ce){console.warn(\"[Quest] Failed to parse progress JSON:\",Ce)}const me=((gt=W.metadata)==null?void 0:gt.steps)||[];let ye=0,be=0;const Pe=me.map(Ce=>{var de;const dt=(((de=te==null?void 0:te.steps)==null?void 0:de[Ce.id])||{}).count||0,ke=Ce.targetCount||Ce.distinctDays||1;ye+=ke,be+=Math.min(dt,ke);const Ke={\"daily-login\":\"Log in daily\",\"tx-review\":\"Review transactions\",\"card-activation\":\"Activate your card\",\"profile-update\":\"Complete your profile\",\"budget-create\":\"Create a budget\",\"qwikit-send\":\"Send money via QwikIT\",\"qwikit-request\":\"Request money via QwikIT\",\"lesson-complete\":\"Complete a learning module\",\"credit-check\":\"Check your credit score\"}[Ce.id]||Ce.id.split(\"-\").map(ee=>ee.charAt(0).toUpperCase()+ee.slice(1)).join(\" \");return{id:Ce.id,label:Ce.label||Ke,description:Ce.description||`Complete ${ke} ${Ce.distinctDays?\"days\":\"times\"}`,eventType:Ce.event||Ce.eventType,targetCount:ke,currentCount:dt,completed:dt>=ke}});ye===0&&(ye=100,be=0);const ut=Math.floor(be/ye*100);return process.env.NODE_ENV===\"development\"&&console.log(`[Quest] ${W.name}: ${be}/${ye} (${ut}%)`,{hasProgress:!!Y,parsedProgress:te,mappedSteps:Pe}),{questId:W.id,questName:W.name,description:W.description,status:P,progress:be,target:ye,steps:Pe.length>0?Pe:void 0}});let O=[];if(((q=y==null?void 0:y.items)==null?void 0:q.length)>0){const W={\"auth.login\":5,\"card.activated\":150,\"budget.created\":120,\"qwikit.sent\":20,\"qwikit.received\":20,\"qwikit.requested\":0,\"credit.score_viewed\":40,\"learning.lesson_completed\":75,\"learning.lesson_started\":0,\"profile.updated\":50,\"referral.success\":250,\"transactions.viewed\":0,\"offers.map_viewed\":0};O=y.items.map(Y=>({id:Y.id,currency:\"xp\",delta:W[Y.type]||0,balanceAfter:0,reason:Y.type.split(\".\").map(P=>P.charAt(0).toUpperCase()+P.slice(1)).join(\" \"),occurredAt:Y.occurredAt}))}return{player:{id:K.id,displayName:K.displayName,email:K.email,createdAt:new Date().toISOString(),updatedAt:new Date().toISOString()},balances:[{currency:\"points\",balance:(F==null?void 0:F.balance)||0,updatedAt:new Date().toISOString()}],ledger:O,badges:N,quests:E}})}function OB(i){return Ms(this,null,function*(){try{const o=yield Dl(\"/leaderboards/xp:global\",it(ve({},i),{playerId:\"\"}));return{players:{total:0,recent:[]},points:{leaderboard:o.entries||[]}}}catch(o){return{players:{total:0,recent:[]},points:{leaderboard:[]}}}})}function VB(i,o){return Ms(this,null,function*(){yield Dl(`/quests/${i}/complete`,o,{method:\"POST\",body:JSON.stringify({playerId:o.playerId})}).catch(u=>{console.error(\"Failed to complete quest\",u)})})}function IB(i,o){var O;const u=i.player.metadata||{},p={bronze:1,silver:2,gold:3,platinum:4,elite:5},A=u.tier||\"bronze\",U=p[A.toLowerCase()]||1,m=i.balances.find(B=>B.currency===\"points\"||B.currency===\"xp\");i.balances.find(B=>B.currency===\"credits\");const y=i.ledger.filter(B=>(B.currency===\"points\"||B.currency===\"xp\")&&B.delta>0).reduce((B,L)=>B+L.delta,0),K=Date.now()-7*24*60*60*1e3,F=i.ledger.filter(B=>(B.currency===\"points\"||B.currency===\"xp\")&&B.delta>0&&new Date(B.occurredAt).getTime()>K).reduce((B,L)=>B+L.delta,0),R=i.badges.map(B=>({id:B.id,name:B.name,slug:B.slug,description:B.description,imageUrl:B.imageUrl||`https://api.dicebear.com/7.x/shapes/svg?seed=${B.slug}`,rarity:\"common\",unlocked:!!B.awardedAt,earnedAt:B.awardedAt||void 0,newlyEarned:B.awardedAt?new Date(B.awardedAt).getTime()>Date.now()-7*24*60*60*1e3:!1})),b=(i.quests||[]).map(B=>{var q;const L=YU.find(W=>{if(W.questId===B.questId)return!0;const Y=W.title.toLowerCase().replace(/\\s+/g,\"\"),P=B.questName.toLowerCase().replace(/\\s+/g,\"\");return Y.includes(P)||P.includes(Y)});return process.env.NODE_ENV===\"development\"&&console.log(`[Quest Enrichment] Matching \"${B.questName}\" (${B.questId}): ${L?\"SUCCESS (\"+L.title+\")\":\"FAILED\"}`),{questId:B.questId,type:(L==null?void 0:L.type)||\"habit\",title:B.questName,description:(L==null?void 0:L.description)||B.description,target:B.target,current:B.progress,progressPct:Math.min(100,Math.floor(B.progress/Math.max(B.target,1)*100)),startDate:new Date().toISOString().split(\"T\")[0],endDate:new Date(Date.now()+30*24*60*60*1e3).toISOString().split(\"T\")[0],status:B.progress>=B.target?\"completed\":\"active\",steps:((q=B.steps)==null?void 0:q.map(W=>({id:W.id,label:W.label,description:W.description,eventType:W.eventType,targetCount:W.targetCount||1,currentCount:W.currentCount||0,completed:W.completed||!1})))||(L==null?void 0:L.steps),rewards:L==null?void 0:L.rewards}}),N=new Map;i.ledger.forEach(B=>{const L=B.occurredAt.split(\"T\")[0];N.set(L,(N.get(L)||0)+1)});const E=[];for(let B=0;B<84;B++){const L=new Date;L.setDate(L.getDate()-B);const q=L.toISOString().split(\"T\")[0];E.push({date:q,count:N.get(q)||Math.floor(Math.random()*3)})}return{user:{userId:i.player.id,level:U,exp:y,compositeScore:Math.min(100,Math.floor(((m==null?void 0:m.balance)||0)/100)),positiveChangePct:F>0?Math.floor(F/Math.max(y,1)*100):0,displayName:i.player.displayName},wallet:{currency:\"XP\",balance:(m==null?void 0:m.balance)||0,earnedDelta:Math.min(F,(m==null?void 0:m.balance)||0)},badges:R,leaderboardEntries:(o||[]).map((B,L)=>({rank:B.rank||L+1,userId:B.playerId,displayName:B.displayName,avatarUrl:`https://api.dicebear.com/7.x/avataaars/svg?seed=${B.playerId}`,score:B.balance,delta:Math.floor(Math.random()*10)-3,isCurrentUser:B.playerId===i.player.id})),transactions:i.ledger.slice(0,50).map(B=>({id:B.id,type:B.delta>0?\"earn\":\"spend\",amount:Math.abs(B.delta),description:B.reason||(B.delta>0?\"Points earned\":\"Points spent\"),timestamp:new Date(B.occurredAt).getTime()})),activities:E,quests:b,notifications:[{id:\"n1\",type:\"badge\",message:`\uD83C\uDF96\uFE0F Welcome, ${i.player.displayName}!`,timestamp:Date.now(),read:!1},{id:\"n2\",type:\"leaderboard\",message:`\uD83D\uDCCA You have ${((O=m==null?void 0:m.balance)==null?void 0:O.toLocaleString())||0} points`,timestamp:Date.now()-36e5,read:!1}]}}function XT(){const i=WU();return{user:i.user,wallet:{currency:i.wallet.currency,balance:i.wallet.balance,earnedDelta:i.wallet.earnedDelta},badges:i.badges.map(o=>({id:o.id,name:o.name,imageUrl:o.imageUrl,rarity:o.rarity,unlocked:!0,earnedAt:o.earnedAt,newlyEarned:new Date(o.earnedAt).getTime()>Date.now()-7*24*60*60*1e3})),activities:i.activities,quests:i.quests.map(o=>{var u;return{questId:o.questId,title:o.name,description:o.description,type:o.type,target:o.target,current:o.current,progressPct:o.progressPct,startDate:o.startDate,endDate:o.endDate,status:o.status,steps:(u=o.steps)==null?void 0:u.map(p=>({id:p.id,label:p.label,description:p.description,eventType:p.eventType,targetCount:p.targetCount,currentCount:p.currentCount,completed:p.completed})),rewards:{xp:500,badges:[]}}}),leaderboardEntries:i.leaderboard,transactions:i.transactions.slice(0,50).map(o=>({id:o.id,type:o.type,amount:o.amount,description:o.description,timestamp:o.timestamp})),notifications:i.notifications.map(o=>({id:o.id,type:o.type,message:o.message,timestamp:o.timestamp,read:o.read})),_nongPo:i}}const Uh={baseUrl:\"https://api.staging.playbasis.ai/v1\",tenantId:\"sandbox\",defaultPlayerId:Ai.id,defaultPlayerName:Ai.displayName,samplePlayerIds:[Ai.id,\"synthetic-player-0001\",\"synthetic-player-0042\",\"synthetic-player-0100\",\"synthetic-player-0398\",\"synthetic-player-0500\",\"synthetic-player-0723\",\"synthetic-player-0724\",\"demo-user-001\"]},_T={active:{color:\"text-blue-600 dark:text-blue-400\",bg:\"bg-blue-100 dark:bg-blue-900/30\",icon:Os,label:\"Active\"},joined:{color:\"text-purple-600 dark:text-purple-400\",bg:\"bg-purple-100 dark:bg-purple-900/30\",icon:kU,label:\"Joined\"},available:{color:\"text-slate-600 dark:text-slate-400\",bg:\"bg-slate-100 dark:bg-slate-800\",icon:hh,label:\"Available\"},completed:{color:\"text-white\",bg:\"bg-teal-500\",icon:Kd,label:\"\u2713 Completed\"}},qB={financial:{icon:\"\uD83D\uDCB0\",label:\"Financial Quest\"},habit:{icon:\"\uD83C\uDFAF\",label:\"Habit Quest\"},performance:{icon:\"\u26A1\",label:\"Performance Quest\"},mission:{icon:\"\uD83D\uDE80\",label:\"Mission\"}},YB=()=>{const{activeModal:i,closeModal:o,selectedQuestId:u,quests:p,theme:A,apiConfig:U}=Pr(),m=i===\"quest-detail\",K=(p.length>0?p:YU).find(W=>W.questId===u),F=A===\"qwik\",[R,b]=mv.useState(!1),N=()=>Ms(this,null,function*(){if(!(!K||!U)){b(!0);try{yield VB(K.questId,U),setTimeout(()=>{b(!1),o()},1e3)}catch(W){console.error(\"Failed to update progress\",W),b(!1)}}});if(!K)return null;const E=_T[K.status]||_T.active,O=qB[K.type]||{icon:\"\uD83C\uDFAF\",label:\"Quest\"},B=E.icon;K.startDate&&new Date(K.startDate).toLocaleDateString(\"en-US\",{month:\"short\",day:\"numeric\"}),K.endDate&&new Date(K.endDate).toLocaleDateString(\"en-US\",{month:\"short\",day:\"numeric\",year:\"numeric\"});let L=0;if(K.endDate){const W=new Date,Y=new Date(K.endDate);L=Math.max(0,Math.ceil((Y.getTime()-W.getTime())/(1e3*60*60*24)))}const q=[{percent:25,label:\"Getting Started\",reached:K.progressPct>=25},{percent:50,label:\"Halfway There\",reached:K.progressPct>=50},{percent:75,label:\"Almost Done\",reached:K.progressPct>=75},{percent:100,label:\"Quest Complete!\",reached:K.progressPct>=100}];return h.jsx(Cd,{isOpen:m,onClose:o,title:\"Quest Details\",subtitle:O.label,headerGradient:F?\"from-[#ff6b57] to-[#ff8a6a]\":K.status===\"completed\"?\"from-green-500 to-emerald-600\":\"from-[#ff6b57] to-[#ff8a6a]\",children:h.jsxs(\"div\",{className:\"p-4 space-y-5\",children:[h.jsxs(pe.div,{className:\"flex flex-col items-center py-6\",initial:{scale:.9,opacity:0},animate:{scale:1,opacity:1},children:[h.jsx(\"div\",{className:\"text-4xl mb-4\",children:O.icon}),h.jsx(Bl,{value:K.progressPct,size:140,strokeWidth:10,color:K.status===\"completed\"?\"green\":\"coral\"}),h.jsxs(\"div\",{className:\"mt-4 text-center\",children:[h.jsx(\"h3\",{className:\"text-lg font-bold text-slate-900 dark:text-white mb-1\",children:K.title}),h.jsx(\"p\",{className:\"text-sm text-slate-500 max-w-[80%] mx-auto mb-3\",children:K.description||\"Complete this quest to earn rewards.\"}),h.jsx(\"p\",{className:\"text-3xl font-bold text-slate-900 dark:text-white\",children:K.current.toLocaleString()}),h.jsxs(\"p\",{className:\"text-sm text-slate-500\",children:[\"of \",K.target.toLocaleString(),\" target\"]})]})]}),h.jsx(\"div\",{className:\"flex justify-center\",children:h.jsxs(pe.div,{className:`flex items-center gap-2 px-4 py-2 rounded-full ${E.bg}`,initial:{y:10,opacity:0},animate:{y:0,opacity:1},transition:{delay:.1},children:[h.jsx(B,{size:18,className:E.color}),h.jsx(\"span\",{className:`font-semibold ${E.color}`,children:E.label})]})}),K.rewards&&h.jsxs(pe.div,{className:\"bg-amber-50 dark:bg-amber-900/10 border border-amber-100 dark:border-amber-900/30 rounded-xl p-4\",initial:{y:10,opacity:0},animate:{y:0,opacity:1},transition:{delay:.15},children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-3\",children:[h.jsx(co,{size:16,className:\"text-amber-500\"}),h.jsx(\"span\",{className:\"text-sm font-bold text-amber-700 dark:text-amber-400\",children:\"Rewards\"})]}),h.jsxs(\"div\",{className:\"flex items-center gap-4\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(\"div\",{className:\"w-8 h-8 rounded-lg bg-amber-100 dark:bg-amber-900/40 flex items-center justify-center\",children:h.jsx(Ml,{size:16,className:\"text-amber-600 dark:text-amber-400\"})}),h.jsxs(\"div\",{children:[h.jsx(\"p\",{className:\"text-lg font-bold text-slate-900 dark:text-white\",children:K.rewards.xp}),h.jsx(\"p\",{className:\"text-xs text-slate-500\",children:\"XP\"})]})]}),K.rewards.badges&&K.rewards.badges.map(W=>{var Y;return h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(\"div\",{className:\"w-8 h-8 rounded-lg bg-purple-100 dark:bg-purple-900/40 flex items-center justify-center\",children:h.jsx(co,{size:16,className:\"text-purple-600 dark:text-purple-400\"})}),h.jsxs(\"div\",{children:[h.jsx(\"p\",{className:\"text-xs font-bold text-slate-900 dark:text-white capitalize\",children:(Y=W.split(\".\").pop())==null?void 0:Y.replace(\"_\",\" \")}),h.jsx(\"p\",{className:\"text-xs text-slate-500\",children:\"Badge\"})]})]},W)})]})]}),K.endDate&&h.jsxs(\"div\",{className:\"grid grid-cols-2 gap-3\",children:[h.jsxs(pe.div,{className:\"bg-slate-50 dark:bg-slate-800 rounded-xl p-4\",initial:{x:-20,opacity:0},animate:{x:0,opacity:1},transition:{delay:.15},children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-2\",children:[h.jsx(UT,{size:16,className:\"text-slate-400\"}),h.jsx(\"span\",{className:\"text-xs text-slate-500\",children:\"Time Left\"})]}),h.jsxs(\"p\",{className:\"text-xl font-bold text-slate-900 dark:text-white\",children:[L,\" days\"]})]}),h.jsxs(pe.div,{className:\"bg-slate-50 dark:bg-slate-800 rounded-xl p-4\",initial:{x:20,opacity:0},animate:{x:0,opacity:1},transition:{delay:.2},children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-2\",children:[h.jsx(Ml,{size:16,className:\"text-slate-400\"}),h.jsx(\"span\",{className:\"text-xs text-slate-500\",children:\"Daily Rate\"})]}),h.jsxs(\"p\",{className:\"text-xl font-bold text-slate-900 dark:text-white\",children:[L>0?Math.ceil((K.target-K.current)/L):0,\"/day\"]})]})]}),K.steps&&K.steps.length>0&&h.jsxs(pe.div,{initial:{y:20,opacity:0},animate:{y:0,opacity:1},transition:{delay:.3},children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-3\",children:[h.jsx(kU,{size:16,className:\"text-slate-400\"}),h.jsx(\"span\",{className:\"text-sm font-medium text-slate-700 dark:text-slate-300\",children:\"Steps to Complete\"})]}),h.jsx(\"div\",{className:\"space-y-2\",children:K.steps.map((W,Y)=>h.jsx(pe.div,{className:`p-3 rounded-xl border ${W.completed?\"bg-teal-50 dark:bg-teal-900/20 border-teal-200 dark:border-teal-800\":\"bg-white dark:bg-slate-800 border-slate-200 dark:border-slate-700\"}`,initial:{x:-20,opacity:0},animate:{x:0,opacity:1},transition:{delay:.35+Y*.05},children:h.jsxs(\"div\",{className:\"flex items-start gap-3\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-full flex items-center justify-center flex-shrink-0 ${W.completed?\"bg-teal-500 text-white\":\"bg-slate-200 dark:bg-slate-700 text-slate-400\"}`,children:W.completed?h.jsx(Kd,{size:16}):Y+1}),h.jsxs(\"div\",{className:\"flex-1 min-w-0\",children:[h.jsx(\"span\",{className:`block font-medium ${W.completed?\"text-teal-700 dark:text-teal-300\":\"text-slate-900 dark:text-white\"}`,children:W.label}),W.description&&h.jsx(\"p\",{className:\"text-xs text-slate-500 dark:text-slate-400 mt-0.5\",children:W.description}),W.targetCount&&h.jsxs(\"div\",{className:\"flex items-center gap-2 mt-2\",children:[h.jsx(\"div\",{className:\"flex-1 h-1.5 bg-slate-200 dark:bg-slate-700 rounded-full overflow-hidden\",children:h.jsx(\"div\",{className:\"h-full bg-[#ff6b57] rounded-full transition-all\",style:{width:`${Math.min(100,(W.currentCount||0)/W.targetCount*100)}%`}})}),h.jsxs(\"span\",{className:\"text-xs text-slate-500 font-medium\",children:[W.currentCount||0,\"/\",W.targetCount]})]})]})]})},W.id))})]}),(!K.steps||K.steps.length===0)&&h.jsxs(pe.div,{initial:{y:20,opacity:0},animate:{y:0,opacity:1},transition:{delay:.3},children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-3\",children:[h.jsx(kU,{size:16,className:\"text-slate-400\"}),h.jsx(\"span\",{className:\"text-sm font-medium text-slate-700 dark:text-slate-300\",children:\"Milestones\"})]}),h.jsx(\"div\",{className:\"space-y-2\",children:q.map((W,Y)=>h.jsxs(pe.div,{className:`flex items-center justify-between p-3 rounded-xl border ${W.reached?\"bg-green-50 dark:bg-green-900/20 border-green-200 dark:border-green-800\":\"bg-white dark:bg-slate-800 border-slate-200 dark:border-slate-700\"}`,initial:{x:-20,opacity:0},animate:{x:0,opacity:1},transition:{delay:.35+Y*.05},children:[h.jsxs(\"div\",{className:\"flex items-center gap-3\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-full flex items-center justify-center ${W.reached?\"bg-green-500 text-white\":\"bg-slate-200 dark:bg-slate-700 text-slate-400\"}`,children:W.reached?h.jsx(Kd,{size:16}):W.percent}),h.jsx(\"span\",{className:W.reached?\"text-green-700 dark:text-green-300 font-medium\":\"text-slate-600 dark:text-slate-400\",children:W.label})]}),h.jsxs(\"span\",{className:\"text-sm text-slate-500\",children:[W.percent,\"%\"]})]},W.percent))})]}),K.status!==\"completed\"&&h.jsxs(pe.button,{className:\"w-full py-3 bg-gradient-to-r from-[#ff6b57] to-[#ff8a6a] text-white font-semibold rounded-xl flex items-center justify-center gap-2 shadow-lg disabled:opacity-50\",whileHover:{scale:1.02},whileTap:{scale:.98},initial:{y:20,opacity:0},animate:{y:0,opacity:1},transition:{delay:.5},onClick:N,disabled:R||!U,children:[R?\"Updating...\":\"Update Progress\",!R&&h.jsx(xd,{size:18})]}),h.jsx(\"div\",{className:\"h-4\"})]})})},GB={badge:El,level_up:Td,quest:Fd,leaderboard:Os},WB={badge:\"text-[#ff8a6a] bg-[#ff8a6a]/10 dark:bg-[#ff8a6a]/20\",level_up:\"text-amber-500 bg-amber-100 dark:bg-amber-900/30\",quest:\"text-[#ff6b57] bg-[#ff6b57]/10 dark:bg-[#ff6b57]/20\",leaderboard:\"text-green-500 bg-green-100 dark:bg-green-100/30\"},JB=()=>{const{activeModal:i,closeModal:o,notifications:u,markNotificationRead:p,clearNotifications:A,theme:U}=Pr(),m=i===\"notifications\",y=U===\"qwik\",K=u.filter(R=>!R.read).length,F=R=>{const b=Date.now()-R,N=Math.floor(b/6e4),E=Math.floor(b/36e5),O=Math.floor(b/864e5);return O>0?`${O}d ago`:E>0?`${E}h ago`:N>0?`${N}m ago`:\"Just now\"};return h.jsx(Cd,{isOpen:m,onClose:o,title:\"Notifications\",subtitle:K>0?`${K} unread`:\"All caught up!\",headerGradient:\"from-[#ff6b57] to-[#ff8a6a]\",children:h.jsxs(\"div\",{className:\"p-4 space-y-3\",children:[u.length>0&&h.jsxs(\"div\",{className:\"flex justify-between items-center mb-2\",children:[h.jsxs(\"button\",{onClick:()=>u.forEach(R=>p(R.id)),className:\"text-sm text-[#ff6b57] dark:text-[#ff8a6a] font-medium hover:underline flex items-center gap-1\",children:[h.jsx(Kd,{size:14}),\"Mark all read\"]}),h.jsxs(\"button\",{onClick:A,className:\"text-sm text-slate-500 hover:text-red-500 transition-colors flex items-center gap-1\",children:[h.jsx(DM,{size:14}),\"Clear all\"]})]}),u.length===0?h.jsxs(pe.div,{className:\"flex flex-col items-center justify-center py-12 text-center\",initial:{scale:.9,opacity:0},animate:{scale:1,opacity:1},children:[h.jsx(\"div\",{className:\"w-16 h-16 bg-slate-100 dark:bg-slate-800 rounded-full flex items-center justify-center mb-4\",children:h.jsx(RU,{size:32,className:\"text-slate-400\"})}),h.jsx(\"h3\",{className:\"font-semibold text-slate-900 dark:text-white mb-2\",children:\"All caught up!\"}),h.jsx(\"p\",{className:\"text-sm text-slate-500\",children:\"No new notifications\"})]}):u.map((R,b)=>{const N=GB[R.type]||RU,E=WB[R.type]||\"text-slate-500 bg-slate-100\";return h.jsxs(pe.div,{className:`relative flex items-start gap-3 p-4 rounded-xl border transition-colors cursor-pointer ${R.read?\"bg-white dark:bg-slate-800 border-slate-200 dark:border-slate-700\":\"bg-[#ff6b57]/5 dark:bg-[#ff6b57]/10 border-[#ff6b57]/20 dark:border-[#ff6b57]/30\"}`,initial:{x:-20,opacity:0},animate:{x:0,opacity:1},transition:{delay:b*.05},onClick:()=>p(R.id),whileHover:{scale:1.01},whileTap:{scale:.99},children:[!R.read&&h.jsx(\"div\",{className:\"absolute top-4 right-4 w-2 h-2 bg-[#ff6b57] rounded-full\"}),h.jsx(\"div\",{className:`w-10 h-10 rounded-xl flex items-center justify-center ${E}`,children:h.jsx(N,{size:20})}),h.jsxs(\"div\",{className:\"flex-1 min-w-0\",children:[h.jsx(\"p\",{className:`text-sm ${R.read?\"text-slate-600 dark:text-slate-300\":\"text-slate-900 dark:text-white font-medium\"}`,children:R.message}),h.jsx(\"p\",{className:\"text-xs text-slate-400 mt-1\",children:F(R.timestamp||Date.now())})]})]},R.id)}),h.jsx(\"div\",{className:\"h-4\"})]})})},zu=[{name:\"Bronze\",min:0,max:999,color:\"from-orange-400 to-amber-500\",bgLight:\"bg-orange-50\",icon:\"\uD83E\uDD49\"},{name:\"Silver\",min:1e3,max:2999,color:\"from-slate-300 to-slate-400\",bgLight:\"bg-slate-100\",icon:\"\uD83E\uDD48\"},{name:\"Gold\",min:3e3,max:6999,color:\"from-yellow-400 to-amber-500\",bgLight:\"bg-yellow-50\",icon:\"\uD83E\uDD47\"},{name:\"Platinum\",min:7e3,max:1/0,color:\"from-cyan-400 to-blue-400\",bgLight:\"bg-cyan-50\",icon:\"\uD83D\uDC8E\"}],zB=[{action:\"Daily login\",xp:5,icon:\"\uD83D\uDCF1\",freq:\"once/day\"},{action:\"Card activated\",xp:150,icon:\"\uD83D\uDCB3\",freq:\"once\"},{action:\"Complete lesson\",xp:75,icon:\"\uD83D\uDCDA\",freq:\"3/day\"},{action:\"Budget created\",xp:120,icon:\"\uD83D\uDCB0\",freq:\"quarterly\"},{action:\"Send via QwikIT\",xp:20,icon:\"\uD83D\uDCB8\",freq:\"5/day\"},{action:\"Check credit score\",xp:40,icon:\"\uD83D\uDCCA\",freq:\"weekly\"},{action:\"Referral success\",xp:250,icon:\"\uD83E\uDD1D\",freq:\"max 10\"}];function $T(i){const o=zu.find(m=>i>=m.min&&i<=m.max)||zu[0],u=zu.indexOf(o),p=u<zu.length-1?zu[u+1]:null,A=o.max===1/0?100:Math.floor((i-o.min)/(o.max-o.min+1)*100),U=p?p.min-i:0;return{tier:o,nextTier:p,progressInTier:A,xpToNext:U,tierIndex:u}}const HB={earn:{icon:Os,color:\"text-blue-600\",bg:\"bg-blue-50\",sign:\"+\"},spend:{icon:Os,color:\"text-slate-400\",bg:\"bg-slate-100\",sign:\"\"},bonus:{icon:kM,color:\"text-[#ff6b57]\",bg:\"bg-[#ff6b57]/10\",sign:\"+\"}},PB=()=>{const{activeModal:i,closeModal:o,wallet:u,transactions:p,theme:A}=Pr(),U=i===\"wallet-history\",[m,y]=Q.useState(\"all\"),K=(u==null?void 0:u.balance)||0,{tier:F,nextTier:R,progressInTier:b,xpToNext:N,tierIndex:E}=Q.useMemo(()=>$T(K),[K]),O=m===\"all\"?p.filter(q=>q.type!==\"spend\"):p.filter(q=>q.type===m),B=q=>new Date(q).toLocaleDateString(\"en-US\",{month:\"short\",day:\"numeric\",hour:\"2-digit\",minute:\"2-digit\"}),L=K;return h.jsx(Cd,{isOpen:U,onClose:o,title:\"XP Activity\",subtitle:\"Your complete transaction history\",headerGradient:\"from-[#ff6b57] to-[#ff8a6a]\",children:h.jsxs(\"div\",{className:\"p-4 space-y-4\",children:[h.jsxs(pe.div,{className:`relative rounded-2xl p-4 text-white shadow-lg overflow-hidden bg-gradient-to-br ${F.color}`,initial:{y:-10,opacity:0},animate:{y:0,opacity:1},children:[h.jsxs(\"div\",{className:\"flex items-center gap-3\",children:[h.jsx(\"div\",{className:\"w-12 h-12 rounded-full bg-white/20 flex items-center justify-center border-2 border-white/40\",children:h.jsx(\"span\",{className:\"text-xl\",children:F.icon})}),h.jsxs(\"div\",{className:\"flex-1\",children:[h.jsxs(\"p\",{className:\"text-xs text-white/70 font-medium\",children:[F.name,\" Tier\"]}),h.jsxs(\"div\",{className:\"text-2xl font-bold\",children:[h.jsx(Vs,{value:K}),h.jsx(\"span\",{className:\"text-sm font-normal ml-1.5 text-white/80\",children:\"XP\"})]})]}),h.jsxs(\"div\",{className:\"text-right\",children:[h.jsx(\"p\",{className:\"text-xs text-white/70\",children:\"Lifetime\"}),h.jsxs(\"p\",{className:\"text-lg font-bold\",children:[\"+\",L.toLocaleString()]})]})]}),R&&h.jsxs(\"div\",{className:\"mt-3\",children:[h.jsxs(\"div\",{className:\"flex justify-between text-[10px] text-white/60 mb-1\",children:[h.jsxs(\"span\",{children:[N.toLocaleString(),\" XP to \",R.name]}),h.jsxs(\"span\",{children:[b,\"%\"]})]}),h.jsx(\"div\",{className:\"h-1.5 bg-white/20 rounded-full overflow-hidden\",children:h.jsx(pe.div,{className:\"h-full bg-white/80 rounded-full\",initial:{width:0},animate:{width:`${b}%`},transition:{duration:.8}})})]})]}),h.jsx(\"div\",{className:\"flex items-center gap-1\",children:zu.map((q,W)=>h.jsxs(pe.div,{className:`flex-1 py-1.5 rounded-lg text-center relative ${W<=E?`bg-gradient-to-r ${q.color} text-white`:`${q.bgLight} text-slate-400`}`,initial:{scale:.9,opacity:0},animate:{scale:1,opacity:1},transition:{delay:.1+W*.05},children:[h.jsx(\"span\",{className:\"text-xs\",children:q.icon}),W===E&&h.jsx(\"div\",{className:\"absolute -top-0.5 -right-0.5 w-2 h-2 bg-blue-500 rounded-full border border-white\"})]},q.name))}),h.jsx(\"div\",{className:\"flex gap-2\",children:[\"all\",\"earn\",\"bonus\"].map(q=>h.jsx(\"button\",{onClick:()=>y(q),className:`flex-1 px-3 py-2 rounded-xl text-sm font-medium transition-colors ${m===q?\"bg-[#ff6b57] text-white\":\"bg-slate-100 text-slate-600 hover:bg-slate-200\"}`,children:q===\"all\"?\"All\":q.charAt(0).toUpperCase()+q.slice(1)},q))}),h.jsxs(\"div\",{className:\"space-y-2\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-2\",children:[h.jsx(UT,{size:14,className:\"text-slate-400\"}),h.jsx(\"span\",{className:\"text-xs font-semibold text-slate-600\",children:\"Transaction History\"}),h.jsxs(\"span\",{className:\"text-[10px] text-slate-400 ml-auto\",children:[O.length,\" transactions\"]})]}),O.length===0?h.jsxs(\"div\",{className:\"text-center py-10 text-slate-400 bg-slate-50 rounded-xl border border-slate-200\",children:[h.jsx(wU,{size:28,className:\"mx-auto mb-2 opacity-40\"}),h.jsx(\"p\",{className:\"text-sm font-medium\",children:\"No transactions found\"}),h.jsx(\"p\",{className:\"text-xs mt-1\",children:\"Complete actions to start earning XP!\"})]}):h.jsx(\"div\",{className:\"space-y-2 max-h-[300px] overflow-y-auto hide-scrollbar\",children:O.map((q,W)=>{const Y=HB[q.type],P=Y.icon;return h.jsxs(pe.div,{className:\"flex items-center gap-3 p-3 bg-white rounded-xl border border-slate-200\",initial:{x:-15,opacity:0},animate:{x:0,opacity:1},transition:{delay:.1+W*.03},children:[h.jsx(\"div\",{className:`w-9 h-9 rounded-lg flex items-center justify-center ${Y.bg}`,children:q.type===\"bonus\"?h.jsx(El,{size:16,className:Y.color}):h.jsx(P,{size:16,className:Y.color})}),h.jsxs(\"div\",{className:\"flex-1 min-w-0\",children:[h.jsx(\"p\",{className:\"text-sm font-semibold text-slate-800 truncate\",children:q.description}),h.jsx(\"p\",{className:\"text-[10px] text-slate-400\",children:B(q.timestamp)})]}),h.jsxs(\"span\",{className:`text-sm font-bold ${Y.color}`,children:[Y.sign,q.amount.toLocaleString(),\" XP\"]})]},q.id)})})]}),h.jsx(\"div\",{className:\"h-4\"})]})})},ZB=(i,o)=>{const u=[],p=[{icon:Td,label:\"Completed challenge\",color:\"text-amber-500\",bg:\"bg-amber-100 dark:bg-amber-900/30\"},{icon:Fd,label:\"Quest progress\",color:\"text-[#ff6b57]\",bg:\"bg-[#ff6b57]/10 dark:bg-[#ff6b57]/20\"},{icon:Ml,label:\"Daily login bonus\",color:\"text-green-500\",bg:\"bg-green-100 dark:bg-green-900/30\"},{icon:Kd,label:\"Task completed\",color:\"text-[#ff8a6a]\",bg:\"bg-[#ff8a6a]/10 dark:bg-[#ff8a6a]/20\"}];for(let A=0;A<o;A++){const U=p[A%p.length];u.push(it(ve({id:`${i}-${A}`,time:`${8+A*2}:${String(Math.floor(Math.random()*60)).padStart(2,\"0\")} AM`},U),{points:Math.floor(Math.random()*100)+10}))}return u},XB=()=>{const{activeModal:i,closeModal:o,selectedActivityDate:u,activities:p,theme:A}=Pr(),U=i===\"activity-day\",m=A===\"qwik\",y=p.find(b=>b.date===u),K=u?ZB(u,(y==null?void 0:y.count)||0):[],F=u?new Date(u).toLocaleDateString(\"en-US\",{weekday:\"long\",month:\"long\",day:\"numeric\",year:\"numeric\"}):\"\",R=K.reduce((b,N)=>b+N.points,0);return h.jsx(Cd,{isOpen:U,onClose:o,title:\"Activity Details\",subtitle:F,headerGradient:\"from-[#ff6b57] to-[#ff8a6a]\",children:h.jsxs(\"div\",{className:\"p-4 space-y-4\",children:[h.jsxs(pe.div,{className:\"bg-gradient-to-br from-[#ff6b57]/5 to-[#ff8a6a]/5 dark:from-[#ff6b57]/10 dark:to-[#ff8a6a]/10 rounded-2xl p-6 text-center\",initial:{y:-20,opacity:0},animate:{y:0,opacity:1},children:[h.jsx(\"div\",{className:\"w-16 h-16 bg-white dark:bg-slate-800 rounded-full flex items-center justify-center mx-auto mb-4 shadow-lg\",children:h.jsx(Qf,{size:32,className:\"text-[#ff6b57]\"})}),h.jsxs(\"p\",{className:\"text-sm text-slate-500 mb-2\",children:[(y==null?void 0:y.count)||0,\" Activities\"]}),h.jsxs(\"p\",{className:\"text-3xl font-bold text-slate-900 dark:text-white\",children:[\"+\",R,\" \",h.jsx(\"span\",{className:\"text-lg font-normal text-slate-400\",children:\"pts\"})]})]}),K.length===0?h.jsxs(pe.div,{className:\"flex flex-col items-center justify-center py-12 text-center\",initial:{scale:.9,opacity:0},animate:{scale:1,opacity:1},children:[h.jsx(\"div\",{className:\"w-16 h-16 bg-slate-100 dark:bg-slate-800 rounded-full flex items-center justify-center mb-4\",children:h.jsx(Ml,{size:32,className:\"text-slate-400\"})}),h.jsx(\"h3\",{className:\"font-semibold text-slate-900 dark:text-white mb-2\",children:\"No activity\"}),h.jsx(\"p\",{className:\"text-sm text-slate-500\",children:\"No activities recorded for this day\"})]}):h.jsxs(\"div\",{className:\"space-y-3\",children:[h.jsx(\"h3\",{className:\"font-semibold text-slate-700 dark:text-slate-300 text-sm\",children:\"Activity Timeline\"}),K.map((b,N)=>{const E=b.icon;return h.jsxs(pe.div,{className:\"flex items-center gap-3 p-3 bg-white dark:bg-slate-800 rounded-xl border border-slate-200 dark:border-slate-700\",initial:{x:-20,opacity:0},animate:{x:0,opacity:1},transition:{delay:N*.05},children:[h.jsx(\"div\",{className:`w-10 h-10 rounded-xl flex items-center justify-center ${b.bg}`,children:h.jsx(E,{size:20,className:b.color})}),h.jsxs(\"div\",{className:\"flex-1\",children:[h.jsx(\"p\",{className:\"font-medium text-slate-900 dark:text-white\",children:b.label}),h.jsx(\"p\",{className:\"text-xs text-slate-400\",children:b.time})]}),h.jsxs(\"span\",{className:\"font-bold text-green-500\",children:[\"+\",b.points]})]},b.id)})]}),h.jsx(\"div\",{className:\"h-4\"})]})})},_B=({isOpen:i,onClose:o})=>{var q,W;const{user:u,wallet:p,badges:A,activities:U,leaderboardEntries:m,theme:y}=Pr(),K=y===\"qwik\",F=WU(),R=Ai,b=F.stats,N=U.filter((Y,P)=>P===0?Y.count>0:Y.count>0&&U.slice(0,P).every(te=>te.count>0)).length||b.currentStreak,E=((q=m.find(Y=>Y.isCurrentUser))==null?void 0:q.rank)||1,O={legendary:A.filter(Y=>Y.rarity===\"legendary\"&&Y.unlocked).length,epic:A.filter(Y=>Y.rarity===\"epic\"&&Y.unlocked).length,rare:A.filter(Y=>Y.rarity===\"rare\"&&Y.unlocked).length,common:A.filter(Y=>Y.rarity===\"common\"&&Y.unlocked).length},B={elite:\"from-amber-400 to-yellow-500\",platinum:\"from-slate-300 to-slate-400\",gold:\"from-yellow-400 to-amber-500\",silver:\"from-gray-300 to-gray-400\",bronze:\"from-amber-600 to-amber-700\"},L=B[R.metadata.tier]||B.elite;return h.jsx(cd,{children:i&&h.jsx(pe.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},className:\"fixed inset-0 z-50 flex items-center justify-center p-4 bg-black/60 backdrop-blur-sm\",onClick:o,children:h.jsxs(pe.div,{initial:{scale:.9,opacity:0,y:20},animate:{scale:1,opacity:1,y:0},exit:{scale:.9,opacity:0,y:20},transition:{type:\"spring\",damping:25,stiffness:300},className:\"w-full max-w-lg max-h-[90vh] overflow-hidden rounded-2xl bg-white dark:bg-slate-900 border border-slate-200 dark:border-white/10 shadow-2xl\",onClick:Y=>Y.stopPropagation(),children:[h.jsxs(\"div\",{className:\"relative h-32 overflow-visible bg-gradient-to-br from-[#ff6b57] via-[#ff8a6a] to-[#ff9f85]\",children:[h.jsx(\"div\",{className:\"absolute inset-0 opacity-20\",children:h.jsx(\"div\",{className:\"absolute inset-0\",style:{backgroundImage:`url(\"data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")`}})}),R.metadata.vipStatus&&h.jsx(pe.div,{className:\"absolute top-3 right-3\",animate:{rotate:[0,5,-5,0]},transition:{repeat:1/0,duration:2},children:h.jsxs(\"div\",{className:\"flex items-center gap-1 px-2 py-1 rounded-full bg-gradient-to-r from-amber-400 to-yellow-500 text-black text-xs font-bold shadow-lg\",children:[h.jsx(mh,{className:\"w-3 h-3\"}),\"VIP\"]})}),h.jsx(\"button\",{onClick:o,className:\"absolute top-3 left-3 p-1.5 rounded-full bg-black/30 hover:bg-black/50 text-white/80 hover:text-white transition-colors\",children:h.jsx(Ah,{className:\"w-4 h-4\"})}),h.jsx(\"div\",{className:\"absolute -bottom-12 left-1/2 -translate-x-1/2 z-10\",children:h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(pe.div,{className:\"w-24 h-24 rounded-full border-4 border-gray-900 overflow-hidden shadow-xl\",whileHover:{scale:1.05},children:h.jsx(\"img\",{src:R.avatarUrl,alt:R.displayName,className:\"w-full h-full object-cover bg-gradient-to-br from-orange-50 to-rose-50\"})}),h.jsx(\"div\",{className:`absolute -bottom-1 -right-1 w-8 h-8 rounded-full bg-gradient-to-r ${L} flex items-center justify-center text-xs font-bold text-black shadow-lg border-2 border-gray-900`,children:(u==null?void 0:u.level)||F.user.level}),h.jsx(\"div\",{className:\"absolute top-1 right-1 w-4 h-4 rounded-full bg-green-500 border-2 border-gray-900 animate-pulse\"})]})})]}),h.jsxs(\"div\",{className:\"pt-14 pb-4 px-4 overflow-y-auto max-h-[calc(90vh-8rem)]\",children:[h.jsxs(\"div\",{className:\"text-center mb-4\",children:[h.jsxs(\"h2\",{className:\"text-2xl font-bold text-slate-900 dark:text-white flex items-center justify-center gap-2\",children:[R.displayName,h.jsx(\"span\",{className:\"text-lg text-slate-500 dark:text-slate-400\",children:R.nickname})]}),h.jsxs(\"div\",{className:\"flex items-center justify-center gap-2 mt-1\",children:[h.jsx(\"span\",{className:`px-2 py-0.5 rounded-full text-xs font-semibold bg-gradient-to-r ${L} text-white uppercase`,children:R.metadata.tier}),h.jsxs(\"span\",{className:\"text-sm text-slate-500 dark:text-slate-400\",children:[\"\u2022 \",R.metadata.persona]})]}),h.jsx(\"p\",{className:\"text-sm text-slate-600 dark:text-slate-300 mt-2\",children:R.metadata.bio})]}),h.jsxs(\"div\",{className:\"grid grid-cols-4 gap-2 mb-4\",children:[h.jsxs(\"div\",{className:\"bg-slate-50 dark:bg-white/5 rounded-xl p-3 text-center border border-slate-100 dark:border-transparent\",children:[h.jsx(NU,{className:\"w-5 h-5 mx-auto mb-1 text-orange-500 dark:text-orange-400\"}),h.jsx(\"div\",{className:\"text-lg font-bold text-slate-900 dark:text-white\",children:N}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"Day Streak\"})]}),h.jsxs(\"div\",{className:\"bg-slate-50 dark:bg-white/5 rounded-xl p-3 text-center border border-slate-100 dark:border-transparent\",children:[h.jsx(Td,{className:\"w-5 h-5 mx-auto mb-1 text-yellow-500 dark:text-yellow-400\"}),h.jsxs(\"div\",{className:\"text-lg font-bold text-slate-900 dark:text-white\",children:[\"#\",E]}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"Rank\"})]}),h.jsxs(\"div\",{className:\"bg-slate-50 dark:bg-white/5 rounded-xl p-3 text-center border border-slate-100 dark:border-transparent\",children:[h.jsx(hh,{className:`w-5 h-5 mx-auto mb-1 ${K?\"text-[#ff6b57]\":\"text-[#ff6b57] dark:text-[#ff8a6a]\"}`}),h.jsx(\"div\",{className:\"text-lg font-bold text-slate-900 dark:text-white\",children:((W=p==null?void 0:p.balance)!=null?W:F.wallet.balance).toLocaleString()}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"XP\"})]}),h.jsxs(\"div\",{className:\"bg-slate-50 dark:bg-white/5 rounded-xl p-3 text-center border border-slate-100 dark:border-transparent\",children:[h.jsx(co,{className:\"w-5 h-5 mx-auto mb-1 text-blue-500 dark:text-blue-400\"}),h.jsx(\"div\",{className:\"text-lg font-bold text-slate-900 dark:text-white\",children:A.filter(Y=>Y.unlocked).length}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"Badges\"})]})]}),h.jsxs(\"div\",{className:\"bg-slate-50 dark:bg-white/5 rounded-xl p-4 mb-4 border border-slate-100 dark:border-transparent\",children:[h.jsxs(\"h3\",{className:\"text-sm font-semibold text-slate-700 dark:text-white/70 mb-3 flex items-center gap-2\",children:[h.jsx(Os,{className:\"w-4 h-4\"}),\"Player Statistics\"]}),h.jsxs(\"div\",{className:\"grid grid-cols-2 gap-3\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-lg flex items-center justify-center ${K?\"bg-[#ff6b57]/10\":\"bg-[#ff6b57]/10 dark:bg-[#ff6b57]/20\"}`,children:h.jsx(Ml,{className:`w-4 h-4 ${K?\"text-[#ff6b57]\":\"text-[#ff6b57] dark:text-[#ff8a6a]\"}`})}),h.jsxs(\"div\",{children:[h.jsx(\"div\",{className:\"text-sm font-semibold text-slate-900 dark:text-white\",children:b.totalPointsEarned.toLocaleString()}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"Lifetime XP\"})]})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-lg flex items-center justify-center ${K?\"bg-[#ff8a6a]/10\":\"bg-orange-500/10 dark:bg-orange-500/20\"}`,children:h.jsx(NU,{className:`w-4 h-4 ${K?\"text-[#ff8a6a]\":\"text-orange-500 dark:text-orange-400\"}`})}),h.jsxs(\"div\",{children:[h.jsx(\"div\",{className:\"text-sm font-semibold text-slate-900 dark:text-white\",children:b.longestStreak}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"Best Streak\"})]})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-lg flex items-center justify-center ${K?\"bg-emerald-500/10\":\"bg-green-500/10 dark:bg-green-500/20\"}`,children:h.jsx(Fd,{className:`w-4 h-4 ${K?\"text-emerald-500\":\"text-green-500 dark:text-green-400\"}`})}),h.jsxs(\"div\",{children:[h.jsx(\"div\",{className:\"text-sm font-semibold text-slate-900 dark:text-white\",children:b.totalQuestsCompleted}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"Quests Completed\"})]})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-lg flex items-center justify-center ${K?\"bg-blue-500/10\":\"bg-blue-500/10 dark:bg-blue-500/20\"}`,children:h.jsx(Qf,{className:`w-4 h-4 ${K?\"text-blue-500\":\"text-blue-500 dark:text-blue-400\"}`})}),h.jsxs(\"div\",{children:[h.jsx(\"div\",{className:\"text-sm font-semibold text-slate-900 dark:text-white\",children:b.totalDaysActive}),h.jsx(\"div\",{className:\"text-xs text-slate-500 dark:text-white/50\",children:\"Active Days\"})]})]})]})]}),h.jsxs(\"div\",{className:\"bg-slate-50 dark:bg-white/5 rounded-xl p-4 mb-4 border border-slate-100 dark:border-transparent\",children:[h.jsxs(\"h3\",{className:\"text-sm font-semibold text-slate-700 dark:text-white/70 mb-3 flex items-center gap-2\",children:[h.jsx(co,{className:\"w-4 h-4\"}),\"Badge Collection\"]}),h.jsxs(\"div\",{className:\"flex gap-2\",children:[h.jsxs(\"div\",{className:\"flex-1 bg-gradient-to-br from-amber-500/10 to-yellow-500/10 dark:from-amber-500/20 dark:to-yellow-500/20 rounded-lg p-2 text-center border border-amber-500/20 dark:border-amber-500/30\",children:[h.jsx(\"div\",{className:\"text-lg font-bold text-amber-500 dark:text-amber-400\",children:O.legendary}),h.jsx(\"div\",{className:\"text-xs text-amber-600/70 dark:text-amber-400/70\",children:\"Legendary\"})]}),h.jsxs(\"div\",{className:\"flex-1 rounded-lg p-2 text-center bg-gradient-to-br from-[#ff6b57]/10 to-[#ff8a6a]/10 dark:from-[#ff6b57]/20 dark:to-[#ff8a6a]/20 border border-[#ff6b57]/20 dark:border-[#ff6b57]/30\",children:[h.jsx(\"div\",{className:`text-lg font-bold ${K?\"text-[#ff6b57] dark:text-[#ff6b57]\":\"text-[#ff6b57] dark:text-[#ff8a6a]\"}`,children:O.epic}),h.jsx(\"div\",{className:`text-xs ${K?\"text-[#ff6b57]/70 dark:text-[#ff6b57]/70\":\"text-[#ff6b57]/70 dark:text-[#ff8a6a]/70\"}`,children:\"Epic\"})]}),h.jsxs(\"div\",{className:\"flex-1 bg-gradient-to-br from-blue-500/10 to-indigo-500/10 dark:from-blue-500/20 dark:to-indigo-500/20 rounded-lg p-2 text-center border border-blue-500/20 dark:border-blue-500/30\",children:[h.jsx(\"div\",{className:\"text-lg font-bold text-blue-500 dark:text-blue-400\",children:O.rare}),h.jsx(\"div\",{className:\"text-xs text-blue-600/70 dark:text-blue-400/70\",children:\"Rare\"})]}),h.jsxs(\"div\",{className:\"flex-1 bg-gradient-to-br from-green-500/10 to-emerald-500/10 dark:from-green-500/20 dark:to-emerald-500/20 rounded-lg p-2 text-center border border-green-500/20 dark:border-green-500/30\",children:[h.jsx(\"div\",{className:\"text-lg font-bold text-green-500 dark:text-green-400\",children:O.common}),h.jsx(\"div\",{className:\"text-xs text-green-600/70 dark:text-green-400/70\",children:\"Common\"})]})]})]}),h.jsxs(\"div\",{className:\"bg-slate-50 dark:bg-white/5 rounded-xl p-4 mb-4 border border-slate-100 dark:border-transparent\",children:[h.jsxs(\"h3\",{className:\"text-sm font-semibold text-slate-700 dark:text-white/70 mb-3 flex items-center gap-2\",children:[h.jsx(LM,{className:\"w-4 h-4\"}),\"Player Info\"]}),h.jsxs(\"div\",{className:\"space-y-2\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 text-sm\",children:[h.jsx(wM,{className:\"w-4 h-4 text-slate-400 dark:text-white/40\"}),h.jsxs(\"span\",{className:\"text-slate-600 dark:text-white/70\",children:[R.metadata.region,\", \",R.metadata.country]})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2 text-sm\",children:[h.jsx(QM,{className:\"w-4 h-4 text-slate-400 dark:text-white/40\"}),h.jsxs(\"span\",{className:\"text-slate-600 dark:text-white/70\",children:[R.metadata.device,\" Player\"]})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2 text-sm\",children:[h.jsx(Qf,{className:\"w-4 h-4 text-slate-400 dark:text-white/40\"}),h.jsxs(\"span\",{className:\"text-slate-600 dark:text-white/70\",children:[\"Joined\",\" \",new Date(R.metadata.joinDate).toLocaleDateString(\"en-US\",{month:\"long\",year:\"numeric\"})]})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2 text-sm\",children:[h.jsx(ST,{className:\"w-4 h-4 text-slate-400 dark:text-white/40\"}),h.jsxs(\"span\",{className:\"text-slate-600 dark:text-white/70\",children:[R.metadata.sessionsPerWeek,\" sessions/week\"]})]})]})]}),h.jsxs(\"div\",{className:\"flex gap-2\",children:[h.jsxs(pe.button,{whileHover:{scale:1.02},whileTap:{scale:.98},className:\"flex-1 flex items-center justify-center gap-2 py-3 rounded-xl text-white font-semibold text-sm shadow-lg bg-gradient-to-r from-[#ff6b57] to-[#ff8a6a]\",children:[h.jsx(ST,{className:\"w-4 h-4\"}),\"Follow\"]}),h.jsxs(pe.button,{whileHover:{scale:1.02},whileTap:{scale:.98},className:\"flex-1 flex items-center justify-center gap-2 py-3 rounded-xl bg-white/10 text-white font-semibold text-sm border border-white/20\",children:[h.jsx(yT,{className:\"w-4 h-4\"}),\"Share\"]})]})]})]})})})},JU=[{id:\"overview\",label:\"Overview\",icon:NM},{id:\"leaderboard\",label:\"Leaderboard\",icon:Td},{id:\"badges\",label:\"Badges\",icon:co},{id:\"quests\",label:\"Quests\",icon:Fd},{id:\"wallet\",label:\"XP\",icon:wU},{id:\"play\",label:\"Play\",icon:RM}],zU=i=>{switch(i){case\"legendary\":return\"bg-gradient-to-r from-amber-400 to-orange-500 text-white\";case\"epic\":return\"bg-gradient-to-r from-purple-400 to-fuchsia-500 text-white\";case\"rare\":return\"bg-gradient-to-r from-blue-400 to-cyan-500 text-white\";case\"common\":return\"bg-gradient-to-r from-slate-400 to-slate-500 text-white\";default:return\"bg-slate-200 text-slate-600\"}},eC=()=>{const{isOpen:i,toggleOpen:o,toggleChat:u,user:p,quests:A,wallet:U,badges:m,activities:y,transactions:K,notifications:F,leaderboardEntries:R,activeTab:b,setActiveTab:N,openModal:E,activeModal:O,closeModal:B,openBadgeDetail:L,openQuestDetail:q,openActivityDay:W,theme:Y}=Pr(),P=Y===\"qwik\",[te,me]=Q.useState(!1),[ye,be]=Q.useState(null),[Pe,ut]=Q.useState(()=>xB()),gt=m.length>0?m:ZT,Ce=A.length>0?A:YU;y.length>0||kB();const qe=(R.length>0?R:RB).map(ee=>ee.isCurrentUser||ee.userId===\"current\"||ee.userId===(p==null?void 0:p.userId)?it(ve({},ee),{score:(U==null?void 0:U.balance)||0}):ee),dt=F.filter(ee=>!ee.read).length,ke=ee=>{L(ee)},pt=ee=>{q(ee)};Q.useEffect(()=>{let ee=!0;return KB().then(fe=>{ee&&ut(fe)}).catch(()=>{}),()=>{ee=!1}},[]),Q.useEffect(()=>{JU.findIndex(fe=>fe.id===b)>=5&&me(!0)},[b]);const Ke=te?JU:JU.slice(0,5),de=()=>{E(\"player-profile\")};return h.jsx(cd,{children:i&&h.jsxs(pe.div,{className:\"fixed inset-0 z-[100] flex items-start justify-center pointer-events-none\",initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},children:[h.jsx(pe.div,{className:`absolute inset-0 backdrop-blur-sm pointer-events-auto ${P?\"bg-slate-900/30\":\"bg-black/50\"}`,onClick:o,initial:{opacity:0},animate:{opacity:1},exit:{opacity:0}}),h.jsxs(pe.div,{className:`absolute top-0 mt-8 w-full max-w-md rounded-3xl shadow-2xl overflow-hidden pointer-events-auto flex flex-col max-h-[90vh] ${P?\"bg-white border border-slate-200\":\"glass-card border border-white/10\"}`,initial:{y:\"100%\",scale:.95},animate:{y:0,scale:1},exit:{y:\"100%\",scale:.95},transition:{type:\"spring\",damping:28,stiffness:300},children:[h.jsxs(\"div\",{className:`p-4 border-b flex justify-between items-center ${P?\"border-slate-200 bg-gradient-to-r from-[#ff6b57]/5 to-[#ff8a6a]/5\":\"border-white/10 bg-gradient-to-r from-[#ff6b57]/5 to-[#ff8a6a]/5\"}`,children:[h.jsxs(pe.button,{onClick:de,className:\"flex items-center gap-3 text-left group\",whileTap:{scale:.98},children:[h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(\"div\",{className:\"w-12 h-12 rounded-full overflow-hidden shadow-lg ring-2 ring-white/20 group-hover:ring-[#ff6b57]/50 transition-all bg-gradient-to-br from-[#ff6b57] to-[#ff8a6a]\",children:h.jsx(\"img\",{src:Ai.avatarUrl,alt:Ai.displayName,className:\"w-full h-full object-cover\"})}),h.jsx(\"div\",{className:\"absolute -bottom-1 -right-1 w-5 h-5 bg-gradient-to-r from-amber-400 to-orange-500 rounded-full flex items-center justify-center shadow-lg text-[10px] font-bold text-white\",children:(p==null?void 0:p.level)||1}),h.jsx(\"div\",{className:\"absolute top-0 right-0 w-3 h-3 bg-emerald-500 rounded-full border-2 border-white dark:border-slate-800 animate-pulse\"})]}),h.jsxs(\"div\",{children:[h.jsxs(\"h2\",{className:\"font-bold text-slate-900 dark:text-white flex items-center gap-2\",children:[(p==null?void 0:p.displayName)||Ai.displayName,h.jsx(El,{size:14,className:\"text-amber-400\"})]}),h.jsxs(\"p\",{className:\"text-xs text-slate-500 dark:text-slate-400 flex items-center gap-1\",children:[h.jsx(Vs,{value:(U==null?void 0:U.balance)||0}),\" XP\",h.jsx(\"span\",{className:\"mx-1\",children:\"\u2022\"}),h.jsx(\"span\",{className:`font-medium ${P?\"text-[#ff6b57]\":\"text-[#ff6b57] dark:text-[#ff8a6a]\"}`,children:\"View Profile \u2192\"})]})]})]}),h.jsxs(\"div\",{className:\"flex gap-2\",children:[h.jsxs(pe.button,{onClick:()=>E(\"notifications\"),className:\"relative p-2.5 bg-rose-500/10 active:bg-rose-500/20 rounded-xl transition-colors\",whileTap:{scale:.95},children:[h.jsx(RU,{size:20,className:\"text-rose-500\"}),dt>0&&h.jsx(\"span\",{className:\"absolute -top-1 -right-1 w-4 h-4 bg-rose-500 text-white text-[10px] font-bold rounded-full flex items-center justify-center\",children:dt})]}),h.jsx(pe.button,{onClick:o,className:\"p-2.5 bg-slate-500/10 active:bg-slate-500/20 rounded-xl transition-colors\",whileTap:{scale:.95},children:h.jsx(Ah,{size:20,className:\"text-slate-600 dark:text-slate-300\"})})]})]}),h.jsxs(\"div\",{className:`p-3 border-b ${P?\"bg-slate-50 border-slate-200\":\"bg-slate-50/50 dark:bg-slate-900/50 border-white/10\"}`,children:[h.jsx(\"div\",{className:\"grid grid-cols-5 gap-2\",children:Ke.map(ee=>{const fe=ee.icon,j=b===ee.id;return h.jsxs(pe.button,{onClick:()=>N(ee.id),className:`flex-1 flex flex-col items-center justify-center py-2 transition-colors ${j?\"text-[#ff6b57]\":\"text-slate-400 dark:text-slate-500\"}`,whileTap:{scale:.95},\"aria-current\":j?\"page\":void 0,children:[h.jsx(\"div\",{className:`w-10 h-10 rounded-xl flex items-center justify-center mb-1 transition-colors ${j?\"bg-[#ff6b57]/10\":\"bg-transparent\"}`,children:h.jsx(fe,{size:20,strokeWidth:j?2.5:2})}),h.jsx(\"span\",{className:`text-[10px] font-bold uppercase tracking-tight ${j?\"opacity-100\":\"opacity-70\"}`,children:ee.label})]},ee.id)})}),h.jsx(\"button\",{onClick:()=>me(!te),className:\"w-full flex items-center justify-center py-1 mt-1 text-slate-400 hover:text-slate-500 transition-colors\",\"aria-label\":te?\"Show less\":\"Show active tabs\",children:te?h.jsx(bM,{size:14}):h.jsx(TM,{size:14})})]}),h.jsxs(\"div\",{className:`flex-1 overflow-y-auto hide-scrollbar p-4 space-y-5 ${P?\"bg-white\":\"\"}`,children:[h.jsxs(cd,{mode:\"wait\",children:[b===\"overview\"&&h.jsxs(pe.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},className:\"space-y-5\",children:[h.jsxs(\"div\",{className:\"grid grid-cols-2 gap-3\",children:[h.jsxs(pe.div,{className:`glass-card p-4 rounded-2xl cursor-pointer ${P?\"bg-white/90 border border-slate-200\":\"\"}`,whileTap:{scale:.98},onClick:()=>N(\"wallet\"),children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-2\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-lg flex items-center justify-center ${P?\"bg-[#ff6b57]/10\":\"bg-green-500/10\"}`,children:h.jsx(Ml,{size:16,className:P?\"text-[#ff6b57]\":\"text-green-500\"})}),h.jsx(\"span\",{className:`text-xs ${P?\"text-slate-600\":\"text-slate-500 dark:text-slate-400\"}`,children:\"Total XP\"})]}),h.jsxs(\"div\",{className:`text-2xl font-bold ${P?\"text-slate-900\":\"text-slate-900 dark:text-white\"}`,children:[h.jsx(Vs,{value:(U==null?void 0:U.balance)||0}),h.jsx(\"span\",{className:`text-sm font-normal ml-1 ${P?\"text-slate-500\":\"text-slate-400\"}`,children:\"XP\"})]}),h.jsxs(\"div\",{className:`flex items-center gap-1 mt-1 text-xs ${P?\"text-[#ff6b57]\":\"text-slate-400\"}`,children:[h.jsx(\"span\",{children:\"View XP details\"}),h.jsx(xd,{size:12})]})]}),h.jsxs(pe.div,{className:`glass-card p-4 rounded-2xl cursor-pointer ${P?\"bg-white/90 border border-slate-200\":\"\"}`,whileTap:{scale:.98},onClick:()=>N(\"wallet\"),children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-2\",children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-lg flex items-center justify-center ${P?\"bg-[#ff6b57]/10\":\"bg-emerald-500/10\"}`,children:h.jsx(Ml,{size:16,className:P?\"text-[#ff6b57]\":\"text-emerald-500\"})}),h.jsx(\"span\",{className:`text-xs ${P?\"text-slate-600\":\"text-slate-500 dark:text-slate-400\"}`,children:\"Earned\"})]}),h.jsxs(\"div\",{className:`text-2xl font-bold ${P?\"text-[#ff6b57]\":\"text-emerald-500\"}`,children:[\"+\",h.jsx(Vs,{value:(U==null?void 0:U.earnedDelta)||0})]}),h.jsx(\"div\",{className:`text-xs mt-1 ${P?\"text-slate-500\":\"text-slate-400\"}`,children:\"This week\"})]})]}),h.jsxs(\"div\",{children:[h.jsxs(\"div\",{className:\"flex items-center justify-between mb-3\",children:[h.jsxs(\"h3\",{className:`font-semibold flex items-center gap-2 ${P?\"text-slate-900\":\"text-slate-900 dark:text-white\"}`,children:[h.jsx(Fd,{size:16,className:\"text-[#ff6b57]\"}),\"Active Quests\"]}),h.jsxs(\"button\",{onClick:()=>N(\"quests\"),className:`text-xs font-medium active:underline flex items-center gap-1 ${P?\"text-[#ff6b57]\":\"text-[#ff6b57] dark:text-[#ff8a6a]\"}`,children:[\"View all\",h.jsx(xd,{size:12})]})]}),h.jsx(\"div\",{className:\"grid grid-cols-3 gap-4\",children:Ce.length>0?Ce.slice(0,3).map((ee,fe)=>h.jsxs(pe.div,{className:`glass-card p-3 rounded-xl flex flex-col items-center cursor-pointer ${P?\"bg-white/90 border border-slate-200\":\"\"}`,initial:{opacity:0,scale:.8},animate:{opacity:1,scale:1},transition:{delay:.35+fe*.1},whileTap:{scale:.95},onClick:()=>pt(ee.questId),children:[h.jsx(Bl,{value:ee.progressPct,size:60,strokeWidth:5,color:P?\"coral\":ee.status===\"active\"?\"cyan\":ee.status===\"completed\"?\"green\":\"coral\"}),h.jsx(\"span\",{className:`mt-2 text-xs font-medium capitalize text-center line-clamp-2 ${P?\"text-slate-700\":\"text-slate-600 dark:text-slate-400\"}`,children:ee.title}),h.jsx(\"span\",{className:`text-[10px] px-1.5 py-0.5 rounded-full mt-1 ${ee.status===\"active\"?\"bg-blue-100 text-blue-700 dark:bg-blue-900/30 dark:text-blue-400\":ee.status===\"completed\"?\"bg-emerald-100 text-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-400\":\"bg-slate-100 text-slate-700 dark:bg-slate-800 dark:text-slate-400\"}`,children:ee.status})]},ee.questId)):h.jsx(\"div\",{className:\"col-span-3 text-center py-6 text-slate-400 text-sm\",children:\"No active quests\"})})]}),h.jsx(pe.div,{className:\"glass-card p-4 rounded-2xl\",whileTap:{scale:.98},children:h.jsx(OU,{entries:qe.slice(0,5),title:\"Leaderboard\",scope:\"season\",maxDisplay:5,onViewAll:()=>E(\"leaderboard-full\")})}),h.jsx(pe.div,{className:\"glass-card p-4 rounded-2xl\",whileTap:{scale:.98},children:h.jsx(VU,{badges:gt,title:\"Badges\",maxDisplay:6,onBadgeClick:ke,onViewAll:()=>N(\"badges\")})})]},\"overview\"),b===\"leaderboard\"&&h.jsx(pe.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},className:\"space-y-4\",children:h.jsx(OU,{entries:qe,title:\"Season Leaderboard\",scope:\"season\",onViewAll:()=>E(\"leaderboard-full\")})},\"leaderboard\"),b===\"badges\"&&h.jsxs(pe.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},className:\"space-y-4\",children:[(()=>{var le,$e;const ee=gt.filter(Ve=>Ve.unlocked);ee.filter(Ve=>Ve.earnedAt).sort((Ve,nt)=>new Date(nt.earnedAt||0).getTime()-new Date(Ve.earnedAt||0).getTime()).slice(0,3);const fe={legendary:4,epic:3,rare:2,common:1},j=[...ee].sort((Ve,nt)=>(fe[nt.rarity]||0)-(fe[Ve.rarity]||0)).slice(0,3);return h.jsxs(pe.div,{className:`relative rounded-2xl p-5 overflow-hidden ${P?\"bg-gradient-to-br from-[#fff7f4] via-white to-[#ffefea] border border-[#ff6b57]/20\":\"bg-gradient-to-br from-slate-900 to-slate-800 border border-white/10\"}`,initial:{opacity:0,scale:.95},animate:{opacity:1,scale:1},children:[h.jsx(\"div\",{className:\"absolute inset-0 overflow-hidden\",children:[...Array(8)].map((Ve,nt)=>h.jsx(pe.div,{className:`absolute w-1 h-1 rounded-full ${P?\"bg-[#ff6b57]/30\":\"bg-amber-400/30\"}`,style:{left:`${10+nt*12}%`,top:`${20+nt%3*25}%`},animate:{opacity:[.3,.8,.3],scale:[1,1.5,1]},transition:{duration:2,repeat:1/0,delay:nt*.2}},nt))}),h.jsxs(\"div\",{className:\"relative z-10\",children:[h.jsxs(\"div\",{className:\"flex items-center justify-between mb-4\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-3\",children:[h.jsx(\"div\",{className:`w-12 h-12 rounded-xl flex items-center justify-center ${P?\"bg-gradient-to-br from-[#ff6b57] to-[#ff8a6a] shadow-lg shadow-[#ff6b57]/30\":\"bg-gradient-to-br from-amber-400 to-orange-500 shadow-lg shadow-amber-500/30\"}`,children:h.jsx(co,{size:24,className:\"text-white\"})}),h.jsxs(\"div\",{children:[h.jsx(\"h3\",{className:`text-lg font-bold ${P?\"text-slate-900\":\"text-white\"}`,children:\"Trophy Case\"}),h.jsx(\"p\",{className:`text-xs ${P?\"text-slate-500\":\"text-slate-400\"}`,children:\"Your proudest achievements\"})]})]}),h.jsxs(\"div\",{className:\"text-right\",children:[h.jsxs(\"div\",{className:`text-2xl font-bold ${P?\"text-[#ff6b57]\":\"text-amber-400\"}`,children:[ee.length,h.jsxs(\"span\",{className:`text-sm font-normal ml-1 ${P?\"text-slate-500\":\"text-slate-400\"}`,children:[\"/ \",gt.length]})]}),h.jsx(\"p\",{className:`text-[10px] ${P?\"text-slate-500\":\"text-slate-400\"}`,children:\"badges earned\"})]})]}),j.length>0&&h.jsxs(\"div\",{className:\"flex items-end justify-center gap-4 py-3\",children:[j.length>1&&h.jsxs(pe.div,{className:\"flex flex-col items-center\",initial:{opacity:0,y:20},animate:{opacity:1,y:0},transition:{delay:.2},onClick:()=>ke(j[1].id),children:[h.jsxs(\"div\",{className:`relative w-14 h-14 rounded-xl flex items-center justify-center cursor-pointer transform hover:scale-110 transition-transform ${P?\"bg-white shadow-md border border-slate-200\":\"bg-slate-800 border border-slate-700\"}`,children:[j[1].imageUrl?h.jsx(\"img\",{src:j[1].imageUrl,alt:j[1].name,className:\"w-10 h-10 object-contain\"}):h.jsx(co,{size:24,className:\"text-slate-400\"}),h.jsx(\"div\",{className:`absolute -bottom-1 -right-1 w-5 h-5 rounded-full flex items-center justify-center text-[9px] font-bold ${zU(j[1].rarity)}`,children:(le=j[1].rarity)==null?void 0:le.charAt(0).toUpperCase()})]}),h.jsx(\"p\",{className:`text-[10px] mt-1.5 font-medium text-center line-clamp-1 max-w-16 ${P?\"text-slate-600\":\"text-slate-400\"}`,children:j[1].name})]}),h.jsxs(pe.div,{className:\"flex flex-col items-center -mt-3\",initial:{opacity:0,scale:.8},animate:{opacity:1,scale:1},transition:{delay:.1,type:\"spring\"},onClick:()=>ke(j[0].id),children:[h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(\"div\",{className:`absolute inset-0 rounded-2xl blur-lg ${P?\"bg-[#ff6b57]/40\":\"bg-amber-400/40\"}`}),h.jsx(\"div\",{className:`relative w-20 h-20 rounded-2xl flex items-center justify-center cursor-pointer transform hover:scale-110 transition-transform ${P?\"bg-gradient-to-br from-white to-[#fff7f4] shadow-xl border-2 border-[#ff6b57]/30\":\"bg-gradient-to-br from-slate-700 to-slate-800 shadow-xl border-2 border-amber-400/30\"}`,children:j[0].imageUrl?h.jsx(\"img\",{src:j[0].imageUrl,alt:j[0].name,className:\"w-14 h-14 object-contain\"}):h.jsx(co,{size:32,className:P?\"text-[#ff6b57]\":\"text-amber-400\"})}),h.jsx(pe.div,{className:\"absolute -top-3 left-1/2 -translate-x-1/2\",animate:{y:[0,-3,0]},transition:{duration:2,repeat:1/0},children:h.jsx(mh,{size:16,className:P?\"text-[#ff6b57]\":\"text-amber-400\"})})]}),h.jsx(\"p\",{className:`text-xs mt-2 font-bold text-center line-clamp-1 max-w-20 ${P?\"text-slate-800\":\"text-white\"}`,children:j[0].name}),h.jsx(\"span\",{className:`text-[9px] px-2 py-0.5 rounded-full font-medium ${zU(j[0].rarity)}`,children:j[0].rarity})]}),j.length>2&&h.jsxs(pe.div,{className:\"flex flex-col items-center\",initial:{opacity:0,y:20},animate:{opacity:1,y:0},transition:{delay:.3},onClick:()=>ke(j[2].id),children:[h.jsxs(\"div\",{className:`relative w-14 h-14 rounded-xl flex items-center justify-center cursor-pointer transform hover:scale-110 transition-transform ${P?\"bg-white shadow-md border border-slate-200\":\"bg-slate-800 border border-slate-700\"}`,children:[j[2].imageUrl?h.jsx(\"img\",{src:j[2].imageUrl,alt:j[2].name,className:\"w-10 h-10 object-contain\"}):h.jsx(co,{size:24,className:\"text-slate-400\"}),h.jsx(\"div\",{className:`absolute -bottom-1 -right-1 w-5 h-5 rounded-full flex items-center justify-center text-[9px] font-bold ${zU(j[2].rarity)}`,children:($e=j[2].rarity)==null?void 0:$e.charAt(0).toUpperCase()})]}),h.jsx(\"p\",{className:`text-[10px] mt-1.5 font-medium text-center line-clamp-1 max-w-16 ${P?\"text-slate-600\":\"text-slate-400\"}`,children:j[2].name})]})]})]})]})})(),h.jsx(VU,{badges:gt,title:\"All Badges\",maxDisplay:50,onBadgeClick:ke})]},\"badges\"),b===\"quests\"&&h.jsxs(pe.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},children:[(()=>{const ee=[...Ce].sort((fe,j)=>j.progressPct-fe.progressPct);return h.jsx(h.Fragment,{children:ee.length>0&&h.jsxs(\"div\",{className:\"flex items-end justify-center gap-3 mb-8 mt-4 px-2\",children:[ee.length>1&&h.jsxs(pe.div,{className:\"flex flex-col items-center gap-2 w-1/3 min-w-[30%]\",initial:{opacity:0,y:20},animate:{opacity:1,y:0},transition:{delay:.2},children:[h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(\"div\",{className:\"absolute inset-0 bg-gradient-to-br from-slate-300 to-slate-400 rounded-full blur-md opacity-50\"}),h.jsx(Bl,{value:ee[1].progressPct,size:64,strokeWidth:5,color:\"coral\"}),h.jsx(pe.div,{className:\"absolute -bottom-2 left-1/2 -translate-x-1/2 bg-gradient-to-r from-slate-300 to-slate-400 text-slate-700 text-[11px] font-bold px-2.5 py-0.5 rounded-full shadow-lg border-2 border-white dark:border-slate-900 whitespace-nowrap\",initial:{scale:0},animate:{scale:1},transition:{type:\"spring\",delay:.4},children:\"#2\"})]}),h.jsxs(\"div\",{className:\"text-center w-full\",children:[h.jsx(\"p\",{className:\"text-[11px] font-semibold text-slate-700 dark:text-slate-300 line-clamp-1 break-all\",children:ee[1].title||ee[1].type}),h.jsxs(\"p\",{className:\"text-[10px] text-slate-500 font-medium\",children:[ee[1].progressPct,\"%\"]})]})]}),h.jsxs(pe.div,{className:\"flex flex-col items-center gap-2 w-1/3 -mt-6 z-10 min-w-[30%]\",initial:{opacity:0,y:-20,scale:.8},animate:{opacity:1,y:0,scale:1},transition:{type:\"spring\",delay:.1,stiffness:200},children:[h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(pe.div,{className:\"absolute -top-8 left-1/2 -translate-x-1/2 z-20\",initial:{y:-10,opacity:0},animate:{y:0,opacity:1},transition:{delay:.5,type:\"spring\"},children:h.jsx(pe.div,{animate:{rotate:[0,-5,5,-5,0],y:[0,-2,0,-2,0]},transition:{duration:2,repeat:1/0}})}),[...Array(6)].map((fe,j)=>h.jsx(pe.div,{className:\"absolute w-1.5 h-1.5 bg-amber-400 rounded-full\",style:{left:`${20+j%3*30}%`,top:`${j<3?\"20%\":\"60%\"}`},animate:{y:[0,-15,0],opacity:[0,1,0],scale:[0,1.5,0]},transition:{duration:2,repeat:1/0,delay:j*.2}},j)),h.jsx(\"div\",{className:\"absolute inset-0 bg-gradient-to-br from-amber-300 to-orange-400 rounded-full blur-lg opacity-60\"}),h.jsx(Bl,{value:ee[0].progressPct,size:80,strokeWidth:6,color:\"gold\"}),h.jsx(pe.div,{className:\"absolute -bottom-2.5 left-1/2 -translate-x-1/2 bg-gradient-to-r from-amber-400 to-orange-500 text-white text-xs font-bold px-3 py-1 rounded-full shadow-xl border-2 border-white dark:border-slate-900 whitespace-nowrap\",initial:{scale:0,rotate:-10},animate:{scale:1,rotate:0},transition:{type:\"spring\",delay:.3,stiffness:200},children:\"#1\"})]}),h.jsxs(\"div\",{className:\"text-center w-full\",children:[h.jsx(\"p\",{className:\"text-xs font-bold text-slate-800 dark:text-white line-clamp-1 break-all\",children:ee[0].title||ee[0].type}),h.jsxs(\"p\",{className:\"text-[11px] text-amber-600 dark:text-amber-400 font-bold\",children:[ee[0].progressPct,\"%\"]})]})]}),ee.length>2&&h.jsxs(pe.div,{className:\"flex flex-col items-center gap-2 w-1/3 min-w-[30%]\",initial:{opacity:0,y:20},animate:{opacity:1,y:0},transition:{delay:.3},children:[h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(\"div\",{className:\"absolute inset-0 bg-gradient-to-br from-[#ff8a6a] to-[#ff6b57] rounded-full blur-md opacity-40\"}),h.jsx(Bl,{value:ee[2].progressPct,size:64,strokeWidth:5,color:\"coral\"}),h.jsx(pe.div,{className:\"absolute -bottom-2 left-1/2 -translate-x-1/2 bg-gradient-to-r from-[#ff8a6a] to-[#ff6b57] text-white text-[11px] font-bold px-2.5 py-0.5 rounded-full shadow-lg border-2 border-white dark:border-slate-900 whitespace-nowrap\",initial:{scale:0},animate:{scale:1},transition:{type:\"spring\",delay:.5},children:\"#3\"})]}),h.jsxs(\"div\",{className:\"text-center w-full\",children:[h.jsx(\"p\",{className:\"text-[11px] font-semibold text-slate-700 dark:text-slate-300 line-clamp-1 break-all\",children:ee[2].title||ee[2].type}),h.jsxs(\"p\",{className:\"text-[10px] text-[#ff6b57] font-medium\",children:[ee[2].progressPct,\"%\"]})]})]})]})})})(),h.jsxs(\"div\",{className:\"flex items-center justify-between mb-4\",children:[h.jsxs(\"h3\",{className:\"text-sm font-bold text-slate-700 dark:text-slate-300 flex items-center gap-2\",children:[h.jsx(Fd,{size:16,className:\"text-[#ff6b57]\"}),\"All Quests\"]}),h.jsxs(\"span\",{className:\"text-[11px] text-slate-400 dark:text-slate-500 font-medium\",children:[Ce.filter(ee=>ee.status===\"completed\").length,\"/\",Ce.length,\" completed\"]})]}),h.jsx(\"div\",{className:\"space-y-3\",children:Ce.map((ee,fe)=>h.jsx(pe.div,{className:\"glass-card rounded-xl p-4 cursor-pointer transition-all border border-slate-200 dark:border-slate-700 group overflow-hidden\",initial:{opacity:0,x:-20},animate:{opacity:1,x:0},transition:{delay:fe*.05},onClick:()=>pt(ee.questId),whileTap:{scale:.98},children:h.jsxs(\"div\",{className:\"flex items-start gap-3\",children:[h.jsx(\"div\",{className:\"flex-shrink-0\",children:h.jsx(Bl,{value:ee.progressPct,size:48,strokeWidth:4,color:ee.status===\"active\"?\"cyan\":ee.status===\"completed\"?\"green\":\"coral\"})}),h.jsxs(\"div\",{className:\"flex-1 min-w-0\",children:[h.jsxs(\"div\",{className:\"flex items-start justify-between gap-2 mb-2\",children:[h.jsx(\"h4\",{className:\"text-sm font-bold text-slate-800 dark:text-white capitalize leading-tight\",children:ee.title||ee.type}),h.jsxs(\"div\",{className:`\n px-2.5 py-1 rounded-full text-[10px] font-bold uppercase tracking-wide whitespace-nowrap flex items-center gap-1.5\n ${ee.status===\"completed\"?\"bg-teal-500 text-white shadow-sm\":ee.status===\"active\"?\"bg-blue-100 dark:bg-blue-900/30 text-blue-700 dark:text-blue-400\":\"bg-slate-100 dark:bg-slate-800 text-slate-600 dark:text-slate-400\"}\n `,children:[h.jsx(\"span\",{className:`w-1.5 h-1.5 rounded-full ${ee.status===\"completed\"?\"bg-white\":ee.status===\"active\"?\"bg-blue-500\":\"bg-slate-400\"}`}),ee.status===\"completed\"?\"\u2713 Done\":ee.status===\"active\"?\"Active\":\"Available\"]})]}),h.jsxs(\"div\",{className:\"flex items-center gap-2 text-xs text-slate-600 dark:text-slate-400 mb-2\",children:[h.jsx(\"span\",{className:\"font-semibold text-slate-800 dark:text-slate-200\",children:ee.current.toLocaleString()}),h.jsx(\"span\",{className:\"text-slate-400 dark:text-slate-500\",children:\"/\"}),h.jsx(\"span\",{children:ee.target.toLocaleString()})]}),h.jsx(\"div\",{className:\"relative h-2 bg-slate-200 dark:bg-slate-700 rounded-full overflow-hidden\",children:h.jsx(pe.div,{className:`\n absolute inset-y-0 left-0 rounded-full\n ${ee.status===\"completed\"?\"bg-gradient-to-r from-teal-400 to-teal-500\":ee.status===\"active\"?\"bg-gradient-to-r from-blue-400 to-cyan-500\":\"bg-gradient-to-r from-[#ff6b57] to-[#ff8a6a]\"}\n `,initial:{width:0},animate:{width:`${ee.progressPct}%`},transition:{duration:1,delay:.2+fe*.05}})})]}),h.jsx(\"div\",{className:\"flex-shrink-0 self-center\",children:h.jsx(xd,{size:18,className:\"text-slate-300 dark:text-slate-600 group-hover:text-[#ff6b57] transition-colors\"})})]})},ee.questId))})]},\"quests\"),b===\"wallet\"&&h.jsx(pe.div,{initial:{opacity:0,y:20},animate:{opacity:1,y:0},exit:{opacity:0,y:-20},className:\"space-y-4\",children:(()=>{const ee=(U==null?void 0:U.balance)||0,{tier:fe,nextTier:j,progressInTier:le,xpToNext:$e,tierIndex:Ve}=$T(ee),nt=ee;return h.jsxs(h.Fragment,{children:[h.jsxs(pe.div,{className:`relative rounded-2xl p-5 text-white shadow-xl overflow-hidden bg-gradient-to-br ${fe.color}`,initial:{y:-20,opacity:0},animate:{y:0,opacity:1},children:[h.jsx(\"div\",{className:\"absolute inset-0 overflow-hidden\",children:[...Array(5)].map((Ye,Ze)=>h.jsx(pe.div,{className:\"absolute w-2 h-2 bg-white/30 rounded-full\",style:{left:`${15+Ze*18}%`,top:`${25+Ze%2*30}%`},animate:{y:[0,-15,0],opacity:[.3,.6,.3]},transition:{duration:3,repeat:1/0,delay:Ze*.3}},Ze))}),h.jsxs(\"div\",{className:\"relative z-10 flex items-center gap-4\",children:[h.jsxs(pe.div,{className:\"relative overflow-visible w-16 h-16\",animate:{scale:[1,1.03,1]},transition:{duration:2,repeat:1/0},children:[h.jsx(Bl,{value:le,size:64,strokeWidth:4,showValue:!1,color:\"coral\",className:\"absolute inset-0 flex flex-col items-center justify-center\"}),h.jsx(\"div\",{className:\"absolute inset-0 flex items-center justify-center\",children:h.jsx(\"div\",{className:\"relative z-10 w-14 h-14 rounded-full bg-white/25 backdrop-blur-sm flex items-center justify-center border-2 border-white/50 shadow-lg\",children:h.jsx(\"span\",{className:\"text-2xl\",children:fe.icon})})})]}),h.jsxs(\"div\",{className:\"flex-1\",children:[h.jsxs(\"p\",{className:\"text-sm text-white/80 font-semibold\",children:[fe.name,\" Tier\"]}),h.jsxs(\"div\",{className:\"text-3xl font-bold\",children:[h.jsx(Vs,{value:ee}),h.jsx(\"span\",{className:\"text-base font-normal ml-1.5 text-white/90\",children:\"XP\"})]}),j&&h.jsxs(\"p\",{className:\"text-xs text-white/75 mt-0.5\",children:[$e.toLocaleString(),\" XP to \",j.name]})]})]}),j&&h.jsxs(\"div\",{className:\"relative z-10 mt-4\",children:[h.jsxs(\"div\",{className:\"flex justify-between text-[10px] text-white/70 mb-1\",children:[h.jsx(\"span\",{children:fe.min.toLocaleString()}),h.jsx(\"span\",{children:j.min.toLocaleString()})]}),h.jsx(\"div\",{className:\"h-1.5 bg-white/25 rounded-full overflow-hidden\",children:h.jsx(pe.div,{className:\"h-full bg-white/90 rounded-full\",initial:{width:0},animate:{width:`${le}%`},transition:{duration:1,delay:.3}})})]})]}),h.jsx(\"div\",{className:\"flex items-center gap-1.5\",children:zu.map((Ye,Ze)=>h.jsxs(pe.div,{className:`flex-1 py-2.5 rounded-lg text-center relative border ${Ze<=Ve?`bg-gradient-to-r ${Ye.color} text-white border-white/20 shadow-md`:`${Ye.bgLight} text-slate-500 border-slate-200 dark:bg-slate-700 dark:text-slate-400 dark:border-slate-600`}`,initial:{scale:.9,opacity:0},animate:{scale:1,opacity:1},transition:{delay:.2+Ze*.08},children:[h.jsx(\"span\",{className:\"text-sm\",children:Ye.icon}),h.jsx(\"p\",{className:`text-[9px] font-semibold mt-0.5 ${Ze<=Ve?\"text-white\":\"\"}`,children:Ye.name}),Ze===Ve&&h.jsx(\"div\",{className:\"absolute -top-1 -right-1 w-2.5 h-2.5 bg-blue-500 rounded-full border-2 border-white\"})]},Ye.name))}),h.jsxs(\"div\",{className:\"grid grid-cols-2 gap-3\",children:[h.jsxs(pe.div,{className:\"bg-blue-50 dark:bg-blue-900/20 rounded-xl p-3 border border-blue-200 dark:border-blue-800\",initial:{x:-15,opacity:0},animate:{x:0,opacity:1},transition:{delay:.15},children:[h.jsxs(\"div\",{className:\"flex items-center gap-1.5 mb-1\",children:[h.jsx(Os,{size:14,className:\"text-blue-600 dark:text-blue-400\"}),h.jsx(\"span\",{className:\"text-[10px] text-blue-700 dark:text-blue-300 font-medium\",children:\"This Week\"})]}),h.jsxs(\"p\",{className:\"text-xl font-bold text-blue-700 dark:text-blue-400\",children:[\"+\",h.jsx(Vs,{value:(U==null?void 0:U.earnedDelta)||0})]})]}),h.jsxs(pe.div,{className:\"bg-[#ff6b57]/10 rounded-xl p-3 border border-[#ff6b57]/20\",initial:{x:15,opacity:0},animate:{x:0,opacity:1},transition:{delay:.15},children:[h.jsxs(\"div\",{className:\"flex items-center gap-1.5 mb-1\",children:[h.jsx(Ml,{size:14,className:\"text-[#ff6b57]\"}),h.jsx(\"span\",{className:\"text-[10px] text-[#ff6b57] font-medium\",children:\"Lifetime\"})]}),h.jsxs(\"p\",{className:\"text-xl font-bold text-[#ff6b57]\",children:[\"+\",h.jsx(Vs,{value:nt})]})]})]}),h.jsxs(pe.div,{className:\"bg-gradient-to-br from-[#fff7f4] via-white to-[#ffefea] rounded-xl p-4 border border-[#ff6b57]/20 shadow-sm\",initial:{opacity:0,y:10},animate:{opacity:1,y:0},transition:{delay:.3},children:[h.jsxs(\"div\",{className:\"flex items-center gap-2 mb-3\",children:[h.jsx(\"div\",{className:\"w-7 h-7 rounded-lg bg-gradient-to-br from-[#ff6b57] to-[#ff8a6a] flex items-center justify-center shadow-sm\",children:h.jsx(El,{size:14,className:\"text-white\"})}),h.jsx(\"h4\",{className:\"text-sm font-bold text-slate-800\",children:\"How to Earn XP\"})]}),h.jsx(\"div\",{className:\"grid grid-cols-1 gap-2\",children:zB.map((Ye,Ze)=>h.jsxs(pe.div,{className:\"flex items-center gap-2.5 p-2.5 bg-white rounded-lg border border-[#ff6b57]/10 hover:border-[#ff6b57]/30 transition-colors\",initial:{x:-10,opacity:0},animate:{x:0,opacity:1},transition:{delay:.35+Ze*.04},children:[h.jsx(\"span\",{className:\"text-lg\",children:Ye.icon}),h.jsxs(\"div\",{className:\"flex-1 min-w-0\",children:[h.jsx(\"p\",{className:\"text-xs font-semibold text-slate-700 truncate\",children:Ye.action}),h.jsx(\"p\",{className:\"text-[9px] text-slate-400\",children:Ye.freq})]}),h.jsxs(\"span\",{className:\"text-xs font-bold text-[#ff6b57] bg-[#ff6b57]/10 px-2 py-0.5 rounded-full\",children:[\"+\",Ye.xp]})]},Ye.action))})]}),h.jsxs(\"div\",{className:\"space-y-2\",children:[h.jsxs(\"h4\",{className:\"text-xs font-semibold text-slate-600 dark:text-slate-300 flex items-center gap-1.5\",children:[h.jsx(wU,{size:12}),\"Recent Activity\"]}),K.length===0?h.jsxs(\"div\",{className:\"text-center py-8 text-slate-400 bg-slate-50 dark:bg-slate-800 rounded-lg border border-slate-200 dark:border-slate-700\",children:[h.jsx(Ml,{size:28,className:\"mx-auto mb-2 opacity-40\"}),h.jsx(\"p\",{className:\"text-xs font-medium\",children:\"No XP activity yet\"}),h.jsx(\"p\",{className:\"text-[10px] mt-1\",children:\"Complete actions above to start earning!\"})]}):K.slice(0,5).map((Ye,Ze)=>h.jsxs(pe.div,{className:\"flex items-center gap-2.5 p-2.5 bg-white dark:bg-slate-800 rounded-lg border border-slate-200 dark:border-slate-700\",initial:{x:-15,opacity:0},animate:{x:0,opacity:1},transition:{delay:.2+Ze*.04},children:[h.jsx(\"div\",{className:`w-8 h-8 rounded-lg flex items-center justify-center ${Ye.type===\"bonus\"?\"bg-[#ff6b57]/10 border border-[#ff6b57]/20\":\"bg-blue-50 dark:bg-blue-900/30 border border-blue-200 dark:border-blue-800\"}`,children:Ye.type===\"bonus\"?h.jsx(El,{size:14,className:\"text-[#ff6b57]\"}):h.jsx(Os,{size:14,className:\"text-blue-600 dark:text-blue-400\"})}),h.jsxs(\"div\",{className:\"flex-1 min-w-0\",children:[h.jsx(\"p\",{className:\"text-sm font-semibold text-slate-800 dark:text-white truncate\",children:Ye.description}),h.jsx(\"p\",{className:\"text-[10px] text-slate-500 dark:text-slate-400\",children:new Date(Ye.timestamp).toLocaleDateString(\"en-US\",{month:\"short\",day:\"numeric\"})})]}),h.jsxs(\"span\",{className:`text-sm font-bold ${Ye.type===\"bonus\"?\"text-[#ff6b57]\":\"text-blue-600 dark:text-blue-400\"}`,children:[\"+\",Ye.amount,\" XP\"]})]},Ye.id))]}),K.length>5&&h.jsxs(pe.button,{className:\"w-full py-2.5 mt-2 text-sm font-medium text-[#ff6b57] bg-[#ff6b57]/10 hover:bg-[#ff6b57]/20 rounded-xl transition-colors flex items-center justify-center gap-2\",onClick:()=>E(\"wallet-history\"),whileTap:{scale:.98},children:[\"View All Activity\",h.jsx(xd,{size:14})]})]})})()},\"wallet\"),b===\"play\"&&h.jsx(CB,{games:Pe,selectedGame:ye,onSelectGame:be,onCreateGame:()=>{}})]}),h.jsx(\"div\",{className:\"h-4\"})]}),h.jsx(bB,{}),h.jsx(NB,{}),h.jsx(YB,{}),h.jsx(JB,{}),h.jsx(PB,{}),h.jsx(XB,{}),h.jsx(_B,{isOpen:O===\"player-profile\",onClose:B})]})]})})},$B=[{label:\"My Status\",query:\"How am I doing?\"},{label:\"Leaderboard\",query:\"Show leaderboard\"},{label:\"My Quests\",query:\"Check my quests\"},{label:\"Badges\",query:\"Show my badges\"}],tC=()=>{const{isChatOpen:i,toggleChat:o,messages:u,addMessage:p,user:A,quests:U,leaderboardEntries:m,badges:y}=Pr(),[K,F]=Q.useState(\"\"),[R,b]=Q.useState(!1),N=Q.useRef(null);Q.useEffect(()=>{N.current&&(N.current.scrollTop=N.current.scrollHeight)},[u,i,R]);const E=B=>{var W;const L=B.toLowerCase();let q=\"I'm not sure about that. Try asking about your status, quests, or leaderboard rank.\";if(L.includes(\"status\")||L.includes(\"doing\")||L.includes(\"progress\"))q=`You're doing great! You are **Level ${A==null?void 0:A.level}** with **${A==null?void 0:A.exp} XP**. Your composite score is **${A==null?void 0:A.compositeScore}** (top 10%!).`;else if(L.includes(\"quest\")||L.includes(\"goal\")){const Y=U.filter(P=>P.status!==\"completed\");if(Y.length>0){const P=Y[0];q=`You have **${Y.length} active quests**. Your top quest \"${P.title||P.type}\" is **${P.progressPct}% complete**. Keep it up!`}else q=\"You have no active quests right now. Great time to start a new one!\"}else if(L.includes(\"leaderboard\")||L.includes(\"rank\"))q=`You are currently **Rank #${((W=m.find(P=>P.isCurrentUser))==null?void 0:W.rank)||(A==null?void 0:A.level)}** on the Season Leaderboard. You're just behind the next player by a few points!`;else if(L.includes(\"badge\")){const Y=y.filter(te=>te.unlocked).length,P=y.find(te=>te.newlyEarned)||y.filter(te=>te.unlocked)[0];q=`You've unlocked **${Y} badges** so far. Your latest achievement is **\"${(P==null?void 0:P.name)||\"First Win\"}\"**!`}else(L.includes(\"hello\")||L.includes(\"hi\"))&&(q=\"Hello! I'm your Playbasis Assistant. How can I help you win today?\");return q},O=B=>{const L=B||K;L.trim()&&(p({id:Date.now().toString(),role:\"user\",content:L,timestamp:Date.now()}),F(\"\"),b(!0),setTimeout(()=>{const q=E(L);b(!1),p({id:(Date.now()+1).toString(),role:\"assistant\",content:q,timestamp:Date.now()})},1500))};return h.jsx(cd,{children:i&&h.jsxs(pe.div,{className:\"fixed inset-0 z-[300] flex items-end sm:items-center justify-center pointer-events-none\",initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},children:[h.jsx(\"div\",{className:\"absolute inset-0 bg-black/20 pointer-events-auto\",onClick:o}),h.jsxs(pe.div,{className:\"relative w-full max-w-md h-[600px] max-h-[90vh] bg-white dark:bg-slate-900 rounded-t-2xl sm:rounded-2xl shadow-2xl overflow-hidden pointer-events-auto flex flex-col border border-slate-200 dark:border-slate-800\",initial:{y:\"100%\"},animate:{y:0},exit:{y:\"100%\"},transition:{type:\"spring\",damping:25,stiffness:300},children:[h.jsxs(\"div\",{className:\"p-4 border-b border-slate-100 dark:border-slate-800 flex justify-between items-center bg-slate-50 dark:bg-slate-900\",children:[h.jsxs(\"div\",{className:\"flex items-center gap-3\",children:[h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(\"div\",{className:\"w-10 h-10 rounded-full bg-gradient-to-br from-[#ff6b57] to-[#ff8a6a] flex items-center justify-center text-white shadow-lg\",children:h.jsx(vT,{size:20})}),h.jsx(\"div\",{className:\"absolute -bottom-0.5 -right-0.5 w-3 h-3 bg-green-500 border-2 border-white dark:border-slate-900 rounded-full\"})]}),h.jsxs(\"div\",{children:[h.jsx(\"h3\",{className:\"font-bold text-slate-900 dark:text-white text-sm\",children:\"Playbasis Assistant\"}),h.jsxs(\"p\",{className:\"text-xs text-slate-500 dark:text-slate-400 flex items-center gap-1\",children:[h.jsx(El,{size:10,className:\"text-amber-400\"}),\"Demo Assistant\"]})]})]}),h.jsx(\"button\",{onClick:o,className:\"p-2 hover:bg-slate-200 dark:hover:bg-slate-800 rounded-full transition-colors\",children:h.jsx(Ah,{size:20,className:\"text-slate-600 dark:text-slate-300\"})})]}),h.jsxs(\"div\",{className:\"flex-1 overflow-y-auto p-4 space-y-4 bg-slate-50/50 dark:bg-slate-900/50\",ref:N,children:[u.length===0&&h.jsxs(\"div\",{className:\"flex flex-col items-center justify-center h-full text-center p-6 opacity-60\",children:[h.jsx(\"div\",{className:\"w-16 h-16 bg-[#ff6b57]/10 dark:bg-[#ff6b57]/20 rounded-full flex items-center justify-center mb-4\",children:h.jsx(vT,{size:32,className:\"text-[#ff6b57]\"})}),h.jsx(\"h4\",{className:\"font-semibold text-slate-900 dark:text-white mb-2\",children:\"How can I help?\"}),h.jsx(\"p\",{className:\"text-sm text-slate-500\",children:\"Ask about your progress, quests, rewards, or leaderboard status.\"})]}),u.map(B=>h.jsx(pe.div,{initial:{opacity:0,y:10},animate:{opacity:1,y:0},className:`flex ${B.role===\"user\"?\"justify-end\":\"justify-start\"}`,children:h.jsx(\"div\",{className:`max-w-[85%] p-3.5 rounded-2xl text-sm leading-relaxed shadow-sm ${B.role===\"user\"?\"bg-[#ff6b57] text-white rounded-br-none\":\"bg-white dark:bg-slate-800 border border-slate-100 dark:border-slate-700 text-slate-800 dark:text-slate-200 rounded-bl-none\"}`,children:B.content.split(\"**\").map((L,q)=>q%2===1?h.jsx(\"strong\",{children:L},q):L)})},B.id)),R&&h.jsx(pe.div,{initial:{opacity:0,y:10},animate:{opacity:1,y:0},className:\"flex justify-start\",children:h.jsxs(\"div\",{className:\"bg-white dark:bg-slate-800 border border-slate-100 dark:border-slate-700 rounded-2xl rounded-bl-none p-4 shadow-sm flex gap-1.5\",children:[h.jsx(pe.div,{className:\"w-2 h-2 bg-slate-400 rounded-full\",animate:{y:[0,-5,0]},transition:{duration:.6,repeat:1/0,delay:0}}),h.jsx(pe.div,{className:\"w-2 h-2 bg-slate-400 rounded-full\",animate:{y:[0,-5,0]},transition:{duration:.6,repeat:1/0,delay:.2}}),h.jsx(pe.div,{className:\"w-2 h-2 bg-slate-400 rounded-full\",animate:{y:[0,-5,0]},transition:{duration:.6,repeat:1/0,delay:.4}})]})})]}),h.jsx(\"div\",{className:\"px-4 pb-2 bg-slate-50/50 dark:bg-slate-900/50 overflow-x-auto flex gap-2 hide-scrollbar\",children:$B.map(B=>h.jsxs(\"button\",{onClick:()=>O(B.query),className:\"whitespace-nowrap px-3 py-1.5 bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-full text-xs font-medium text-slate-600 dark:text-slate-300 hover:bg-[#ff6b57]/10 dark:hover:bg-[#ff6b57]/20 hover:border-[#ff6b57]/30 dark:hover:border-[#ff6b57]/30 transition-colors flex items-center gap-1\",children:[B.label,h.jsx(xd,{size:10,className:\"opacity-50\"})]},B.label))}),h.jsx(\"div\",{className:\"p-4 border-t border-slate-100 dark:border-slate-800 bg-white dark:bg-slate-900\",children:h.jsxs(\"div\",{className:\"flex gap-2\",children:[h.jsx(\"input\",{type:\"text\",value:K,onChange:B=>F(B.target.value),onKeyDown:B=>B.key===\"Enter\"&&O(),placeholder:\"Type a message...\",className:\"flex-1 bg-slate-100 dark:bg-slate-800 border-none rounded-full px-4 py-2.5 text-sm focus:ring-2 focus:ring-[#ff6b57] outline-none dark:text-white transition-shadow\"}),h.jsx(\"button\",{onClick:()=>O(),disabled:!K.trim(),className:\"p-2.5 bg-[#ff6b57] text-white rounded-full hover:bg-[#e55a48] disabled:opacity-50 disabled:cursor-not-allowed transition-all shadow-md hover:shadow-lg active:scale-95\",children:h.jsx(BM,{size:18})})]})})]})]})})},eQ=i=>[{rank:1,userId:\"u-alex\",displayName:\"Alex Champion\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Alex\",score:12450,delta:3},{rank:2,userId:\"u-jordan\",displayName:\"Jordan Elite\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Jordan\",score:11200,delta:-1},{rank:3,userId:\"u-sam\",displayName:\"Sam Striker\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Sam\",score:10850,delta:2},{rank:4,userId:i,displayName:\"You\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=You\",score:9500,delta:5,isCurrentUser:!0},{rank:5,userId:\"u-casey\",displayName:\"Casey Pro\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Casey\",score:9100,delta:0},{rank:6,userId:\"u-taylor\",displayName:\"Taylor Swift\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Taylor\",score:8900,delta:1},{rank:7,userId:\"u-morgan\",displayName:\"Morgan Legend\",avatarUrl:\"https://api.dicebear.com/7.x/avataaars/svg?seed=Morgan\",score:8750,delta:-2}],tQ=()=>[{id:\"b1\",name:\"First Win\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=FirstWin\",rarity:\"common\",unlocked:!0,earnedAt:\"2025-11-15T10:30:00Z\"},{id:\"b2\",name:\"Streak Master\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=StreakMaster\",rarity:\"rare\",unlocked:!0,newlyEarned:!0,earnedAt:\"2025-12-28T14:22:00Z\"},{id:\"b3\",name:\"Elite Player\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=ElitePlayer\",rarity:\"epic\",unlocked:!0,earnedAt:\"2025-12-01T09:00:00Z\"},{id:\"b4\",name:\"Legend\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=Legend\",rarity:\"legendary\",unlocked:!1},{id:\"b5\",name:\"Consistent\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=Consistent\",rarity:\"rare\",unlocked:!0,earnedAt:\"2025-10-20T16:45:00Z\"},{id:\"b6\",name:\"Champion\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=Champion\",rarity:\"epic\",unlocked:!1},{id:\"b7\",name:\"Early Bird\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=EarlyBird\",rarity:\"common\",unlocked:!0,earnedAt:\"2025-09-01T06:00:00Z\"},{id:\"b8\",name:\"Night Owl\",imageUrl:\"https://api.dicebear.com/7.x/shapes/svg?seed=NightOwl\",rarity:\"rare\",unlocked:!1}],nQ=()=>[{questId:\"q1\",title:\"Financial Champion\",description:\"Earn points by making smart financial decisions.\",type:\"financial\",target:1e3,current:750,progressPct:75,startDate:\"2025-01-01\",endDate:\"2025-12-31\",status:\"active\",steps:[{id:\"s1\",label:\"Link your bank account\",description:\"Connect your main account to track spending.\",eventType:\"account.linked\",completed:!0},{id:\"s2\",label:\"Set a savings goal\",description:\"Create a savings goal of at least $500.\",eventType:\"goal.created\",completed:!0},{id:\"s3\",label:\"Save $1,000 total\",description:\"Reach your first major savings milestone.\",eventType:\"savings.milestone\",targetCount:1e3,currentCount:750,completed:!1}]},{questId:\"q2\",title:\"Daily Habit Tracker\",description:\"Build a consistent streak of checking your finances.\",type:\"habit\",target:30,current:12,progressPct:40,startDate:\"2025-12-01\",endDate:\"2025-12-31\",status:\"active\",steps:[{id:\"s1\",label:\"Log in daily\",description:\"Check the app every day.\",eventType:\"auth.login\",targetCount:30,currentCount:12,completed:!1}]},{questId:\"q3\",title:\"High Performance\",description:\"Complete all performance challenges for the month.\",type:\"performance\",target:500,current:500,progressPct:100,startDate:\"2025-11-01\",endDate:\"2025-11-30\",status:\"completed\",steps:[{id:\"s1\",label:\"Complete 5 challenges\",description:\"Finish 5 weekly challenges.\",eventType:\"challenge.completed\",targetCount:5,currentCount:5,completed:!0},{id:\"s2\",label:\"Reach top 10% leaderboard\",description:\"Finish the month in the top tier.\",eventType:\"leaderboard.rank\",completed:!0}]}],aQ=(i=12)=>{const o=[];for(let u=0;u<i*7;u++){const p=new Date;p.setDate(p.getDate()-u);const A=p.getDay(),U=A===0||A===6?4:2,m=Math.floor(Math.random()*5);o.push({date:p.toISOString().split(\"T\")[0],count:Math.max(0,U+m-2)})}return o},rQ=()=>[{id:\"n1\",type:\"badge\",message:\"\uD83C\uDF96\uFE0F New badge earned: Streak Master!\",timestamp:Date.now()-36e5,read:!1},{id:\"n2\",type:\"level_up\",message:\"\uD83C\uDF89 You reached Level 5!\",timestamp:Date.now()-864e5,read:!0},{id:\"n3\",type:\"leaderboard\",message:\"\uD83D\uDCC8 You moved up 5 spots on the leaderboard!\",timestamp:Date.now()-1728e5,read:!0},{id:\"n4\",type:\"quest\",message:'\uD83C\uDFAF Quest \"Financial\" is 75% complete!',timestamp:Date.now()-2592e5,read:!1}],iQ=()=>[{id:\"t1\",type:\"earn\",amount:100,description:\"Daily login bonus\",timestamp:Date.now()-36e5},{id:\"t2\",type:\"earn\",amount:250,description:\"Challenge completed: Weekly Sprint\",timestamp:Date.now()-864e5},{id:\"t3\",type:\"bonus\",amount:500,description:\"Level up reward!\",timestamp:Date.now()-1728e5},{id:\"t4\",type:\"spend\",amount:200,description:\"Purchased: Premium Badge\",timestamp:Date.now()-2592e5},{id:\"t5\",type:\"earn\",amount:75,description:\"Referral bonus\",timestamp:Date.now()-3456e5},{id:\"t6\",type:\"spend\",amount:150,description:\"Purchased: Custom Theme\",timestamp:Date.now()-432e6},{id:\"t7\",type:\"earn\",amount:300,description:\"Goal milestone reached\",timestamp:Date.now()-5184e5},{id:\"t8\",type:\"bonus\",amount:100,description:\"Streak bonus (7 days)\",timestamp:Date.now()-6048e5}],HU=({config:i})=>{const{setUser:o,setWallet:u,setQuests:p,setTheme:A,setBadges:U,setActivities:m,setNotifications:y,setLeaderboardEntries:K,setTransactions:F,setApiConfig:R}=Pr(),b=Pr(q=>q.theme),[N,E]=Q.useState(!1),[O,B]=Q.useState(null);Q.useEffect(()=>{var te,me,ye,be,Pe,ut,gt,Ce,qe,dt;if(i.themeName&&A(i.themeName),R(null),i.bootstrap){const ke=i.bootstrap;ke.user&&o(ke.user),ke.wallet&&u(ke.wallet),ke.badges&&U(ke.badges),ke.activities&&m(ke.activities),ke.quests&&p(ke.quests),ke.notifications&&y(ke.notifications),ke.leaderboardEntries&&K(ke.leaderboardEntries),ke.transactions&&F(ke.transactions);return}if(((te=i.api)==null?void 0:te.playerId)===Ai.id||i.userId===Ai.id||((me=i.api)==null?void 0:me.useNongPo)===!0||!((ye=i.api)!=null&&ye.baseUrl)&&!i.demo){const ke=XT();o(ke.user),u(ke.wallet),U(ke.badges),m(ke.activities),p(ke.quests),y(ke.notifications),K(ke.leaderboardEntries),F(ke.transactions),process.env.NODE_ENV===\"development\"&&console.log(\"[Playbasis Widget] Loaded NONG PO - the perfect player! \uD83C\uDFC6\");return}const Y=((be=i.api)==null?void 0:be.useSandbox)||((Pe=i.playerId)==null?void 0:Pe.startsWith(\"synthetic-\"))?{baseUrl:((ut=i.api)==null?void 0:ut.baseUrl)||Uh.baseUrl,tenantId:((gt=i.api)==null?void 0:gt.tenantId)||Uh.tenantId,subscriptionKey:(Ce=i.api)==null?void 0:Ce.subscriptionKey,playerId:((qe=i.api)==null?void 0:qe.playerId)||i.playerId||Uh.samplePlayerIds[0]}:(dt=i.api)!=null&&dt.baseUrl?{baseUrl:i.api.baseUrl,tenantId:i.api.tenantId||\"default\",subscriptionKey:i.api.subscriptionKey,playerId:i.api.playerId||i.userId}:null;Y?(E(!0),B(null),R(Y),console.log(\"[Debug] WidgetMount apiConfig:\",Y),Promise.all([LB(Y),OB(Y).catch(()=>null)]).then(([ke,pt])=>{var de;const Ke=IB(ke,(de=pt==null?void 0:pt.points)==null?void 0:de.leaderboard);o(Ke.user),u(Ke.wallet),U(Ke.badges),m(Ke.activities),p(Ke.quests),y(Ke.notifications),K(Ke.leaderboardEntries),F(Ke.transactions),process.env.NODE_ENV===\"development\"&&console.log(\"[Playbasis Widget] Loaded player data:\",Y.playerId)}).catch(ke=>{console.error(\"[Playbasis Widget] Failed to fetch player data:\",ke),B(ke.message),P()}).finally(()=>{E(!1)})):P();function P(){var ke,pt,Ke,de,ee,fe,j,le,$e,Ve,nt,Ye,Ze,Kt,Ct,Wt,Rn,ma,yn,Zn,Dn,jn,ya,Nr,ja,qn,Kn,Ln,la,dr,kn,sa,La,pr,wr,Re,ze;o({userId:(Ke=(pt=(ke=i.demo)==null?void 0:ke.user)==null?void 0:pt.userId)!=null?Ke:i.userId,level:(fe=(ee=(de=i.demo)==null?void 0:de.user)==null?void 0:ee.level)!=null?fe:5,exp:($e=(le=(j=i.demo)==null?void 0:j.user)==null?void 0:le.exp)!=null?$e:2450,compositeScore:(Ye=(nt=(Ve=i.demo)==null?void 0:Ve.user)==null?void 0:nt.compositeScore)!=null?Ye:82,positiveChangePct:(Ct=(Kt=(Ze=i.demo)==null?void 0:Ze.user)==null?void 0:Kt.positiveChangePct)!=null?Ct:12}),u({currency:(ma=(Rn=(Wt=i.demo)==null?void 0:Wt.wallet)==null?void 0:Rn.currency)!=null?ma:\"PTS\",balance:(Dn=(Zn=(yn=i.demo)==null?void 0:yn.wallet)==null?void 0:Zn.balance)!=null?Dn:1500,earnedDelta:(Nr=(ya=(jn=i.demo)==null?void 0:jn.wallet)==null?void 0:ya.earnedDelta)!=null?Nr:250}),p((qn=(ja=i.demo)==null?void 0:ja.quests)!=null?qn:nQ()),U((Ln=(Kn=i.demo)==null?void 0:Kn.badges)!=null?Ln:tQ()),m((dr=(la=i.demo)==null?void 0:la.activities)!=null?dr:aQ(12)),y((sa=(kn=i.demo)==null?void 0:kn.notifications)!=null?sa:rQ()),K((ze=(La=i.demo)==null?void 0:La.leaderboard)!=null?ze:eQ((Re=(wr=(pr=i.demo)==null?void 0:pr.user)==null?void 0:wr.userId)!=null?Re:i.userId)),F(iQ())}},[i,p,A,o,u,U,m,y,K,F]);const L=b?`theme-${b}`:\"\";return h.jsxs(\"div\",{className:`playbasis-widget-root font-sans antialiased ${L}`,children:[N&&h.jsx(\"div\",{className:\"fixed inset-0 bg-black/50 flex items-center justify-center z-50\",children:h.jsxs(\"div\",{className:\"bg-white dark:bg-gray-800 rounded-xl p-6 shadow-2xl\",children:[h.jsx(\"div\",{className:\"animate-spin rounded-full h-8 w-8 border-4 border-[#ff6b57] border-t-transparent mx-auto\"}),h.jsx(\"p\",{className:\"mt-3 text-sm text-gray-600 dark:text-gray-300\",children:\"Loading player data...\"})]})}),O&&h.jsxs(\"div\",{className:\"fixed top-4 right-4 bg-red-500 text-white px-4 py-2 rounded-lg shadow-lg z-50 text-sm\",children:[\"\u26A0\uFE0F \",O]}),typeof document!=\"undefined\"&&xx.createPortal(h.jsx(\"div\",{className:`playbasis-widget-root font-sans antialiased ${L} pointer-events-none`,children:h.jsx(\"div\",{className:\"pointer-events-auto\",children:h.jsx(BT,{})})}),document.body),h.jsx(eC,{}),h.jsx(tC,{})]})};class oQ{constructor(){Es(this,\"patterns\",{NAVIGATE:[/show.*(leaderboard|rank|top|scores)/i,/check.*(leaderboard|rank)/i,/start.*challenge/i,/show.*(quests|missions|goals|challenges)/i,/check.*(quests|missions|goals)/i,/show.*(badges|awards|achievements|medals)/i,/check.*(badges|awards|achievements)/i,/show.*(wallet|balance|points|coins|rewards)/i,/check.*(wallet|balance|points|coins)/i],QUERY_STATUS:[/how am i doing/i,/my status/i,/my progress/i,/check my status/i,/check my progress/i,/what.*level/i,/how many.*xp/i],CREATE_QUEST:[/create.*(quest|mission|goal|challenge)/i,/new.*(quest|mission|goal|challenge)/i,/start.*(quest|mission|goal|challenge)/i,/design.*(quest|mission|goal|challenge)/i,/add.*(quest|mission|goal|challenge)/i,/i want to save/i,/help me save/i],CODEX_TASK:[/create.*(plan|schedule|strategy)/i,/write.*(code|script|function)/i,/how to.*(implement|build|code)/i,/generate.*(plan|report|analysis)/i],GENERAL_CHAT:[],UNKNOWN:[]})}detectIntent(o){const u=o.toLowerCase();if(this.matchesAny(u,this.patterns.NAVIGATE)){let p=\"overview\";return u.match(/(leaderboard|rank|top|scores)/)?p=\"leaderboard\":u.match(/(quests|missions|goals|challenges)/)?p=\"quests\":u.match(/(badges|awards|achievements)/)?p=\"badges\":u.match(/(wallet|balance|points|coins)/)&&(p=\"wallet\"),{type:\"NAVIGATE\",confidence:.95,handler:\"LOCAL\",preferredModel:\"local\",entities:{target:p},originalQuery:o}}return this.matchesAny(u,this.patterns.QUERY_STATUS)?{type:\"QUERY_STATUS\",confidence:.9,handler:\"API\",preferredModel:\"mini\",originalQuery:o}:this.matchesAny(u,this.patterns.CREATE_QUEST)?{type:\"CREATE_QUEST\",confidence:.85,handler:\"HYBRID\",preferredModel:\"spec\",originalQuery:o}:this.matchesAny(u,this.patterns.CODEX_TASK)?{type:\"GENERAL_CHAT\",confidence:.8,handler:\"API\",preferredModel:\"codex\",originalQuery:o}:{type:\"GENERAL_CHAT\",confidence:.5,handler:\"API\",preferredModel:\"mini\",originalQuery:o}}getLocalResponse(o,u,p){var U;const A={agentId:u,threadId:p,message:\"\",actions:[],suggestions:[]};switch(o.type){case\"NAVIGATE\":{const m=((U=o.entities)==null?void 0:U.target)||\"overview\";let K=`Taking you to your ${m.charAt(0).toUpperCase()+m.slice(1)}...`;return m===\"leaderboard\"&&(K=\"Here's the current leaderboard! \uD83C\uDFC6\"),m===\"quests\"&&(K=\"Here are your active quests. Good luck! \u2694\uFE0F\"),m===\"badges\"&&(K=\"Let's admire your collection! \u2728\"),m===\"wallet\"&&(K=\"Checking your vault... \uD83D\uDCB0\"),it(ve({},A),{message:K,actions:[{type:\"NAVIGATE\",actionType:`SHOW_${m.toUpperCase()}`,status:\"EXECUTED\",details:{target:m}}],suggestions:[\"Check my status\",\"Create a new quest\"]})}case\"QUERY_STATUS\":return it(ve({},A),{message:`Here's your status check:\n\n\u2022 **Active Quests**: 3 in progress\n\u2022 **Recent Badges**: Earned 'Early Adopter'\n\u2022 **XP Earned Today**: 150 XP\n\nYou're on track to reach the next Level by Friday!`,actions:[{type:\"NAVIGATE\",actionType:\"SHOW_QUESTS\",status:\"EXECUTED\",details:{target:\"quests\"}}],suggestions:[\"Show me my quests\",\"What is my next reward?\"]});case\"CREATE_QUEST\":{const m=`demo-quest-${Date.now()}`;return it(ve({},A),{message:`\u2728 **Quest Created!** (Demo Mode)\n\nI've designed a simple savings quest for you:\n\n\uD83C\uDFAF **New Savings Goal**\n\u2022 Target: Save 500 points\n\u2022 Reward: \"Saver\" Badge\n\n\uD83D\uDCA1 *This is a demo quest. Connect to your backend for persistent data.*`,actions:[{type:\"CREATE_QUEST\",actionType:\"QUEST_CREATED\",status:\"EXECUTED\",details:{questId:m,quest:{questId:m,title:\"New Savings Goal\",description:\"Save 500 points this week\",target:500,current:0,progressPct:0,type:\"financial\",status:\"active\",rewards:{xp:1e3,badges:[\"saver-novice\"]}}}},{type:\"NAVIGATE\",actionType:\"SHOW_QUESTS\",status:\"EXECUTED\",details:{target:\"quests\"}}],suggestions:[\"Modify this quest\",\"Show my quests\"]})}default:return it(ve({},A),{message:`I'm running in **Demo Mode** right now! I can help you navigate the app and explore features.\n\nTry asking to **Show Leaderboard**, **Check Quests**, or **View Wallet**.`,suggestions:[\"Show Leaderboard\",\"Check Quests\",\"Check My Status\"]})}}matchesAny(o,u){return u.some(p=>p.test(o))}}const nC=\"https://api.playbasis.com/v1\";class lQ{constructor(o){Es(this,\"baseUrl\");Es(this,\"tenantId\");Es(this,\"playerId\");Es(this,\"apiKey\");Es(this,\"router\");this.baseUrl=o.baseUrl||nC,this.tenantId=o.tenantId,this.playerId=o.playerId,this.apiKey=o.apiKey,this.router=new oQ}get headers(){const o={\"Content-Type\":\"application/json\",\"X-Tenant-ID\":this.tenantId,\"X-Player-ID\":this.playerId};return this.apiKey&&(o[\"X-Admin-API-Key\"]=this.apiKey),o}chat(o,u){return Ms(this,null,function*(){const p=this.router.detectIntent(o);return console.log(\"[PlaybasisClient] Detected local intent:\",p),p.handler===\"LOCAL\"||p.handler===\"HYBRID\"?this.router.getLocalResponse(p,\"local-agent\",\"local-thread\"):this.router.getLocalResponse(p,\"demo-agent\",\"demo-thread\")})}getBaseUrl(){return this.baseUrl}getTenantId(){return this.tenantId}getPlayerId(){return this.playerId}verifyTenantConnection(){return Ms(this,null,function*(){try{const o=`${this.baseUrl}/players/${this.playerId}`,u=yield fetch(o,{method:\"GET\",headers:this.headers});return u.ok?{valid:!0}:u.status===401||u.status===403?{valid:!1,message:\"Unauthorized: Invalid Tenant ID or API Key.\"}:u.status===404?{valid:!1,message:\"Player not found in this tenant.\"}:{valid:!1,message:`Connection failed: ${u.status} ${u.statusText}`}}catch(o){return{valid:!1,message:`Network error: ${o instanceof Error?o.message:\"Unknown error\"}`}}})}}function aC(i){var o,u,p=\"\";if(typeof i==\"string\"||typeof i==\"number\")p+=i;else if(typeof i==\"object\")if(Array.isArray(i)){var A=i.length;for(o=0;o<A;o++)i[o]&&(u=aC(i[o]))&&(p&&(p+=\" \"),p+=u)}else for(u in i)i[u]&&(p&&(p+=\" \"),p+=u);return p}function sQ(){for(var i,o,u=0,p=\"\",A=arguments.length;u<A;u++)(i=arguments[u])&&(o=aC(i))&&(p&&(p+=\" \"),p+=o);return p}const PU=\"-\",uQ=i=>{const o=dQ(i),{conflictingClassGroups:u,conflictingClassGroupModifiers:p}=i;return{getClassGroupId:m=>{const y=m.split(PU);return y[0]===\"\"&&y.length!==1&&y.shift(),rC(y,o)||cQ(m)},getConflictingClassGroupIds:(m,y)=>{const K=u[m]||[];return y&&p[m]?[...K,...p[m]]:K}}},rC=(i,o)=>{var m;if(i.length===0)return o.classGroupId;const u=i[0],p=o.nextPart.get(u),A=p?rC(i.slice(1),p):void 0;if(A)return A;if(o.validators.length===0)return;const U=i.join(PU);return(m=o.validators.find(({validator:y})=>y(U)))==null?void 0:m.classGroupId},iC=/^\\[(.+)\\]$/,cQ=i=>{if(iC.test(i)){const o=iC.exec(i)[1],u=o==null?void 0:o.substring(0,o.indexOf(\":\"));if(u)return\"arbitrary..\"+u}},dQ=i=>{const{theme:o,prefix:u}=i,p={nextPart:new Map,validators:[]};return fQ(Object.entries(i.classGroups),u).forEach(([U,m])=>{ZU(m,p,U,o)}),p},ZU=(i,o,u,p)=>{i.forEach(A=>{if(typeof A==\"string\"){const U=A===\"\"?o:oC(o,A);U.classGroupId=u;return}if(typeof A==\"function\"){if(pQ(A)){ZU(A(p),o,u,p);return}o.validators.push({validator:A,classGroupId:u});return}Object.entries(A).forEach(([U,m])=>{ZU(m,oC(o,U),u,p)})})},oC=(i,o)=>{let u=i;return o.split(PU).forEach(p=>{u.nextPart.has(p)||u.nextPart.set(p,{nextPart:new Map,validators:[]}),u=u.nextPart.get(p)}),u},pQ=i=>i.isThemeGetter,fQ=(i,o)=>o?i.map(([u,p])=>{const A=p.map(U=>typeof U==\"string\"?o+U:typeof U==\"object\"?Object.fromEntries(Object.entries(U).map(([m,y])=>[o+m,y])):U);return[u,A]}):i,mQ=i=>{if(i<1)return{get:()=>{},set:()=>{}};let o=0,u=new Map,p=new Map;const A=(U,m)=>{u.set(U,m),o++,o>i&&(o=0,p=u,u=new Map)};return{get(U){let m=u.get(U);if(m!==void 0)return m;if((m=p.get(U))!==void 0)return A(U,m),m},set(U,m){u.has(U)?u.set(U,m):A(U,m)}}},lC=\"!\",hQ=i=>{const{separator:o,experimentalParseClassName:u}=i,p=o.length===1,A=o[0],U=o.length,m=y=>{const K=[];let F=0,R=0,b;for(let L=0;L<y.length;L++){let q=y[L];if(F===0){if(q===A&&(p||y.slice(L,L+U)===o)){K.push(y.slice(R,L)),R=L+U;continue}if(q===\"/\"){b=L;continue}}q===\"[\"?F++:q===\"]\"&&F--}const N=K.length===0?y:y.substring(R),E=N.startsWith(lC),O=E?N.substring(1):N,B=b&&b>R?b-R:void 0;return{modifiers:K,hasImportantModifier:E,baseClassName:O,maybePostfixModifierPosition:B}};return u?y=>u({className:y,parseClassName:m}):m},AQ=i=>{if(i.length<=1)return i;const o=[];let u=[];return i.forEach(p=>{p[0]===\"[\"?(o.push(...u.sort(),p),u=[]):u.push(p)}),o.push(...u.sort()),o},gQ=i=>ve({cache:mQ(i.cacheSize),parseClassName:hQ(i)},uQ(i)),vQ=/\\s+/,UQ=(i,o)=>{const{parseClassName:u,getClassGroupId:p,getConflictingClassGroupIds:A}=o,U=[],m=i.trim().split(vQ);let y=\"\";for(let K=m.length-1;K>=0;K-=1){const F=m[K],{modifiers:R,hasImportantModifier:b,baseClassName:N,maybePostfixModifierPosition:E}=u(F);let O=!!E,B=p(O?N.substring(0,E):N);if(!B){if(!O){y=F+(y.length>0?\" \"+y:y);continue}if(B=p(N),!B){y=F+(y.length>0?\" \"+y:y);continue}O=!1}const L=AQ(R).join(\":\"),q=b?L+lC:L,W=q+B;if(U.includes(W))continue;U.push(W);const Y=A(B,O);for(let P=0;P<Y.length;++P){const te=Y[P];U.push(q+te)}y=F+(y.length>0?\" \"+y:y)}return y};function SQ(){let i=0,o,u,p=\"\";for(;i<arguments.length;)(o=arguments[i++])&&(u=sC(o))&&(p&&(p+=\" \"),p+=u);return p}const sC=i=>{if(typeof i==\"string\")return i;let o,u=\"\";for(let p=0;p<i.length;p++)i[p]&&(o=sC(i[p]))&&(u&&(u+=\" \"),u+=o);return u};function yQ(i,...o){let u,p,A,U=m;function m(K){const F=o.reduce((R,b)=>b(R),i());return u=gQ(F),p=u.cache.get,A=u.cache.set,U=y,y(K)}function y(K){const F=p(K);if(F)return F;const R=UQ(K,u);return A(K,R),R}return function(){return U(SQ.apply(null,arguments))}}const bn=i=>{const o=u=>u[i]||[];return o.isThemeGetter=!0,o},uC=/^\\[(?:([a-z-]+):)?(.+)\\]$/i,KQ=/^\\d+\\/\\d+$/,xQ=new Set([\"px\",\"full\",\"screen\"]),FQ=/^(\\d+(\\.\\d+)?)?(xs|sm|md|lg|xl)$/,TQ=/\\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\\b(calc|min|max|clamp)\\(.+\\)|^0$/,CQ=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\\(.+\\)$/,bQ=/^(inset_)?-?((\\d+)?\\.?(\\d+)[a-z]+|0)_-?((\\d+)?\\.?(\\d+)[a-z]+|0)/,RQ=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\\(.+\\)$/,jl=i=>bd(i)||xQ.has(i)||KQ.test(i),Is=i=>Rd(i,\"length\",DQ),bd=i=>!!i&&!Number.isNaN(Number(i)),XU=i=>Rd(i,\"number\",bd),jf=i=>!!i&&Number.isInteger(Number(i)),kQ=i=>i.endsWith(\"%\")&&bd(i.slice(0,-1)),Mt=i=>uC.test(i),qs=i=>FQ.test(i),NQ=new Set([\"length\",\"size\",\"percentage\"]),wQ=i=>Rd(i,NQ,cC),EQ=i=>Rd(i,\"position\",cC),MQ=new Set([\"image\",\"url\"]),BQ=i=>Rd(i,MQ,LQ),QQ=i=>Rd(i,\"\",jQ),Lf=()=>!0,Rd=(i,o,u)=>{const p=uC.exec(i);return p?p[1]?typeof o==\"string\"?p[1]===o:o.has(p[1]):u(p[2]):!1},DQ=i=>TQ.test(i)&&!CQ.test(i),cC=()=>!1,jQ=i=>bQ.test(i),LQ=i=>RQ.test(i),OQ=yQ(()=>{const i=bn(\"colors\"),o=bn(\"spacing\"),u=bn(\"blur\"),p=bn(\"brightness\"),A=bn(\"borderColor\"),U=bn(\"borderRadius\"),m=bn(\"borderSpacing\"),y=bn(\"borderWidth\"),K=bn(\"contrast\"),F=bn(\"grayscale\"),R=bn(\"hueRotate\"),b=bn(\"invert\"),N=bn(\"gap\"),E=bn(\"gradientColorStops\"),O=bn(\"gradientColorStopPositions\"),B=bn(\"inset\"),L=bn(\"margin\"),q=bn(\"opacity\"),W=bn(\"padding\"),Y=bn(\"saturate\"),P=bn(\"scale\"),te=bn(\"sepia\"),me=bn(\"skew\"),ye=bn(\"space\"),be=bn(\"translate\"),Pe=()=>[\"auto\",\"contain\",\"none\"],ut=()=>[\"auto\",\"hidden\",\"clip\",\"visible\",\"scroll\"],gt=()=>[\"auto\",Mt,o],Ce=()=>[Mt,o],qe=()=>[\"\",jl,Is],dt=()=>[\"auto\",bd,Mt],ke=()=>[\"bottom\",\"center\",\"left\",\"left-bottom\",\"left-top\",\"right\",\"right-bottom\",\"right-top\",\"top\"],pt=()=>[\"solid\",\"dashed\",\"dotted\",\"double\",\"none\"],Ke=()=>[\"normal\",\"multiply\",\"screen\",\"overlay\",\"darken\",\"lighten\",\"color-dodge\",\"color-burn\",\"hard-light\",\"soft-light\",\"difference\",\"exclusion\",\"hue\",\"saturation\",\"color\",\"luminosity\"],de=()=>[\"start\",\"end\",\"center\",\"between\",\"around\",\"evenly\",\"stretch\"],ee=()=>[\"\",\"0\",Mt],fe=()=>[\"auto\",\"avoid\",\"all\",\"avoid-page\",\"page\",\"left\",\"right\",\"column\"],j=()=>[bd,Mt];return{cacheSize:500,separator:\":\",theme:{colors:[Lf],spacing:[jl,Is],blur:[\"none\",\"\",qs,Mt],brightness:j(),borderColor:[i],borderRadius:[\"none\",\"\",\"full\",qs,Mt],borderSpacing:Ce(),borderWidth:qe(),contrast:j(),grayscale:ee(),hueRotate:j(),invert:ee(),gap:Ce(),gradientColorStops:[i],gradientColorStopPositions:[kQ,Is],inset:gt(),margin:gt(),opacity:j(),padding:Ce(),saturate:j(),scale:j(),sepia:ee(),skew:j(),space:Ce(),translate:Ce()},classGroups:{aspect:[{aspect:[\"auto\",\"square\",\"video\",Mt]}],container:[\"container\"],columns:[{columns:[qs]}],\"break-after\":[{\"break-after\":fe()}],\"break-before\":[{\"break-before\":fe()}],\"break-inside\":[{\"break-inside\":[\"auto\",\"avoid\",\"avoid-page\",\"avoid-column\"]}],\"box-decoration\":[{\"box-decoration\":[\"slice\",\"clone\"]}],box:[{box:[\"border\",\"content\"]}],display:[\"block\",\"inline-block\",\"inline\",\"flex\",\"inline-flex\",\"table\",\"inline-table\",\"table-caption\",\"table-cell\",\"table-column\",\"table-column-group\",\"table-footer-group\",\"table-header-group\",\"table-row-group\",\"table-row\",\"flow-root\",\"grid\",\"inline-grid\",\"contents\",\"list-item\",\"hidden\"],float:[{float:[\"right\",\"left\",\"none\",\"start\",\"end\"]}],clear:[{clear:[\"left\",\"right\",\"both\",\"none\",\"start\",\"end\"]}],isolation:[\"isolate\",\"isolation-auto\"],\"object-fit\":[{object:[\"contain\",\"cover\",\"fill\",\"none\",\"scale-down\"]}],\"object-position\":[{object:[...ke(),Mt]}],overflow:[{overflow:ut()}],\"overflow-x\":[{\"overflow-x\":ut()}],\"overflow-y\":[{\"overflow-y\":ut()}],overscroll:[{overscroll:Pe()}],\"overscroll-x\":[{\"overscroll-x\":Pe()}],\"overscroll-y\":[{\"overscroll-y\":Pe()}],position:[\"static\",\"fixed\",\"absolute\",\"relative\",\"sticky\"],inset:[{inset:[B]}],\"inset-x\":[{\"inset-x\":[B]}],\"inset-y\":[{\"inset-y\":[B]}],start:[{start:[B]}],end:[{end:[B]}],top:[{top:[B]}],right:[{right:[B]}],bottom:[{bottom:[B]}],left:[{left:[B]}],visibility:[\"visible\",\"invisible\",\"collapse\"],z:[{z:[\"auto\",jf,Mt]}],basis:[{basis:gt()}],\"flex-direction\":[{flex:[\"row\",\"row-reverse\",\"col\",\"col-reverse\"]}],\"flex-wrap\":[{flex:[\"wrap\",\"wrap-reverse\",\"nowrap\"]}],flex:[{flex:[\"1\",\"auto\",\"initial\",\"none\",Mt]}],grow:[{grow:ee()}],shrink:[{shrink:ee()}],order:[{order:[\"first\",\"last\",\"none\",jf,Mt]}],\"grid-cols\":[{\"grid-cols\":[Lf]}],\"col-start-end\":[{col:[\"auto\",{span:[\"full\",jf,Mt]},Mt]}],\"col-start\":[{\"col-start\":dt()}],\"col-end\":[{\"col-end\":dt()}],\"grid-rows\":[{\"grid-rows\":[Lf]}],\"row-start-end\":[{row:[\"auto\",{span:[jf,Mt]},Mt]}],\"row-start\":[{\"row-start\":dt()}],\"row-end\":[{\"row-end\":dt()}],\"grid-flow\":[{\"grid-flow\":[\"row\",\"col\",\"dense\",\"row-dense\",\"col-dense\"]}],\"auto-cols\":[{\"auto-cols\":[\"auto\",\"min\",\"max\",\"fr\",Mt]}],\"auto-rows\":[{\"auto-rows\":[\"auto\",\"min\",\"max\",\"fr\",Mt]}],gap:[{gap:[N]}],\"gap-x\":[{\"gap-x\":[N]}],\"gap-y\":[{\"gap-y\":[N]}],\"justify-content\":[{justify:[\"normal\",...de()]}],\"justify-items\":[{\"justify-items\":[\"start\",\"end\",\"center\",\"stretch\"]}],\"justify-self\":[{\"justify-self\":[\"auto\",\"start\",\"end\",\"center\",\"stretch\"]}],\"align-content\":[{content:[\"normal\",...de(),\"baseline\"]}],\"align-items\":[{items:[\"start\",\"end\",\"center\",\"baseline\",\"stretch\"]}],\"align-self\":[{self:[\"auto\",\"start\",\"end\",\"center\",\"stretch\",\"baseline\"]}],\"place-content\":[{\"place-content\":[...de(),\"baseline\"]}],\"place-items\":[{\"place-items\":[\"start\",\"end\",\"center\",\"baseline\",\"stretch\"]}],\"place-self\":[{\"place-self\":[\"auto\",\"start\",\"end\",\"center\",\"stretch\"]}],p:[{p:[W]}],px:[{px:[W]}],py:[{py:[W]}],ps:[{ps:[W]}],pe:[{pe:[W]}],pt:[{pt:[W]}],pr:[{pr:[W]}],pb:[{pb:[W]}],pl:[{pl:[W]}],m:[{m:[L]}],mx:[{mx:[L]}],my:[{my:[L]}],ms:[{ms:[L]}],me:[{me:[L]}],mt:[{mt:[L]}],mr:[{mr:[L]}],mb:[{mb:[L]}],ml:[{ml:[L]}],\"space-x\":[{\"space-x\":[ye]}],\"space-x-reverse\":[\"space-x-reverse\"],\"space-y\":[{\"space-y\":[ye]}],\"space-y-reverse\":[\"space-y-reverse\"],w:[{w:[\"auto\",\"min\",\"max\",\"fit\",\"svw\",\"lvw\",\"dvw\",Mt,o]}],\"min-w\":[{\"min-w\":[Mt,o,\"min\",\"max\",\"fit\"]}],\"max-w\":[{\"max-w\":[Mt,o,\"none\",\"full\",\"min\",\"max\",\"fit\",\"prose\",{screen:[qs]},qs]}],h:[{h:[Mt,o,\"auto\",\"min\",\"max\",\"fit\",\"svh\",\"lvh\",\"dvh\"]}],\"min-h\":[{\"min-h\":[Mt,o,\"min\",\"max\",\"fit\",\"svh\",\"lvh\",\"dvh\"]}],\"max-h\":[{\"max-h\":[Mt,o,\"min\",\"max\",\"fit\",\"svh\",\"lvh\",\"dvh\"]}],size:[{size:[Mt,o,\"auto\",\"min\",\"max\",\"fit\"]}],\"font-size\":[{text:[\"base\",qs,Is]}],\"font-smoothing\":[\"antialiased\",\"subpixel-antialiased\"],\"font-style\":[\"italic\",\"not-italic\"],\"font-weight\":[{font:[\"thin\",\"extralight\",\"light\",\"normal\",\"medium\",\"semibold\",\"bold\",\"extrabold\",\"black\",XU]}],\"font-family\":[{font:[Lf]}],\"fvn-normal\":[\"normal-nums\"],\"fvn-ordinal\":[\"ordinal\"],\"fvn-slashed-zero\":[\"slashed-zero\"],\"fvn-figure\":[\"lining-nums\",\"oldstyle-nums\"],\"fvn-spacing\":[\"proportional-nums\",\"tabular-nums\"],\"fvn-fraction\":[\"diagonal-fractions\",\"stacked-fractions\"],tracking:[{tracking:[\"tighter\",\"tight\",\"normal\",\"wide\",\"wider\",\"widest\",Mt]}],\"line-clamp\":[{\"line-clamp\":[\"none\",bd,XU]}],leading:[{leading:[\"none\",\"tight\",\"snug\",\"normal\",\"relaxed\",\"loose\",jl,Mt]}],\"list-image\":[{\"list-image\":[\"none\",Mt]}],\"list-style-type\":[{list:[\"none\",\"disc\",\"decimal\",Mt]}],\"list-style-position\":[{list:[\"inside\",\"outside\"]}],\"placeholder-color\":[{placeholder:[i]}],\"placeholder-opacity\":[{\"placeholder-opacity\":[q]}],\"text-alignment\":[{text:[\"left\",\"center\",\"right\",\"justify\",\"start\",\"end\"]}],\"text-color\":[{text:[i]}],\"text-opacity\":[{\"text-opacity\":[q]}],\"text-decoration\":[\"underline\",\"overline\",\"line-through\",\"no-underline\"],\"text-decoration-style\":[{decoration:[...pt(),\"wavy\"]}],\"text-decoration-thickness\":[{decoration:[\"auto\",\"from-font\",jl,Is]}],\"underline-offset\":[{\"underline-offset\":[\"auto\",jl,Mt]}],\"text-decoration-color\":[{decoration:[i]}],\"text-transform\":[\"uppercase\",\"lowercase\",\"capitalize\",\"normal-case\"],\"text-overflow\":[\"truncate\",\"text-ellipsis\",\"text-clip\"],\"text-wrap\":[{text:[\"wrap\",\"nowrap\",\"balance\",\"pretty\"]}],indent:[{indent:Ce()}],\"vertical-align\":[{align:[\"baseline\",\"top\",\"middle\",\"bottom\",\"text-top\",\"text-bottom\",\"sub\",\"super\",Mt]}],whitespace:[{whitespace:[\"normal\",\"nowrap\",\"pre\",\"pre-line\",\"pre-wrap\",\"break-spaces\"]}],break:[{break:[\"normal\",\"words\",\"all\",\"keep\"]}],hyphens:[{hyphens:[\"none\",\"manual\",\"auto\"]}],content:[{content:[\"none\",Mt]}],\"bg-attachment\":[{bg:[\"fixed\",\"local\",\"scroll\"]}],\"bg-clip\":[{\"bg-clip\":[\"border\",\"padding\",\"content\",\"text\"]}],\"bg-opacity\":[{\"bg-opacity\":[q]}],\"bg-origin\":[{\"bg-origin\":[\"border\",\"padding\",\"content\"]}],\"bg-position\":[{bg:[...ke(),EQ]}],\"bg-repeat\":[{bg:[\"no-repeat\",{repeat:[\"\",\"x\",\"y\",\"round\",\"space\"]}]}],\"bg-size\":[{bg:[\"auto\",\"cover\",\"contain\",wQ]}],\"bg-image\":[{bg:[\"none\",{\"gradient-to\":[\"t\",\"tr\",\"r\",\"br\",\"b\",\"bl\",\"l\",\"tl\"]},BQ]}],\"bg-color\":[{bg:[i]}],\"gradient-from-pos\":[{from:[O]}],\"gradient-via-pos\":[{via:[O]}],\"gradient-to-pos\":[{to:[O]}],\"gradient-from\":[{from:[E]}],\"gradient-via\":[{via:[E]}],\"gradient-to\":[{to:[E]}],rounded:[{rounded:[U]}],\"rounded-s\":[{\"rounded-s\":[U]}],\"rounded-e\":[{\"rounded-e\":[U]}],\"rounded-t\":[{\"rounded-t\":[U]}],\"rounded-r\":[{\"rounded-r\":[U]}],\"rounded-b\":[{\"rounded-b\":[U]}],\"rounded-l\":[{\"rounded-l\":[U]}],\"rounded-ss\":[{\"rounded-ss\":[U]}],\"rounded-se\":[{\"rounded-se\":[U]}],\"rounded-ee\":[{\"rounded-ee\":[U]}],\"rounded-es\":[{\"rounded-es\":[U]}],\"rounded-tl\":[{\"rounded-tl\":[U]}],\"rounded-tr\":[{\"rounded-tr\":[U]}],\"rounded-br\":[{\"rounded-br\":[U]}],\"rounded-bl\":[{\"rounded-bl\":[U]}],\"border-w\":[{border:[y]}],\"border-w-x\":[{\"border-x\":[y]}],\"border-w-y\":[{\"border-y\":[y]}],\"border-w-s\":[{\"border-s\":[y]}],\"border-w-e\":[{\"border-e\":[y]}],\"border-w-t\":[{\"border-t\":[y]}],\"border-w-r\":[{\"border-r\":[y]}],\"border-w-b\":[{\"border-b\":[y]}],\"border-w-l\":[{\"border-l\":[y]}],\"border-opacity\":[{\"border-opacity\":[q]}],\"border-style\":[{border:[...pt(),\"hidden\"]}],\"divide-x\":[{\"divide-x\":[y]}],\"divide-x-reverse\":[\"divide-x-reverse\"],\"divide-y\":[{\"divide-y\":[y]}],\"divide-y-reverse\":[\"divide-y-reverse\"],\"divide-opacity\":[{\"divide-opacity\":[q]}],\"divide-style\":[{divide:pt()}],\"border-color\":[{border:[A]}],\"border-color-x\":[{\"border-x\":[A]}],\"border-color-y\":[{\"border-y\":[A]}],\"border-color-s\":[{\"border-s\":[A]}],\"border-color-e\":[{\"border-e\":[A]}],\"border-color-t\":[{\"border-t\":[A]}],\"border-color-r\":[{\"border-r\":[A]}],\"border-color-b\":[{\"border-b\":[A]}],\"border-color-l\":[{\"border-l\":[A]}],\"divide-color\":[{divide:[A]}],\"outline-style\":[{outline:[\"\",...pt()]}],\"outline-offset\":[{\"outline-offset\":[jl,Mt]}],\"outline-w\":[{outline:[jl,Is]}],\"outline-color\":[{outline:[i]}],\"ring-w\":[{ring:qe()}],\"ring-w-inset\":[\"ring-inset\"],\"ring-color\":[{ring:[i]}],\"ring-opacity\":[{\"ring-opacity\":[q]}],\"ring-offset-w\":[{\"ring-offset\":[jl,Is]}],\"ring-offset-color\":[{\"ring-offset\":[i]}],shadow:[{shadow:[\"\",\"inner\",\"none\",qs,QQ]}],\"shadow-color\":[{shadow:[Lf]}],opacity:[{opacity:[q]}],\"mix-blend\":[{\"mix-blend\":[...Ke(),\"plus-lighter\",\"plus-darker\"]}],\"bg-blend\":[{\"bg-blend\":Ke()}],filter:[{filter:[\"\",\"none\"]}],blur:[{blur:[u]}],brightness:[{brightness:[p]}],contrast:[{contrast:[K]}],\"drop-shadow\":[{\"drop-shadow\":[\"\",\"none\",qs,Mt]}],grayscale:[{grayscale:[F]}],\"hue-rotate\":[{\"hue-rotate\":[R]}],invert:[{invert:[b]}],saturate:[{saturate:[Y]}],sepia:[{sepia:[te]}],\"backdrop-filter\":[{\"backdrop-filter\":[\"\",\"none\"]}],\"backdrop-blur\":[{\"backdrop-blur\":[u]}],\"backdrop-brightness\":[{\"backdrop-brightness\":[p]}],\"backdrop-contrast\":[{\"backdrop-contrast\":[K]}],\"backdrop-grayscale\":[{\"backdrop-grayscale\":[F]}],\"backdrop-hue-rotate\":[{\"backdrop-hue-rotate\":[R]}],\"backdrop-invert\":[{\"backdrop-invert\":[b]}],\"backdrop-opacity\":[{\"backdrop-opacity\":[q]}],\"backdrop-saturate\":[{\"backdrop-saturate\":[Y]}],\"backdrop-sepia\":[{\"backdrop-sepia\":[te]}],\"border-collapse\":[{border:[\"collapse\",\"separate\"]}],\"border-spacing\":[{\"border-spacing\":[m]}],\"border-spacing-x\":[{\"border-spacing-x\":[m]}],\"border-spacing-y\":[{\"border-spacing-y\":[m]}],\"table-layout\":[{table:[\"auto\",\"fixed\"]}],caption:[{caption:[\"top\",\"bottom\"]}],transition:[{transition:[\"none\",\"all\",\"\",\"colors\",\"opacity\",\"shadow\",\"transform\",Mt]}],duration:[{duration:j()}],ease:[{ease:[\"linear\",\"in\",\"out\",\"in-out\",Mt]}],delay:[{delay:j()}],animate:[{animate:[\"none\",\"spin\",\"ping\",\"pulse\",\"bounce\",Mt]}],transform:[{transform:[\"\",\"gpu\",\"none\"]}],scale:[{scale:[P]}],\"scale-x\":[{\"scale-x\":[P]}],\"scale-y\":[{\"scale-y\":[P]}],rotate:[{rotate:[jf,Mt]}],\"translate-x\":[{\"translate-x\":[be]}],\"translate-y\":[{\"translate-y\":[be]}],\"skew-x\":[{\"skew-x\":[me]}],\"skew-y\":[{\"skew-y\":[me]}],\"transform-origin\":[{origin:[\"center\",\"top\",\"top-right\",\"right\",\"bottom-right\",\"bottom\",\"bottom-left\",\"left\",\"top-left\",Mt]}],accent:[{accent:[\"auto\",i]}],appearance:[{appearance:[\"none\",\"auto\"]}],cursor:[{cursor:[\"auto\",\"default\",\"pointer\",\"wait\",\"text\",\"move\",\"help\",\"not-allowed\",\"none\",\"context-menu\",\"progress\",\"cell\",\"crosshair\",\"vertical-text\",\"alias\",\"copy\",\"no-drop\",\"grab\",\"grabbing\",\"all-scroll\",\"col-resize\",\"row-resize\",\"n-resize\",\"e-resize\",\"s-resize\",\"w-resize\",\"ne-resize\",\"nw-resize\",\"se-resize\",\"sw-resize\",\"ew-resize\",\"ns-resize\",\"nesw-resize\",\"nwse-resize\",\"zoom-in\",\"zoom-out\",Mt]}],\"caret-color\":[{caret:[i]}],\"pointer-events\":[{\"pointer-events\":[\"none\",\"auto\"]}],resize:[{resize:[\"none\",\"y\",\"x\",\"\"]}],\"scroll-behavior\":[{scroll:[\"auto\",\"smooth\"]}],\"scroll-m\":[{\"scroll-m\":Ce()}],\"scroll-mx\":[{\"scroll-mx\":Ce()}],\"scroll-my\":[{\"scroll-my\":Ce()}],\"scroll-ms\":[{\"scroll-ms\":Ce()}],\"scroll-me\":[{\"scroll-me\":Ce()}],\"scroll-mt\":[{\"scroll-mt\":Ce()}],\"scroll-mr\":[{\"scroll-mr\":Ce()}],\"scroll-mb\":[{\"scroll-mb\":Ce()}],\"scroll-ml\":[{\"scroll-ml\":Ce()}],\"scroll-p\":[{\"scroll-p\":Ce()}],\"scroll-px\":[{\"scroll-px\":Ce()}],\"scroll-py\":[{\"scroll-py\":Ce()}],\"scroll-ps\":[{\"scroll-ps\":Ce()}],\"scroll-pe\":[{\"scroll-pe\":Ce()}],\"scroll-pt\":[{\"scroll-pt\":Ce()}],\"scroll-pr\":[{\"scroll-pr\":Ce()}],\"scroll-pb\":[{\"scroll-pb\":Ce()}],\"scroll-pl\":[{\"scroll-pl\":Ce()}],\"snap-align\":[{snap:[\"start\",\"end\",\"center\",\"align-none\"]}],\"snap-stop\":[{snap:[\"normal\",\"always\"]}],\"snap-type\":[{snap:[\"none\",\"x\",\"y\",\"both\"]}],\"snap-strictness\":[{snap:[\"mandatory\",\"proximity\"]}],touch:[{touch:[\"auto\",\"none\",\"manipulation\"]}],\"touch-x\":[{\"touch-pan\":[\"x\",\"left\",\"right\"]}],\"touch-y\":[{\"touch-pan\":[\"y\",\"up\",\"down\"]}],\"touch-pz\":[\"touch-pinch-zoom\"],select:[{select:[\"none\",\"text\",\"all\",\"auto\"]}],\"will-change\":[{\"will-change\":[\"auto\",\"scroll\",\"contents\",\"transform\",Mt]}],fill:[{fill:[i,\"none\"]}],\"stroke-w\":[{stroke:[jl,Is,XU]}],stroke:[{stroke:[i,\"none\"]}],sr:[\"sr-only\",\"not-sr-only\"],\"forced-color-adjust\":[{\"forced-color-adjust\":[\"auto\",\"none\"]}]},conflictingClassGroups:{overflow:[\"overflow-x\",\"overflow-y\"],overscroll:[\"overscroll-x\",\"overscroll-y\"],inset:[\"inset-x\",\"inset-y\",\"start\",\"end\",\"top\",\"right\",\"bottom\",\"left\"],\"inset-x\":[\"right\",\"left\"],\"inset-y\":[\"top\",\"bottom\"],flex:[\"basis\",\"grow\",\"shrink\"],gap:[\"gap-x\",\"gap-y\"],p:[\"px\",\"py\",\"ps\",\"pe\",\"pt\",\"pr\",\"pb\",\"pl\"],px:[\"pr\",\"pl\"],py:[\"pt\",\"pb\"],m:[\"mx\",\"my\",\"ms\",\"me\",\"mt\",\"mr\",\"mb\",\"ml\"],mx:[\"mr\",\"ml\"],my:[\"mt\",\"mb\"],size:[\"w\",\"h\"],\"font-size\":[\"leading\"],\"fvn-normal\":[\"fvn-ordinal\",\"fvn-slashed-zero\",\"fvn-figure\",\"fvn-spacing\",\"fvn-fraction\"],\"fvn-ordinal\":[\"fvn-normal\"],\"fvn-slashed-zero\":[\"fvn-normal\"],\"fvn-figure\":[\"fvn-normal\"],\"fvn-spacing\":[\"fvn-normal\"],\"fvn-fraction\":[\"fvn-normal\"],\"line-clamp\":[\"display\",\"overflow\"],rounded:[\"rounded-s\",\"rounded-e\",\"rounded-t\",\"rounded-r\",\"rounded-b\",\"rounded-l\",\"rounded-ss\",\"rounded-se\",\"rounded-ee\",\"rounded-es\",\"rounded-tl\",\"rounded-tr\",\"rounded-br\",\"rounded-bl\"],\"rounded-s\":[\"rounded-ss\",\"rounded-es\"],\"rounded-e\":[\"rounded-se\",\"rounded-ee\"],\"rounded-t\":[\"rounded-tl\",\"rounded-tr\"],\"rounded-r\":[\"rounded-tr\",\"rounded-br\"],\"rounded-b\":[\"rounded-br\",\"rounded-bl\"],\"rounded-l\":[\"rounded-tl\",\"rounded-bl\"],\"border-spacing\":[\"border-spacing-x\",\"border-spacing-y\"],\"border-w\":[\"border-w-s\",\"border-w-e\",\"border-w-t\",\"border-w-r\",\"border-w-b\",\"border-w-l\"],\"border-w-x\":[\"border-w-r\",\"border-w-l\"],\"border-w-y\":[\"border-w-t\",\"border-w-b\"],\"border-color\":[\"border-color-s\",\"border-color-e\",\"border-color-t\",\"border-color-r\",\"border-color-b\",\"border-color-l\"],\"border-color-x\":[\"border-color-r\",\"border-color-l\"],\"border-color-y\":[\"border-color-t\",\"border-color-b\"],\"scroll-m\":[\"scroll-mx\",\"scroll-my\",\"scroll-ms\",\"scroll-me\",\"scroll-mt\",\"scroll-mr\",\"scroll-mb\",\"scroll-ml\"],\"scroll-mx\":[\"scroll-mr\",\"scroll-ml\"],\"scroll-my\":[\"scroll-mt\",\"scroll-mb\"],\"scroll-p\":[\"scroll-px\",\"scroll-py\",\"scroll-ps\",\"scroll-pe\",\"scroll-pt\",\"scroll-pr\",\"scroll-pb\",\"scroll-pl\"],\"scroll-px\":[\"scroll-pr\",\"scroll-pl\"],\"scroll-py\":[\"scroll-pt\",\"scroll-pb\"],touch:[\"touch-x\",\"touch-y\",\"touch-pz\"],\"touch-x\":[\"touch\"],\"touch-y\":[\"touch\"],\"touch-pz\":[\"touch\"]},conflictingClassGroupModifiers:{\"font-size\":[\"leading\"]}}});function VQ(...i){return OQ(sQ(i))}const IQ=(i,o)=>{if(i===0)return\"bg-slate-100 dark:bg-slate-800\";const u=i/o;return u<=.25?\"bg-green-200 dark:bg-green-900\":u<=.5?\"bg-green-400 dark:bg-green-700\":u<=.75?\"bg-green-500 dark:bg-green-600\":\"bg-green-600 dark:bg-green-500\"},qQ=i=>new Date(i).toLocaleDateString(\"en-US\",{weekday:\"short\",month:\"short\",day:\"numeric\"}),YQ=({data:i,title:o=\"Activity\",weeks:u=12,className:p=\"\",onDayClick:A})=>{const[U,m]=Q.useState(null),y=u*7,K=new Date,F=[],R=new Map(i.map(q=>[q.date,q])),b=new Date(K);b.setDate(b.getDate()-y+1);const N=b.getDay(),E=new Date(b);for(let q=0;q<u;q++){const W=[];for(let Y=0;Y<7;Y++)if(q===0&&Y<N)W.push(null);else if(E<=K){const P=E.toISOString().split(\"T\")[0];W.push(R.get(P)||{date:P,count:0}),E.setDate(E.getDate()+1)}else W.push(null);F.push(W)}const O=Math.max(...i.map(q=>q.count),1);let B=0;const L=[...i].filter(q=>q.count>0).map(q=>q.date).sort().reverse();if(L.length>0){const q=new Date(K);for(const W of L){const Y=q.toISOString().split(\"T\")[0];if(W===Y)B++,q.setDate(q.getDate()-1);else break}}return h.jsxs(\"div\",{className:`w-full min-w-0 ${p}`.trim(),children:[h.jsxs(\"div\",{className:\"flex items-center justify-between mb-3\",children:[h.jsx(\"h3\",{className:\"font-semibold text-slate-900 dark:text-white\",children:o}),B>0&&h.jsxs(\"div\",{className:\"flex items-center gap-1 text-orange-500\",children:[h.jsx(NU,{size:14,className:\"fill-current\"}),h.jsxs(\"span\",{className:\"text-xs font-bold\",children:[B,\" day streak\"]})]})]}),h.jsx(\"div\",{className:\"w-full min-w-0 grid grid-flow-col auto-cols-[minmax(12px,1fr)] gap-[3px] overflow-x-auto hide-scrollbar pb-1\",children:F.map((q,W)=>h.jsx(\"div\",{className:\"grid grid-rows-7 gap-[3px]\",children:q.map((Y,P)=>h.jsxs(\"div\",{className:\"relative\",children:[h.jsx(pe.div,{className:`\n w-full aspect-square rounded-sm cursor-pointer transition-all duration-150\n ${Y?IQ(Y.count,O):\"bg-transparent\"}\n `,whileHover:{scale:1.4,zIndex:10},onMouseEnter:()=>Y&&m(Y),onMouseLeave:()=>m(null),onClick:()=>Y&&(A==null?void 0:A(Y.date)),initial:{opacity:0,scale:.5},animate:{opacity:1,scale:1},transition:{delay:(W*7+P)*.003}}),h.jsx(cd,{children:U&&Y&&U.date===Y.date&&h.jsxs(pe.div,{className:\"absolute z-50 px-2 py-1 bg-slate-900 dark:bg-slate-700 text-white text-xs rounded shadow-lg pointer-events-none whitespace-nowrap\",style:{left:\"50%\",bottom:\"100%\",transform:\"translateX(-50%)\",marginBottom:\"4px\"},initial:{opacity:0,y:5},animate:{opacity:1,y:0},exit:{opacity:0,y:5},children:[h.jsxs(\"p\",{className:\"font-medium\",children:[U.count,\" activities\"]}),h.jsx(\"p\",{className:\"text-slate-400 text-[10px]\",children:qQ(U.date)})]})})]},`${W}-${P}`))},W))}),h.jsxs(\"div\",{className:\"flex items-center justify-end gap-1 mt-2 text-[10px] text-slate-500\",children:[h.jsx(\"span\",{children:\"Less\"}),h.jsx(\"div\",{className:\"w-3 h-3 rounded-sm bg-slate-100 dark:bg-slate-800\"}),h.jsx(\"div\",{className:\"w-3 h-3 rounded-sm bg-green-200 dark:bg-green-900\"}),h.jsx(\"div\",{className:\"w-3 h-3 rounded-sm bg-green-400 dark:bg-green-700\"}),h.jsx(\"div\",{className:\"w-3 h-3 rounded-sm bg-green-500 dark:bg-green-600\"}),h.jsx(\"div\",{className:\"w-3 h-3 rounded-sm bg-green-600 dark:bg-green-500\"}),h.jsx(\"span\",{children:\"More\"})]})]})};class Sh{static injectStylesIntoShadow(o){const u=document.createElement(\"link\");u.rel=\"stylesheet\",u.href=\"/src/index.css\",o.appendChild(u);const p=Array.from(document.querySelectorAll('link[rel=\"stylesheet\"]'));for(const U of p){const m=U.getAttribute(\"href\")||\"\";(m.includes(\"dist/style.css\")||m.endsWith(\"/style.css\")||m.endsWith(\"style.css\"))&&o.appendChild(U.cloneNode(!0))}const A=Array.from(document.querySelectorAll(\"style[data-vite-dev-id]\"));for(const U of A)o.appendChild(U.cloneNode(!0))}static init(o){if(this.container){console.warn(\"PlaybasisWidget is already initialized\");return}if(o.embedded===!0||typeof window.ReactNativeWebView!=\"undefined\"){this.container=o.container||document.getElementById(\"pb-widget-root\"),this.container||(this.container=document.createElement(\"div\"),this.container.id=\"playbasis-widget-container\",document.body.appendChild(this.container));const p=document.createElement(\"div\");p.className=\"playbasis-widget-root font-sans antialiased\",o.themeName===\"qwik\"&&p.classList.add(\"theme-qwik\"),this.container.appendChild(p),this.root=W0(p),this.root.render(Q.createElement(HU,{config:o})),console.log(\"[Playbasis Widget] Initialized in EMBEDDED mode (no Shadow DOM)\")}else{this.container=document.createElement(\"div\"),this.container.id=\"playbasis-widget-container\",document.body.appendChild(this.container);const p=this.container.attachShadow({mode:\"open\"}),A=document.createElement(\"style\");A.textContent=`\n :host { all: initial; }\n .playbasis-widget-root { font-family: system-ui, -apple-system, sans-serif; }\n `,p.appendChild(A),this.injectStylesIntoShadow(p);const U=document.createElement(\"div\");o.themeName===\"qwik\"&&U.classList.add(\"theme-qwik\"),p.appendChild(U),this.root=W0(U),this.root.render(Q.createElement(HU,{config:o})),process.env.NODE_ENV===\"development\"&&console.log(\"[Playbasis Widget] Initialized in STANDARD mode (with Shadow DOM)\")}}static unmount(){this.root&&(this.root.unmount(),this.root=null),this.container&&(this.container.remove(),this.container=null)}}Es(Sh,\"root\",null),Es(Sh,\"container\",null),typeof window!=\"undefined\"&&(window.PlaybasisWidget=Sh),Tt.ActivityHeatmap=YQ,Tt.AnimatedCounter=Vs,Tt.BadgesWidget=VU,Tt.ChatOverlay=tC,Tt.DEFAULT_API_URL=nC,Tt.Dashboard=eC,Tt.LeaderboardWidget=OU,Tt.NONG_PO_PLAYER=Ai,Tt.PlaybasisClient=lQ,Tt.PlaybasisWidget=Sh,Tt.ProgressOrb=BT,Tt.RadialProgress=Bl,Tt.SANDBOX_CONFIG=Uh,Tt.WidgetMount=HU,Tt.cn=VQ,Tt.getNongPoData=WU,Tt.getNongPoWidgetData=XT,Tt.useWidgetStore=Pr,Object.defineProperty(Tt,Symbol.toStringTag,{value:\"Module\"})});\n";
|
|
3
|
+
export declare const WIDGET_CSS = "@import\"https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500&display=swap\";*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: \"\"}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",Segoe UI Symbol,\"Noto Color Emoji\";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}*{box-sizing:border-box}html{-webkit-tap-highlight-color:transparent}button,input,optgroup,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:unset}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.glass-card{border-width:1px;border-color:#fff3;background-color:#fffc;--tw-backdrop-blur: blur(24px);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.theme-qwik .glass-card{backdrop-filter:blur(8px);background-color:#ffffffe6}@media (prefers-color-scheme: dark){.glass-card{border-color:#3341554d;background-color:#0f172acc}}.dark .shimmer{background:linear-gradient(90deg,#fff0,#ffffff1a,#fff0);background-size:200% 100%}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.visible{visibility:visible}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.-inset-2{inset:-.5rem}.inset-0{inset:0}.inset-2{inset:.5rem}.inset-4{inset:1rem}.inset-\\[-12px\\]{inset:-12px}.inset-\\[-20px\\]{inset:-20px}.inset-\\[2px\\]{inset:2px}.inset-x-0{left:0;right:0}.inset-y-0{top:0;bottom:0}.-bottom-0\\.5{bottom:-.125rem}.-bottom-1{bottom:-.25rem}.-bottom-12{bottom:-3rem}.-bottom-2{bottom:-.5rem}.-bottom-2\\.5{bottom:-.625rem}.-right-0\\.5{right:-.125rem}.-right-1{right:-.25rem}.-right-2{right:-.5rem}.-top-0\\.5{top:-.125rem}.-top-1{top:-.25rem}.-top-2{top:-.5rem}.-top-3{top:-.75rem}.-top-8{top:-2rem}.bottom-0{bottom:0}.bottom-2{bottom:.5rem}.bottom-4{bottom:1rem}.bottom-5{bottom:1.25rem}.bottom-6{bottom:1.5rem}.bottom-\\[max\\(1\\.5rem\\,env\\(safe-area-inset-bottom\\)\\)\\]{bottom:max(1.5rem,env(safe-area-inset-bottom))}.left-0{left:0}.left-1\\.5{left:.375rem}.left-1\\/2{left:50%}.left-3{left:.75rem}.left-4{left:1rem}.left-\\[max\\(1\\.5rem\\,env\\(safe-area-inset-left\\)\\)\\]{left:max(1.5rem,env(safe-area-inset-left))}.right-0{right:0}.right-1{right:.25rem}.right-1\\/4{right:25%}.right-3{right:.75rem}.right-4{right:1rem}.right-6{right:1.5rem}.right-\\[max\\(1\\.5rem\\,env\\(safe-area-inset-right\\)\\)\\]{right:max(1.5rem,env(safe-area-inset-right))}.top-0{top:0}.top-1{top:.25rem}.top-1\\.5{top:.375rem}.top-1\\/2{top:50%}.top-1\\/4{top:25%}.top-3{top:.75rem}.top-4{top:1rem}.top-\\[max\\(1\\.5rem\\,env\\(safe-area-inset-top\\)\\)\\]{top:max(1.5rem,env(safe-area-inset-top))}.z-0{z-index:0}.z-10{z-index:10}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.z-\\[100000\\]{z-index:100000}.z-\\[100\\]{z-index:100}.z-\\[110000\\]{z-index:110000}.z-\\[200\\]{z-index:200}.z-\\[300\\]{z-index:300}.z-\\[60\\]{z-index:60}.z-\\[9999\\]{z-index:9999}.col-span-3{grid-column:span 3 / span 3}.-mx-4{margin-left:-1rem;margin-right:-1rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-auto{margin-left:auto;margin-right:auto}.-mt-3{margin-top:-.75rem}.-mt-4{margin-top:-1rem}.-mt-6{margin-top:-1.5rem}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-1{margin-left:.25rem}.ml-1\\.5{margin-left:.375rem}.ml-auto{margin-left:auto}.mt-0\\.5{margin-top:.125rem}.mt-1{margin-top:.25rem}.mt-1\\.5{margin-top:.375rem}.mt-10{margin-top:2.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.line-clamp-2{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1 / 1}.h-1{height:.25rem}.h-1\\.5{height:.375rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-2{height:.5rem}.h-2\\.5{height:.625rem}.h-20{height:5rem}.h-24{height:6rem}.h-3{height:.75rem}.h-32{height:8rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\\[100px\\]{height:100px}.h-\\[380px\\]{height:380px}.h-\\[60\\%\\]{height:60%}.h-\\[600px\\]{height:600px}.h-full{height:100%}.max-h-\\[300px\\]{max-height:300px}.max-h-\\[90vh\\]{max-height:90vh}.max-h-\\[calc\\(90vh-8rem\\)\\]{max-height:calc(90vh - 8rem)}.min-h-0{min-height:0px}.min-h-\\[180px\\]{min-height:180px}.w-1{width:.25rem}.w-1\\.5{width:.375rem}.w-1\\/3{width:33.333333%}.w-10{width:2.5rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-2{width:.5rem}.w-2\\.5{width:.625rem}.w-20{width:5rem}.w-24{width:6rem}.w-3{width:.75rem}.w-32{width:8rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-9{width:2.25rem}.w-\\[280px\\]{width:280px}.w-\\[72px\\]{width:72px}.w-full{width:100%}.w-max{width:-moz-max-content;width:max-content}.min-w-0{min-width:0px}.min-w-\\[30\\%\\]{min-width:30%}.max-w-16{max-width:4rem}.max-w-20{max-width:5rem}.max-w-\\[80\\%\\]{max-width:80%}.max-w-\\[85\\%\\]{max-width:85%}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.origin-bottom{transform-origin:bottom}.-translate-x-1\\/2{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-x-full{--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-translate-y-1\\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-rotate-90{--tw-rotate: -90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.rotate-180{--tw-rotate: 180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.skew-x-12{--tw-skew-x: 12deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-110{--tw-scale-x: 1.1;--tw-scale-y: 1.1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-125{--tw-scale-x: 1.25;--tw-scale-y: 1.25;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-grab{cursor:grab}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.touch-manipulation{touch-action:manipulation}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.resize{resize:both}.auto-cols-\\[minmax\\(12px\\,1fr\\)\\]{grid-auto-columns:minmax(12px,1fr)}.grid-flow-col{grid-auto-flow:column}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.grid-rows-7{grid-template-rows:repeat(7,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-0\\.5{gap:.125rem}.gap-1{gap:.25rem}.gap-1\\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-2\\.5{gap:.625rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-\\[3px\\]{gap:3px}.space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem * var(--tw-space-y-reverse))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.75rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem * var(--tw-space-y-reverse))}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-3xl{border-radius:1.5rem}.rounded-\\[12px\\]{border-radius:12px}.rounded-\\[32px\\]{border-radius:32px}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-t-2xl{border-top-left-radius:1rem;border-top-right-radius:1rem}.rounded-t-3xl{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.rounded-t-\\[40px\\]{border-top-left-radius:40px;border-top-right-radius:40px}.rounded-bl-none{border-bottom-left-radius:0}.rounded-br-none{border-bottom-right-radius:0}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-4{border-width:4px}.border-b{border-bottom-width:1px}.border-t{border-top-width:1px}.border-none{border-style:none}.border-\\[\\#ff6b57\\]{--tw-border-opacity: 1;border-color:rgb(255 107 87 / var(--tw-border-opacity, 1))}.border-\\[\\#ff6b57\\]\\/10{border-color:#ff6b571a}.border-\\[\\#ff6b57\\]\\/15{border-color:#ff6b5726}.border-\\[\\#ff6b57\\]\\/20{border-color:#ff6b5733}.border-\\[\\#ff6b57\\]\\/30{border-color:#ff6b574d}.border-\\[\\#ff6b57\\]\\/40{border-color:#ff6b5766}.border-\\[\\#ff8a6a\\]{--tw-border-opacity: 1;border-color:rgb(255 138 106 / var(--tw-border-opacity, 1))}.border-amber-100{--tw-border-opacity: 1;border-color:rgb(254 243 199 / var(--tw-border-opacity, 1))}.border-amber-400\\/30{border-color:#fbbf244d}.border-amber-500\\/20{border-color:#f59e0b33}.border-blue-200{--tw-border-opacity: 1;border-color:rgb(191 219 254 / var(--tw-border-opacity, 1))}.border-blue-500\\/20{border-color:#3b82f633}.border-emerald-200{--tw-border-opacity: 1;border-color:rgb(167 243 208 / var(--tw-border-opacity, 1))}.border-emerald-400\\/20{border-color:#34d39933}.border-emerald-500\\/20{border-color:#10b98133}.border-gray-900{--tw-border-opacity: 1;border-color:rgb(17 24 39 / var(--tw-border-opacity, 1))}.border-green-200{--tw-border-opacity: 1;border-color:rgb(187 247 208 / var(--tw-border-opacity, 1))}.border-green-500\\/20{border-color:#22c55e33}.border-orange-500\\/20{border-color:#f9731633}.border-red-500\\/20{border-color:#ef444433}.border-slate-100{--tw-border-opacity: 1;border-color:rgb(241 245 249 / var(--tw-border-opacity, 1))}.border-slate-200{--tw-border-opacity: 1;border-color:rgb(226 232 240 / var(--tw-border-opacity, 1))}.border-slate-300{--tw-border-opacity: 1;border-color:rgb(203 213 225 / var(--tw-border-opacity, 1))}.border-slate-300\\/50{border-color:#cbd5e180}.border-slate-400{--tw-border-opacity: 1;border-color:rgb(148 163 184 / var(--tw-border-opacity, 1))}.border-slate-700{--tw-border-opacity: 1;border-color:rgb(51 65 85 / var(--tw-border-opacity, 1))}.border-teal-200{--tw-border-opacity: 1;border-color:rgb(153 246 228 / var(--tw-border-opacity, 1))}.border-white{--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity, 1))}.border-white\\/10{border-color:#ffffff1a}.border-white\\/20{border-color:#fff3}.border-white\\/30{border-color:#ffffff4d}.border-white\\/40{border-color:#fff6}.border-white\\/50{border-color:#ffffff80}.border-yellow-400{--tw-border-opacity: 1;border-color:rgb(250 204 21 / var(--tw-border-opacity, 1))}.border-yellow-500\\/60{border-color:#eab30899}.border-t-transparent{border-top-color:transparent}.bg-\\[\\#ff6b57\\]{--tw-bg-opacity: 1;background-color:rgb(255 107 87 / var(--tw-bg-opacity, 1))}.bg-\\[\\#ff6b57\\]\\/10{background-color:#ff6b571a}.bg-\\[\\#ff6b57\\]\\/30{background-color:#ff6b574d}.bg-\\[\\#ff6b57\\]\\/40{background-color:#ff6b5766}.bg-\\[\\#ff6b57\\]\\/5{background-color:#ff6b570d}.bg-\\[\\#ff6b57\\]\\/95{background-color:#ff6b57f2}.bg-\\[\\#ff8a6a\\]{--tw-bg-opacity: 1;background-color:rgb(255 138 106 / var(--tw-bg-opacity, 1))}.bg-\\[\\#ff8a6a\\]\\/10{background-color:#ff8a6a1a}.bg-\\[\\#ff8a6a\\]\\/20{background-color:#ff8a6a33}.bg-\\[\\#ffa07a\\]{--tw-bg-opacity: 1;background-color:rgb(255 160 122 / var(--tw-bg-opacity, 1))}.bg-\\[\\#ffd4cb\\]{--tw-bg-opacity: 1;background-color:rgb(255 212 203 / var(--tw-bg-opacity, 1))}.bg-\\[\\#ffe7e0\\]{--tw-bg-opacity: 1;background-color:rgb(255 231 224 / var(--tw-bg-opacity, 1))}.bg-\\[\\#fff0eb\\]{--tw-bg-opacity: 1;background-color:rgb(255 240 235 / var(--tw-bg-opacity, 1))}.bg-amber-100{--tw-bg-opacity: 1;background-color:rgb(254 243 199 / var(--tw-bg-opacity, 1))}.bg-amber-400{--tw-bg-opacity: 1;background-color:rgb(251 191 36 / var(--tw-bg-opacity, 1))}.bg-amber-400\\/30{background-color:#fbbf244d}.bg-amber-400\\/40{background-color:#fbbf2466}.bg-amber-50{--tw-bg-opacity: 1;background-color:rgb(255 251 235 / var(--tw-bg-opacity, 1))}.bg-amber-500\\/10{background-color:#f59e0b1a}.bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1))}.bg-black\\/20{background-color:#0003}.bg-black\\/30{background-color:#0000004d}.bg-black\\/50{background-color:#00000080}.bg-black\\/60{background-color:#0009}.bg-blue-100{--tw-bg-opacity: 1;background-color:rgb(219 234 254 / var(--tw-bg-opacity, 1))}.bg-blue-50{--tw-bg-opacity: 1;background-color:rgb(239 246 255 / var(--tw-bg-opacity, 1))}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity, 1))}.bg-blue-500\\/10{background-color:#3b82f61a}.bg-cyan-50{--tw-bg-opacity: 1;background-color:rgb(236 254 255 / var(--tw-bg-opacity, 1))}.bg-emerald-100{--tw-bg-opacity: 1;background-color:rgb(209 250 229 / var(--tw-bg-opacity, 1))}.bg-emerald-400{--tw-bg-opacity: 1;background-color:rgb(52 211 153 / var(--tw-bg-opacity, 1))}.bg-emerald-400\\/10{background-color:#34d3991a}.bg-emerald-50{--tw-bg-opacity: 1;background-color:rgb(236 253 245 / var(--tw-bg-opacity, 1))}.bg-emerald-500{--tw-bg-opacity: 1;background-color:rgb(16 185 129 / var(--tw-bg-opacity, 1))}.bg-emerald-500\\/10{background-color:#10b9811a}.bg-green-100{--tw-bg-opacity: 1;background-color:rgb(220 252 231 / var(--tw-bg-opacity, 1))}.bg-green-200{--tw-bg-opacity: 1;background-color:rgb(187 247 208 / var(--tw-bg-opacity, 1))}.bg-green-400{--tw-bg-opacity: 1;background-color:rgb(74 222 128 / var(--tw-bg-opacity, 1))}.bg-green-50{--tw-bg-opacity: 1;background-color:rgb(240 253 244 / var(--tw-bg-opacity, 1))}.bg-green-500{--tw-bg-opacity: 1;background-color:rgb(34 197 94 / var(--tw-bg-opacity, 1))}.bg-green-500\\/10{background-color:#22c55e1a}.bg-green-600{--tw-bg-opacity: 1;background-color:rgb(22 163 74 / var(--tw-bg-opacity, 1))}.bg-neutral-700{--tw-bg-opacity: 1;background-color:rgb(64 64 64 / var(--tw-bg-opacity, 1))}.bg-neutral-900\\/80{background-color:#171717cc}.bg-orange-50{--tw-bg-opacity: 1;background-color:rgb(255 247 237 / var(--tw-bg-opacity, 1))}.bg-orange-500\\/10{background-color:#f973161a}.bg-purple-100{--tw-bg-opacity: 1;background-color:rgb(243 232 255 / var(--tw-bg-opacity, 1))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity, 1))}.bg-red-500\\/10{background-color:#ef44441a}.bg-rose-500{--tw-bg-opacity: 1;background-color:rgb(244 63 94 / var(--tw-bg-opacity, 1))}.bg-rose-500\\/10{background-color:#f43f5e1a}.bg-slate-100{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity, 1))}.bg-slate-200{--tw-bg-opacity: 1;background-color:rgb(226 232 240 / var(--tw-bg-opacity, 1))}.bg-slate-400{--tw-bg-opacity: 1;background-color:rgb(148 163 184 / var(--tw-bg-opacity, 1))}.bg-slate-50{--tw-bg-opacity: 1;background-color:rgb(248 250 252 / var(--tw-bg-opacity, 1))}.bg-slate-50\\/50{background-color:#f8fafc80}.bg-slate-500\\/10{background-color:#64748b1a}.bg-slate-800{--tw-bg-opacity: 1;background-color:rgb(30 41 59 / var(--tw-bg-opacity, 1))}.bg-slate-900{--tw-bg-opacity: 1;background-color:rgb(15 23 42 / var(--tw-bg-opacity, 1))}.bg-slate-900\\/30{background-color:#0f172a4d}.bg-slate-900\\/90{background-color:#0f172ae6}.bg-teal-50{--tw-bg-opacity: 1;background-color:rgb(240 253 250 / var(--tw-bg-opacity, 1))}.bg-teal-500{--tw-bg-opacity: 1;background-color:rgb(20 184 166 / var(--tw-bg-opacity, 1))}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.bg-white\\/10{background-color:#ffffff1a}.bg-white\\/20{background-color:#fff3}.bg-white\\/25{background-color:#ffffff40}.bg-white\\/30{background-color:#ffffff4d}.bg-white\\/5{background-color:#ffffff0d}.bg-white\\/50{background-color:#ffffff80}.bg-white\\/60{background-color:#fff9}.bg-white\\/80{background-color:#fffc}.bg-white\\/90{background-color:#ffffffe6}.bg-yellow-400{--tw-bg-opacity: 1;background-color:rgb(250 204 21 / var(--tw-bg-opacity, 1))}.bg-yellow-50{--tw-bg-opacity: 1;background-color:rgb(254 252 232 / var(--tw-bg-opacity, 1))}.bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.bg-gradient-to-r{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-t{background-image:linear-gradient(to top,var(--tw-gradient-stops))}.from-\\[\\#ff6b57\\]{--tw-gradient-from: #ff6b57 var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 107 87 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-\\[\\#ff6b57\\]\\/10{--tw-gradient-from: rgb(255 107 87 / .1) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 107 87 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-\\[\\#ff6b57\\]\\/5{--tw-gradient-from: rgb(255 107 87 / .05) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 107 87 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-\\[\\#ff8a6a\\]{--tw-gradient-from: #ff8a6a var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 138 106 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-\\[\\#fff7f4\\]{--tw-gradient-from: #fff7f4 var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 247 244 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-amber-300{--tw-gradient-from: #fcd34d var(--tw-gradient-from-position);--tw-gradient-to: rgb(252 211 77 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-amber-400{--tw-gradient-from: #fbbf24 var(--tw-gradient-from-position);--tw-gradient-to: rgb(251 191 36 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-amber-500{--tw-gradient-from: #f59e0b var(--tw-gradient-from-position);--tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-amber-500\\/10{--tw-gradient-from: rgb(245 158 11 / .1) var(--tw-gradient-from-position);--tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-amber-600{--tw-gradient-from: #d97706 var(--tw-gradient-from-position);--tw-gradient-to: rgb(217 119 6 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-black\\/70{--tw-gradient-from: rgb(0 0 0 / .7) var(--tw-gradient-from-position);--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-blue-400{--tw-gradient-from: #60a5fa var(--tw-gradient-from-position);--tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-blue-500\\/10{--tw-gradient-from: rgb(59 130 246 / .1) var(--tw-gradient-from-position);--tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-cyan-400{--tw-gradient-from: #22d3ee var(--tw-gradient-from-position);--tw-gradient-to: rgb(34 211 238 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-emerald-500{--tw-gradient-from: #10b981 var(--tw-gradient-from-position);--tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-fuchsia-500{--tw-gradient-from: #d946ef var(--tw-gradient-from-position);--tw-gradient-to: rgb(217 70 239 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-gray-300{--tw-gradient-from: #d1d5db var(--tw-gradient-from-position);--tw-gradient-to: rgb(209 213 219 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-green-500{--tw-gradient-from: #22c55e var(--tw-gradient-from-position);--tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-green-500\\/10{--tw-gradient-from: rgb(34 197 94 / .1) var(--tw-gradient-from-position);--tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-orange-400{--tw-gradient-from: #fb923c var(--tw-gradient-from-position);--tw-gradient-to: rgb(251 146 60 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-orange-50{--tw-gradient-from: #fff7ed var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 247 237 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-purple-400{--tw-gradient-from: #c084fc var(--tw-gradient-from-position);--tw-gradient-to: rgb(192 132 252 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-red-500{--tw-gradient-from: #ef4444 var(--tw-gradient-from-position);--tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-red-900{--tw-gradient-from: #7f1d1d var(--tw-gradient-from-position);--tw-gradient-to: rgb(127 29 29 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-sky-500{--tw-gradient-from: #0ea5e9 var(--tw-gradient-from-position);--tw-gradient-to: rgb(14 165 233 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-slate-300{--tw-gradient-from: #cbd5e1 var(--tw-gradient-from-position);--tw-gradient-to: rgb(203 213 225 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-slate-400{--tw-gradient-from: #94a3b8 var(--tw-gradient-from-position);--tw-gradient-to: rgb(148 163 184 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-slate-500{--tw-gradient-from: #64748b var(--tw-gradient-from-position);--tw-gradient-to: rgb(100 116 139 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-slate-700{--tw-gradient-from: #334155 var(--tw-gradient-from-position);--tw-gradient-to: rgb(51 65 85 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-slate-800{--tw-gradient-from: #1e293b var(--tw-gradient-from-position);--tw-gradient-to: rgb(30 41 59 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-slate-900{--tw-gradient-from: #0f172a var(--tw-gradient-from-position);--tw-gradient-to: rgb(15 23 42 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-slate-900\\/80{--tw-gradient-from: rgb(15 23 42 / .8) var(--tw-gradient-from-position);--tw-gradient-to: rgb(15 23 42 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-teal-400{--tw-gradient-from: #2dd4bf var(--tw-gradient-from-position);--tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-transparent{--tw-gradient-from: transparent var(--tw-gradient-from-position);--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-white{--tw-gradient-from: #fff var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-white\\/40{--tw-gradient-from: rgb(255 255 255 / .4) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-yellow-400{--tw-gradient-from: #facc15 var(--tw-gradient-from-position);--tw-gradient-to: rgb(250 204 21 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-\\[\\#ff8a6a\\]{--tw-gradient-to: rgb(255 138 106 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), #ff8a6a var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-\\[\\#fff7f4\\]{--tw-gradient-to: rgb(255 247 244 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), #fff7f4 var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-black\\/15{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / .15) var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-red-800{--tw-gradient-to: rgb(153 27 27 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), #991b1b var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-white{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to)}.via-white\\/30{--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), rgb(255 255 255 / .3) var(--tw-gradient-via-position), var(--tw-gradient-to)}.to-\\[\\#ff6b57\\]{--tw-gradient-to: #ff6b57 var(--tw-gradient-to-position)}.to-\\[\\#ff8a6a\\]{--tw-gradient-to: #ff8a6a var(--tw-gradient-to-position)}.to-\\[\\#ff8a6a\\]\\/10{--tw-gradient-to: rgb(255 138 106 / .1) var(--tw-gradient-to-position)}.to-\\[\\#ff8a6a\\]\\/5{--tw-gradient-to: rgb(255 138 106 / .05) var(--tw-gradient-to-position)}.to-\\[\\#ff9f85\\]{--tw-gradient-to: #ff9f85 var(--tw-gradient-to-position)}.to-\\[\\#ffa07a\\]{--tw-gradient-to: #ffa07a var(--tw-gradient-to-position)}.to-\\[\\#ffefea\\]{--tw-gradient-to: #ffefea var(--tw-gradient-to-position)}.to-\\[\\#fff7f4\\]{--tw-gradient-to: #fff7f4 var(--tw-gradient-to-position)}.to-amber-500{--tw-gradient-to: #f59e0b var(--tw-gradient-to-position)}.to-amber-700{--tw-gradient-to: #b45309 var(--tw-gradient-to-position)}.to-blue-400{--tw-gradient-to: #60a5fa var(--tw-gradient-to-position)}.to-cyan-500{--tw-gradient-to: #06b6d4 var(--tw-gradient-to-position)}.to-emerald-500\\/10{--tw-gradient-to: rgb(16 185 129 / .1) var(--tw-gradient-to-position)}.to-emerald-600{--tw-gradient-to: #059669 var(--tw-gradient-to-position)}.to-fuchsia-500{--tw-gradient-to: #d946ef var(--tw-gradient-to-position)}.to-gray-400{--tw-gradient-to: #9ca3af var(--tw-gradient-to-position)}.to-indigo-500\\/10{--tw-gradient-to: rgb(99 102 241 / .1) var(--tw-gradient-to-position)}.to-indigo-600{--tw-gradient-to: #4f46e5 var(--tw-gradient-to-position)}.to-orange-400{--tw-gradient-to: #fb923c var(--tw-gradient-to-position)}.to-orange-500{--tw-gradient-to: #f97316 var(--tw-gradient-to-position)}.to-purple-600{--tw-gradient-to: #9333ea var(--tw-gradient-to-position)}.to-red-700{--tw-gradient-to: #b91c1c var(--tw-gradient-to-position)}.to-red-900{--tw-gradient-to: #7f1d1d var(--tw-gradient-to-position)}.to-rose-50{--tw-gradient-to: #fff1f2 var(--tw-gradient-to-position)}.to-slate-400{--tw-gradient-to: #94a3b8 var(--tw-gradient-to-position)}.to-slate-500{--tw-gradient-to: #64748b var(--tw-gradient-to-position)}.to-slate-600{--tw-gradient-to: #475569 var(--tw-gradient-to-position)}.to-slate-800{--tw-gradient-to: #1e293b var(--tw-gradient-to-position)}.to-slate-900{--tw-gradient-to: #0f172a var(--tw-gradient-to-position)}.to-slate-900\\/80{--tw-gradient-to: rgb(15 23 42 / .8) var(--tw-gradient-to-position)}.to-teal-500{--tw-gradient-to: #14b8a6 var(--tw-gradient-to-position)}.to-teal-600{--tw-gradient-to: #0d9488 var(--tw-gradient-to-position)}.to-transparent{--tw-gradient-to: transparent var(--tw-gradient-to-position)}.to-white\\/10{--tw-gradient-to: rgb(255 255 255 / .1) var(--tw-gradient-to-position)}.to-yellow-500{--tw-gradient-to: #eab308 var(--tw-gradient-to-position)}.to-yellow-500\\/10{--tw-gradient-to: rgb(234 179 8 / .1) var(--tw-gradient-to-position)}.bg-cover{background-size:cover}.bg-center{background-position:center}.fill-current{fill:currentColor}.object-contain{-o-object-fit:contain;object-fit:contain}.object-cover{-o-object-fit:cover;object-fit:cover}.p-0{padding:0}.p-1\\.5{padding:.375rem}.p-2{padding:.5rem}.p-2\\.5{padding:.625rem}.p-3{padding:.75rem}.p-3\\.5{padding:.875rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.px-1\\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0\\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-1{padding-bottom:.25rem}.pb-10{padding-bottom:2.5rem}.pb-2{padding-bottom:.5rem}.pb-32{padding-bottom:8rem}.pb-4{padding-bottom:1rem}.pt-1{padding-top:.25rem}.pt-14{padding-top:3.5rem}.pt-4{padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",Segoe UI Symbol,\"Noto Color Emoji\"}.font-serif{font-family:ui-serif,Georgia,Cambria,Times New Roman,Times,serif}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-5xl{font-size:3rem;line-height:1}.text-\\[10px\\]{font-size:10px}.text-\\[11px\\]{font-size:11px}.text-\\[15px\\]{font-size:15px}.text-\\[8px\\]{font-size:8px}.text-\\[9px\\]{font-size:9px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-black{font-weight:900}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.italic{font-style:italic}.tabular-nums{--tw-numeric-spacing: tabular-nums;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-\\[0\\.2em\\]{letter-spacing:.2em}.tracking-\\[0\\.3em\\]{letter-spacing:.3em}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-\\[\\#0f172a\\]{--tw-text-opacity: 1;color:rgb(15 23 42 / var(--tw-text-opacity, 1))}.text-\\[\\#e55a48\\]{--tw-text-opacity: 1;color:rgb(229 90 72 / var(--tw-text-opacity, 1))}.text-\\[\\#ff6b57\\]{--tw-text-opacity: 1;color:rgb(255 107 87 / var(--tw-text-opacity, 1))}.text-\\[\\#ff6b57\\]\\/70{color:#ff6b57b3}.text-\\[\\#ff8a6a\\]{--tw-text-opacity: 1;color:rgb(255 138 106 / var(--tw-text-opacity, 1))}.text-amber-400{--tw-text-opacity: 1;color:rgb(251 191 36 / var(--tw-text-opacity, 1))}.text-amber-500{--tw-text-opacity: 1;color:rgb(245 158 11 / var(--tw-text-opacity, 1))}.text-amber-600{--tw-text-opacity: 1;color:rgb(217 119 6 / var(--tw-text-opacity, 1))}.text-amber-600\\/70{color:#d97706b3}.text-amber-700{--tw-text-opacity: 1;color:rgb(180 83 9 / var(--tw-text-opacity, 1))}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity, 1))}.text-blue-500{--tw-text-opacity: 1;color:rgb(59 130 246 / var(--tw-text-opacity, 1))}.text-blue-600{--tw-text-opacity: 1;color:rgb(37 99 235 / var(--tw-text-opacity, 1))}.text-blue-600\\/70{color:#2563ebb3}.text-blue-700{--tw-text-opacity: 1;color:rgb(29 78 216 / var(--tw-text-opacity, 1))}.text-current{color:currentColor}.text-emerald-400{--tw-text-opacity: 1;color:rgb(52 211 153 / var(--tw-text-opacity, 1))}.text-emerald-500{--tw-text-opacity: 1;color:rgb(16 185 129 / var(--tw-text-opacity, 1))}.text-emerald-600{--tw-text-opacity: 1;color:rgb(5 150 105 / var(--tw-text-opacity, 1))}.text-emerald-700{--tw-text-opacity: 1;color:rgb(4 120 87 / var(--tw-text-opacity, 1))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity, 1))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.text-green-500{--tw-text-opacity: 1;color:rgb(34 197 94 / var(--tw-text-opacity, 1))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity, 1))}.text-green-600\\/70{color:#16a34ab3}.text-green-700{--tw-text-opacity: 1;color:rgb(21 128 61 / var(--tw-text-opacity, 1))}.text-neutral-400{--tw-text-opacity: 1;color:rgb(163 163 163 / var(--tw-text-opacity, 1))}.text-neutral-900{--tw-text-opacity: 1;color:rgb(23 23 23 / var(--tw-text-opacity, 1))}.text-orange-400{--tw-text-opacity: 1;color:rgb(251 146 60 / var(--tw-text-opacity, 1))}.text-orange-500{--tw-text-opacity: 1;color:rgb(249 115 22 / var(--tw-text-opacity, 1))}.text-purple-600{--tw-text-opacity: 1;color:rgb(147 51 234 / var(--tw-text-opacity, 1))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity, 1))}.text-rose-500{--tw-text-opacity: 1;color:rgb(244 63 94 / var(--tw-text-opacity, 1))}.text-slate-200{--tw-text-opacity: 1;color:rgb(226 232 240 / var(--tw-text-opacity, 1))}.text-slate-300{--tw-text-opacity: 1;color:rgb(203 213 225 / var(--tw-text-opacity, 1))}.text-slate-400{--tw-text-opacity: 1;color:rgb(148 163 184 / var(--tw-text-opacity, 1))}.text-slate-500{--tw-text-opacity: 1;color:rgb(100 116 139 / var(--tw-text-opacity, 1))}.text-slate-600{--tw-text-opacity: 1;color:rgb(71 85 105 / var(--tw-text-opacity, 1))}.text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity, 1))}.text-slate-800{--tw-text-opacity: 1;color:rgb(30 41 59 / var(--tw-text-opacity, 1))}.text-slate-900{--tw-text-opacity: 1;color:rgb(15 23 42 / var(--tw-text-opacity, 1))}.text-teal-700{--tw-text-opacity: 1;color:rgb(15 118 110 / var(--tw-text-opacity, 1))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.text-white\\/20{color:#fff3}.text-white\\/30{color:#ffffff4d}.text-white\\/40{color:#fff6}.text-white\\/60{color:#fff9}.text-white\\/70{color:#ffffffb3}.text-white\\/75{color:#ffffffbf}.text-white\\/80{color:#fffc}.text-white\\/90{color:#ffffffe6}.text-yellow-400{--tw-text-opacity: 1;color:rgb(250 204 21 / var(--tw-text-opacity, 1))}.text-yellow-400\\/30{color:#facc154d}.text-yellow-500{--tw-text-opacity: 1;color:rgb(234 179 8 / var(--tw-text-opacity, 1))}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-10{opacity:.1}.opacity-100{opacity:1}.opacity-15{opacity:.15}.opacity-20{opacity:.2}.opacity-30{opacity:.3}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-80{opacity:.8}.mix-blend-screen{mix-blend-mode:screen}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[0_-20px_50px_rgba\\(0\\,0\\,0\\,0\\.5\\)\\]{--tw-shadow: 0 -20px 50px rgba(0,0,0,.5);--tw-shadow-colored: 0 -20px 50px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[0_0_12px_rgba\\(255\\,107\\,87\\,0\\.15\\)\\]{--tw-shadow: 0 0 12px rgba(255,107,87,.15);--tw-shadow-colored: 0 0 12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[0_0_16px_rgba\\(255\\,138\\,106\\,0\\.25\\)\\]{--tw-shadow: 0 0 16px rgba(255,138,106,.25);--tw-shadow-colored: 0 0 16px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[0_0_20px_rgba\\(255\\,107\\,87\\,0\\.4\\)\\,0_0_40px_rgba\\(255\\,107\\,87\\,0\\.2\\)\\]{--tw-shadow: 0 0 20px rgba(255,107,87,.4),0 0 40px rgba(255,107,87,.2);--tw-shadow-colored: 0 0 20px var(--tw-shadow-color), 0 0 40px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[0_0_20px_rgba\\(255\\,107\\,87\\,0\\.4\\)\\]{--tw-shadow: 0 0 20px rgba(255,107,87,.4);--tw-shadow-colored: 0 0 20px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[0_0_8px_\\#22c55e\\]{--tw-shadow: 0 0 8px #22c55e;--tw-shadow-colored: 0 0 8px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[0_4px_12px_rgba\\(220\\,38\\,38\\,0\\.5\\)\\]{--tw-shadow: 0 4px 12px rgba(220,38,38,.5);--tw-shadow-colored: 0 4px 12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-\\[\\#ff6b57\\]\\/30{--tw-shadow-color: rgb(255 107 87 / .3);--tw-shadow: var(--tw-shadow-colored)}.shadow-amber-500\\/30{--tw-shadow-color: rgb(245 158 11 / .3);--tw-shadow: var(--tw-shadow-colored)}.shadow-black{--tw-shadow-color: #000;--tw-shadow: var(--tw-shadow-colored)}.shadow-emerald-500\\/20{--tw-shadow-color: rgb(16 185 129 / .2);--tw-shadow: var(--tw-shadow-colored)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-2{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-\\[\\#ff6b57\\]{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 107 87 / var(--tw-ring-opacity, 1))}.ring-white\\/20{--tw-ring-color: rgb(255 255 255 / .2)}.blur{--tw-blur: blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-\\[1px\\]{--tw-blur: blur(1px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-lg{--tw-blur: blur(16px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-md{--tw-blur: blur(12px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.blur-xl{--tw-blur: blur(24px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow{--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / .1)) drop-shadow(0 1px 1px rgb(0 0 0 / .06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-lg{--tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / .04)) drop-shadow(0 4px 3px rgb(0 0 0 / .1));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-md{--tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / .07)) drop-shadow(0 2px 2px rgb(0 0 0 / .06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.drop-shadow-sm{--tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / .05));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.grayscale{--tw-grayscale: grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-md{--tw-backdrop-blur: blur(12px);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.backdrop-blur-sm{--tw-backdrop-blur: blur(4px);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-shadow{transition-property:box-shadow;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-150{transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.hide-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.hide-scrollbar::-webkit-scrollbar{display:none}.line-clamp-1{line-clamp:1}.line-clamp-2{line-clamp:2}:root{--gradient-start: #667eea;--gradient-mid: #764ba2;--gradient-end: #f093fb;--neon-cyan: #00f5ff;--neon-purple: #a855f7;--neon-pink: #ec4899;--neon-gold: #fbbf24;--glass-bg: rgba(255, 255, 255, .85);--glass-border: rgba(255, 255, 255, .4);--glass-blur: 12px;--shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);--shadow-md: 0 8px 24px rgba(0, 0, 0, .12);--shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);--shadow-glow: 0 0 20px rgba(0, 245, 255, .3);--transition-fast: .15s cubic-bezier(.4, 0, .2, 1);--transition-normal: .25s cubic-bezier(.4, 0, .2, 1);--transition-slow: .4s cubic-bezier(.4, 0, .2, 1)}.dark{--glass-bg: rgba(15, 23, 42, .85);--glass-border: rgba(255, 255, 255, .1)}.theme-qwik{color-scheme:light;--gradient-start: #ffe7e0;--gradient-mid: #ffd4cb;--gradient-end: #ffbfb0;--neon-cyan: #ff6b57;--neon-purple: #ff6b57;--neon-pink: #ff8a6a;--neon-gold: #ffc59e;--glass-bg: #ffffff;--glass-border: rgba(15, 23, 42, .08);--glass-blur: 10px;--shadow-sm: 0 4px 12px rgba(15, 23, 42, .06);--shadow-md: 0 12px 28px rgba(15, 23, 42, .09);--shadow-lg: 0 18px 42px rgba(15, 23, 42, .14);--shadow-glow: 0 0 16px rgba(255, 107, 87, .28);--qwik-coral: #ff6b57;--qwik-coral-light: #ff8a6a;--qwik-coral-dark: #e55a48}.theme-qwik,.theme-qwik *{color-scheme:light!important}.theme-qwik .bg-slate-900,.theme-qwik [class*=\"dark:bg-slate-900\"],.theme-qwik .bg-slate-950,.theme-qwik [class*=\"dark:bg-slate-950\"],.theme-qwik .bg-slate-800,.theme-qwik [class*=\"dark:bg-slate-800\"]{background-color:#fff!important}.theme-qwik [class*=\"bg-slate-900/\"],.theme-qwik [class*=\"dark:bg-slate-900/\"],.theme-qwik [class*=\"bg-slate-800/\"],.theme-qwik [class*=\"dark:bg-slate-800/\"]{background-color:#fffffff2!important}.theme-qwik .bg-slate-50,.theme-qwik [class*=\"bg-slate-50/\"]{background-color:#f8fafc!important}.theme-qwik .bg-slate-100{background-color:#f1f5f9!important}.theme-qwik .glass-card{background-color:#fff!important;border-color:#e2e8f0!important;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f!important;backdrop-filter:none!important}.theme-qwik .bg-esport{background:linear-gradient(135deg,#fff,#fff7f4,#ffefea)!important}.theme-qwik .bg-fintech{background:linear-gradient(135deg,#ff6b57,#ff8a6a,#ffa07a)!important}.theme-qwik .text-white,.theme-qwik [class*=\"dark:text-white\"]{color:#1e293b!important}.theme-qwik .text-slate-300,.theme-qwik [class*=\"dark:text-slate-300\"],.theme-qwik .text-slate-400,.theme-qwik [class*=\"dark:text-slate-400\"]{color:#64748b!important}.theme-qwik .text-slate-900,.theme-qwik .text-slate-800{color:#0f172a!important}.theme-qwik .bg-indigo-600,.theme-qwik .bg-indigo-500{background-color:#ff6b57!important}.theme-qwik [class*=\"bg-indigo-500/\"],.theme-qwik [class*=\"bg-indigo-600/\"]{background-color:#ff6b571a!important}.theme-qwik .text-indigo-600,.theme-qwik .text-indigo-500,.theme-qwik [class*=\"dark:text-indigo-400\"],.theme-qwik [class*=\"dark:text-indigo-500\"]{color:#ff6b57!important}.theme-qwik .text-purple-500,.theme-qwik .text-purple-400{color:#ff8a6a!important}.theme-qwik [class*=\"bg-purple-500/\"],.theme-qwik [class*=\"bg-purple-600/\"]{background-color:#ff8a6a26!important}.theme-qwik .text-cyan-400,.theme-qwik [class*=\"dark:text-cyan-400\"],.theme-qwik .text-neon-cyan{color:#ff6b57!important}.theme-qwik .bg-neon-cyan{background-color:#ff6b57!important}.theme-qwik [class*=\"bg-neon-cyan/\"],.theme-qwik [class*=\"bg-neon-purple/\"]{background-color:#ff6b574d!important}.theme-qwik [class*=\"border-neon-cyan/\"]{border-color:#ff6b5766!important}.theme-qwik .glow-cyan,.theme-qwik .glow-purple{box-shadow:0 0 20px #ff6b5766,0 0 40px #ff6b5733!important}.theme-qwik .glow-gold{box-shadow:0 0 20px #ff8a6a4d,0 0 40px #ff8a6a26!important}.theme-qwik .shadow-glow-purple{box-shadow:0 0 20px #ff6b5766,0 0 40px #ff6b5733!important}.theme-qwik [class*=\"border-white/\"],.theme-qwik [class*=\"dark:border-slate-700\"],.theme-qwik [class*=\"dark:border-slate-800\"]{border-color:#0f172a1a!important}.theme-qwik [class*=\"ring-white/\"]{--tw-ring-color: rgba(255, 107, 87, .25) !important}.theme-qwik [class*=\"group-hover:ring-indigo\"]{--tw-ring-color: rgba(255, 107, 87, .5) !important}.theme-qwik *:focus{outline-color:#ff6b57!important}.theme-qwik [class*=\"focus:ring-indigo\"],.theme-qwik [class*=\"focus:ring-purple\"]{--tw-ring-color: rgba(255, 107, 87, .5) !important}.theme-qwik .bg-green-200,.theme-qwik [class*=\"dark:bg-green-900\"]{background-color:#ff6b5733!important}.theme-qwik .bg-green-400,.theme-qwik [class*=\"dark:bg-green-700\"]{background-color:#ff6b5773!important}.theme-qwik .bg-green-500,.theme-qwik [class*=\"dark:bg-green-600\"]{background-color:#ff6b57b3!important}.theme-qwik .bg-green-600,.theme-qwik [class*=\"dark:bg-green-500\"]{background-color:#ff6b57!important}.theme-qwik .text-orange-500{color:#ff6b57!important}.theme-qwik .rank-gold{background:linear-gradient(to right,#ff6b57,#ff8a6a)!important;color:#fff!important}.theme-qwik .rarity-epic{box-shadow:0 0 16px #ff6b5766!important}.theme-qwik .rarity-legendary{box-shadow:0 0 20px #ff8a6a80,0 0 40px #ff8a6a40!important}.theme-qwik .bg-green-100{background-color:#ff6b571a!important}.theme-qwik .text-green-700,.theme-qwik [class*=\"dark:text-green-400\"]{color:#ff6b57!important}.theme-qwik .bg-blue-100{background-color:#ff8a6a26!important}.theme-qwik .text-blue-700,.theme-qwik [class*=\"dark:text-blue-400\"]{color:#ff8a6a!important}.theme-qwik .bg-blue-600{background-color:#ff6b57!important}.theme-qwik [class*=\"bg-black/\"]{background-color:#0f172a4d!important}.theme-qwik [class*=\"bg-rose-500/\"]{background-color:#ff6b571a!important}.theme-qwik .text-rose-500{color:#ff6b57!important}.theme-qwik .bg-rose-500{background-color:#ff6b57!important}.theme-qwik .drop-shadow-md{filter:drop-shadow(0 2px 3px rgba(0,0,0,.1))!important}.theme-qwik .drop-shadow-lg{filter:drop-shadow(0 3px 4px rgba(0,0,0,.12))!important}.theme-qwik .backdrop-blur-md,.theme-qwik .backdrop-blur-xl,.theme-qwik .backdrop-blur-sm{backdrop-filter:blur(8px)!important;background-color:#ffffffe6!important}.theme-qwik .text-gradient{background-image:linear-gradient(to right,#ff6b57,#ff8a6a,#ffa07a)!important}.theme-qwik .overflow-y-auto{background-color:#fff}.theme-qwik button:hover{background-color:#ff6b570d}@keyframes pulseRing{0%{transform:scale(1);opacity:.6}50%{transform:scale(1.15);opacity:0}to{transform:scale(1);opacity:0}}@keyframes shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}@keyframes counter{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.hover\\:scale-110:hover{--tw-scale-x: 1.1;--tw-scale-y: 1.1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\\:border-\\[\\#ff6b57\\]\\/30:hover{border-color:#ff6b574d}.hover\\:bg-\\[\\#e55a48\\]:hover{--tw-bg-opacity: 1;background-color:rgb(229 90 72 / var(--tw-bg-opacity, 1))}.hover\\:bg-\\[\\#ff6b57\\]\\/10:hover{background-color:#ff6b571a}.hover\\:bg-\\[\\#ff6b57\\]\\/20:hover{background-color:#ff6b5733}.hover\\:bg-black\\/50:hover{background-color:#00000080}.hover\\:bg-slate-100:hover{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity, 1))}.hover\\:bg-slate-200:hover{--tw-bg-opacity: 1;background-color:rgb(226 232 240 / var(--tw-bg-opacity, 1))}.hover\\:bg-white\\/10:hover{background-color:#ffffff1a}.hover\\:bg-white\\/20:hover{background-color:#fff3}.hover\\:from-\\[\\#ff6b57\\]\\/20:hover{--tw-gradient-from: rgb(255 107 87 / .2) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 107 87 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.hover\\:to-\\[\\#ff8a6a\\]\\/20:hover{--tw-gradient-to: rgb(255 138 106 / .2) var(--tw-gradient-to-position)}.hover\\:text-\\[\\#e55a48\\]:hover{--tw-text-opacity: 1;color:rgb(229 90 72 / var(--tw-text-opacity, 1))}.hover\\:text-red-500:hover{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity, 1))}.hover\\:text-slate-500:hover{--tw-text-opacity: 1;color:rgb(100 116 139 / var(--tw-text-opacity, 1))}.hover\\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hover\\:underline:hover{text-decoration-line:underline}.hover\\:shadow-lg:hover{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.focus\\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\\:ring-\\[\\#ff6b57\\]:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 107 87 / var(--tw-ring-opacity, 1))}.active\\:scale-95:active{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\\:cursor-grabbing:active{cursor:grabbing}.active\\:bg-rose-500\\/20:active{background-color:#f43f5e33}.active\\:bg-slate-500\\/20:active{background-color:#64748b33}.active\\:bg-white\\/10:active{background-color:#ffffff1a}.active\\:bg-white\\/30:active{background-color:#ffffff4d}.active\\:underline:active{text-decoration-line:underline}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\\:bg-neutral-500{--tw-bg-opacity: 1;background-color:rgb(115 115 115 / var(--tw-bg-opacity, 1))}.group:hover .group-hover\\:text-\\[\\#ff6b57\\]{--tw-text-opacity: 1;color:rgb(255 107 87 / var(--tw-text-opacity, 1))}.group:hover .group-hover\\:opacity-100{opacity:1}.group:hover .group-hover\\:ring-\\[\\#ff6b57\\]\\/50{--tw-ring-color: rgb(255 107 87 / .5)}@media (min-width: 640px){.sm\\:h-20{height:5rem}.sm\\:w-20{width:5rem}.sm\\:items-center{align-items:center}.sm\\:rounded-2xl{border-radius:1rem}.sm\\:rounded-3xl{border-radius:1.5rem}.sm\\:p-8{padding:2rem}.sm\\:text-\\[10px\\]{font-size:10px}.sm\\:text-\\[9px\\]{font-size:9px}.sm\\:text-xl{font-size:1.25rem;line-height:1.75rem}}@media (prefers-color-scheme: dark){.dark\\:border-\\[\\#ff6b57\\]{--tw-border-opacity: 1;border-color:rgb(255 107 87 / var(--tw-border-opacity, 1))}.dark\\:border-\\[\\#ff6b57\\]\\/30{border-color:#ff6b574d}.dark\\:border-\\[\\#ff8a6a\\]{--tw-border-opacity: 1;border-color:rgb(255 138 106 / var(--tw-border-opacity, 1))}.dark\\:border-amber-500\\/30{border-color:#f59e0b4d}.dark\\:border-amber-900\\/30{border-color:#78350f4d}.dark\\:border-blue-500\\/30{border-color:#3b82f64d}.dark\\:border-blue-800{--tw-border-opacity: 1;border-color:rgb(30 64 175 / var(--tw-border-opacity, 1))}.dark\\:border-green-500\\/30{border-color:#22c55e4d}.dark\\:border-green-800{--tw-border-opacity: 1;border-color:rgb(22 101 52 / var(--tw-border-opacity, 1))}.dark\\:border-slate-500{--tw-border-opacity: 1;border-color:rgb(100 116 139 / var(--tw-border-opacity, 1))}.dark\\:border-slate-600{--tw-border-opacity: 1;border-color:rgb(71 85 105 / var(--tw-border-opacity, 1))}.dark\\:border-slate-600\\/50{border-color:#47556980}.dark\\:border-slate-700{--tw-border-opacity: 1;border-color:rgb(51 65 85 / var(--tw-border-opacity, 1))}.dark\\:border-slate-800{--tw-border-opacity: 1;border-color:rgb(30 41 59 / var(--tw-border-opacity, 1))}.dark\\:border-slate-900{--tw-border-opacity: 1;border-color:rgb(15 23 42 / var(--tw-border-opacity, 1))}.dark\\:border-teal-800{--tw-border-opacity: 1;border-color:rgb(17 94 89 / var(--tw-border-opacity, 1))}.dark\\:border-transparent{border-color:transparent}.dark\\:border-white\\/10{border-color:#ffffff1a}.dark\\:bg-\\[\\#e55a48\\]\\/20{background-color:#e55a4833}.dark\\:bg-\\[\\#ff6b57\\]\\/10{background-color:#ff6b571a}.dark\\:bg-\\[\\#ff6b57\\]\\/20{background-color:#ff6b5733}.dark\\:bg-\\[\\#ff8a6a\\]\\/10{background-color:#ff8a6a1a}.dark\\:bg-\\[\\#ff8a6a\\]\\/20{background-color:#ff8a6a33}.dark\\:bg-amber-900\\/10{background-color:#78350f1a}.dark\\:bg-amber-900\\/30{background-color:#78350f4d}.dark\\:bg-amber-900\\/40{background-color:#78350f66}.dark\\:bg-blue-500\\/20{background-color:#3b82f633}.dark\\:bg-blue-900\\/20{background-color:#1e3a8a33}.dark\\:bg-blue-900\\/30{background-color:#1e3a8a4d}.dark\\:bg-emerald-900\\/30{background-color:#064e3b4d}.dark\\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity, 1))}.dark\\:bg-green-100\\/30{background-color:#dcfce74d}.dark\\:bg-green-500{--tw-bg-opacity: 1;background-color:rgb(34 197 94 / var(--tw-bg-opacity, 1))}.dark\\:bg-green-500\\/20{background-color:#22c55e33}.dark\\:bg-green-600{--tw-bg-opacity: 1;background-color:rgb(22 163 74 / var(--tw-bg-opacity, 1))}.dark\\:bg-green-700{--tw-bg-opacity: 1;background-color:rgb(21 128 61 / var(--tw-bg-opacity, 1))}.dark\\:bg-green-900{--tw-bg-opacity: 1;background-color:rgb(20 83 45 / var(--tw-bg-opacity, 1))}.dark\\:bg-green-900\\/20{background-color:#14532d33}.dark\\:bg-green-900\\/30{background-color:#14532d4d}.dark\\:bg-orange-500\\/20{background-color:#f9731633}.dark\\:bg-purple-900\\/30{background-color:#581c874d}.dark\\:bg-purple-900\\/40{background-color:#581c8766}.dark\\:bg-slate-700{--tw-bg-opacity: 1;background-color:rgb(51 65 85 / var(--tw-bg-opacity, 1))}.dark\\:bg-slate-700\\/50{background-color:#33415580}.dark\\:bg-slate-800{--tw-bg-opacity: 1;background-color:rgb(30 41 59 / var(--tw-bg-opacity, 1))}.dark\\:bg-slate-800\\/30{background-color:#1e293b4d}.dark\\:bg-slate-800\\/50{background-color:#1e293b80}.dark\\:bg-slate-900{--tw-bg-opacity: 1;background-color:rgb(15 23 42 / var(--tw-bg-opacity, 1))}.dark\\:bg-slate-900\\/50{background-color:#0f172a80}.dark\\:bg-slate-950{--tw-bg-opacity: 1;background-color:rgb(2 6 23 / var(--tw-bg-opacity, 1))}.dark\\:bg-teal-900\\/20{background-color:#134e4a33}.dark\\:bg-white\\/5{background-color:#ffffff0d}.dark\\:from-\\[\\#ff6b57\\]\\/10{--tw-gradient-from: rgb(255 107 87 / .1) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 107 87 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\\:from-\\[\\#ff6b57\\]\\/20{--tw-gradient-from: rgb(255 107 87 / .2) var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 107 87 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\\:from-amber-500\\/20{--tw-gradient-from: rgb(245 158 11 / .2) var(--tw-gradient-from-position);--tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\\:from-blue-500\\/20{--tw-gradient-from: rgb(59 130 246 / .2) var(--tw-gradient-from-position);--tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\\:from-green-500\\/20{--tw-gradient-from: rgb(34 197 94 / .2) var(--tw-gradient-from-position);--tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\\:to-\\[\\#ff8a6a\\]\\/10{--tw-gradient-to: rgb(255 138 106 / .1) var(--tw-gradient-to-position)}.dark\\:to-\\[\\#ff8a6a\\]\\/20{--tw-gradient-to: rgb(255 138 106 / .2) var(--tw-gradient-to-position)}.dark\\:to-emerald-500\\/20{--tw-gradient-to: rgb(16 185 129 / .2) var(--tw-gradient-to-position)}.dark\\:to-indigo-500\\/20{--tw-gradient-to: rgb(99 102 241 / .2) var(--tw-gradient-to-position)}.dark\\:to-yellow-500\\/20{--tw-gradient-to: rgb(234 179 8 / .2) var(--tw-gradient-to-position)}.dark\\:text-\\[\\#ff6b57\\]{--tw-text-opacity: 1;color:rgb(255 107 87 / var(--tw-text-opacity, 1))}.dark\\:text-\\[\\#ff6b57\\]\\/70{color:#ff6b57b3}.dark\\:text-\\[\\#ff8a6a\\]{--tw-text-opacity: 1;color:rgb(255 138 106 / var(--tw-text-opacity, 1))}.dark\\:text-\\[\\#ff8a6a\\]\\/70{color:#ff8a6ab3}.dark\\:text-amber-400{--tw-text-opacity: 1;color:rgb(251 191 36 / var(--tw-text-opacity, 1))}.dark\\:text-amber-400\\/70{color:#fbbf24b3}.dark\\:text-blue-300{--tw-text-opacity: 1;color:rgb(147 197 253 / var(--tw-text-opacity, 1))}.dark\\:text-blue-400{--tw-text-opacity: 1;color:rgb(96 165 250 / var(--tw-text-opacity, 1))}.dark\\:text-blue-400\\/70{color:#60a5fab3}.dark\\:text-emerald-400{--tw-text-opacity: 1;color:rgb(52 211 153 / var(--tw-text-opacity, 1))}.dark\\:text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity, 1))}.dark\\:text-green-300{--tw-text-opacity: 1;color:rgb(134 239 172 / var(--tw-text-opacity, 1))}.dark\\:text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity, 1))}.dark\\:text-green-400\\/70{color:#4ade80b3}.dark\\:text-orange-400{--tw-text-opacity: 1;color:rgb(251 146 60 / var(--tw-text-opacity, 1))}.dark\\:text-purple-400{--tw-text-opacity: 1;color:rgb(192 132 252 / var(--tw-text-opacity, 1))}.dark\\:text-slate-200{--tw-text-opacity: 1;color:rgb(226 232 240 / var(--tw-text-opacity, 1))}.dark\\:text-slate-300{--tw-text-opacity: 1;color:rgb(203 213 225 / var(--tw-text-opacity, 1))}.dark\\:text-slate-400{--tw-text-opacity: 1;color:rgb(148 163 184 / var(--tw-text-opacity, 1))}.dark\\:text-slate-500{--tw-text-opacity: 1;color:rgb(100 116 139 / var(--tw-text-opacity, 1))}.dark\\:text-slate-600{--tw-text-opacity: 1;color:rgb(71 85 105 / var(--tw-text-opacity, 1))}.dark\\:text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity, 1))}.dark\\:text-teal-300{--tw-text-opacity: 1;color:rgb(94 234 212 / var(--tw-text-opacity, 1))}.dark\\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.dark\\:text-white\\/40{color:#fff6}.dark\\:text-white\\/50{color:#ffffff80}.dark\\:text-white\\/70{color:#ffffffb3}.dark\\:text-yellow-400{--tw-text-opacity: 1;color:rgb(250 204 21 / var(--tw-text-opacity, 1))}.dark\\:hover\\:border-\\[\\#ff6b57\\]\\/30:hover{border-color:#ff6b574d}.dark\\:hover\\:bg-\\[\\#ff6b57\\]\\/20:hover{background-color:#ff6b5733}.dark\\:hover\\:bg-slate-800:hover{--tw-bg-opacity: 1;background-color:rgb(30 41 59 / var(--tw-bg-opacity, 1))}}\n";
|
|
4
|
+
//# sourceMappingURL=widgetAssets.d.ts.map
|