{"version":3,"file":"rCKgqZmgK.qOthc3NX.mjs","names":["handleActions","containerStyle","checkboxStyle","CheckBoxVariant","GtmConsentOption","Component","Checkbox","v0","v1","__FramerMetadata__","valuesByLocaleId","localizedValues","__FramerMetadata__","getLocalizedValue","localizedValues","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","__FramerMetadata__","_AllCookieBannerText","_AllCookieBannerTextInfo","Checkbox1","_BricksButton","_BricksButtonInfo","className","css"],"sources":["https:/framerusercontent.com/modules/VqaHB3gIRuIUtWjo3LNk/7APsVvTxh9wM4MAEGPy4/Checkbox.js","https:/framerusercontent.com/modules/6NF7iBrtxcVlRTQv2ZjZ/dhjswW5ekfpGeRYmruFp/CookieBanner.js","https:/framerusercontent.com/modules/1TKv6OPKZq8pM5FlFpSo/fXvVpQPFGqGhw5zeC8FH/Checkbox_1.js","https:/framerusercontent.com/modules/egA2cTJp5o7vhVy0Yzq7/AdtnrcrMQbFdDYKzMNSX/rCKgqZmgK-0.js","https:/framerusercontent.com/modules/egA2cTJp5o7vhVy0Yzq7/AdtnrcrMQbFdDYKzMNSX/rCKgqZmgK.js","https:/framerusercontent.com/modules/Y0edZJmXzRorFQLRCZXT/NxsM5vptiX8A6sy5Z09A/YTc4Yuvxa-0.js","https:/framerusercontent.com/modules/Y0edZJmXzRorFQLRCZXT/NxsM5vptiX8A6sy5Z09A/YTc4Yuvxa.js","https:/framerusercontent.com/modules/ov0Nsqu9O30nzLUomLDp/Tv3qTcNv33YRcXlpCxJo/YTc4Yuvxa.js","https:/framerusercontent.com/modules/7V4VkeCUZnErx8O5pjc8/fblEkqj37Vocg3DmHty1/rCKgqZmgK.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{colorTokentoValue}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";async function handleActions(callbacks){for(const cb of callbacks){if(!cb)continue;const value=await cb();if(value===false)break;}}/**\n * CHECKBOX\n *\n * @framerIntrinsicWidth 20\n * @framerIntrinsicHeight 20\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Checkbox(props){let{activeBackground,onToggle,onCheck,onUncheck,isChecked,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,checkSize,color,inactiveBackground,inactiveBorder,activeBorder,hasBorder,borderWidth,transition,backgroundTransition,initialAnimation,disabled,joinType,strokeWidth}=props;const[checked,setChecked]=useState(isChecked);const borderRadius=isMixed?`${topLeft}px ${topRight}px ${bottomRight}px ${bottomLeft}px`:`${radius}px`;useEffect(()=>{setChecked(isChecked);},[isChecked]);initialAnimation=RenderTarget.current()!==RenderTarget.preview?false:initialAnimation;const inactiveBorderStyle=`${borderWidth}px solid ${colorTokentoValue(inactiveBorder)}`;const activeBorderStyle=`${borderWidth}px solid ${colorTokentoValue(activeBorder)}`;const animationBuffer=15;const pathLength=8.5;return(/*#__PURE__*/ _jsx(\"div\",{style:containerStyle,\"data-framer-highlight\":!disabled,children:/*#__PURE__*/ _jsx(motion.div,{// @ts-ignore\nstyle:{...checkboxStyle,borderRadius},initial:initialAnimation?{background:checked?colorTokentoValue(inactiveBackground):colorTokentoValue(activeBackground)}:false,animate:{background:checked?colorTokentoValue(activeBackground):colorTokentoValue(inactiveBackground),border:hasBorder?checked?activeBorderStyle:inactiveBorderStyle:\"none\"},transition:backgroundTransition,onTap:()=>{if(disabled)return;handleActions([()=>onToggle&&onToggle(!checked),onCheck,onUncheck,()=>setChecked(!checked),]);},children:/*#__PURE__*/ _jsx(\"svg\",{viewBox:\"0 0 12 12\",style:{margin:1,width:`${checkSize}%`,height:`${checkSize}%`},children:/*#__PURE__*/ _jsx(motion.path,{d:\"M3 6l2 2 4-4\",fill:\"transparent\",strokeWidth:strokeWidth,stroke:color,strokeLinecap:\"round\",strokeLinejoin:joinType,strokeDasharray:pathLength+animationBuffer,transition:transition,initial:{strokeDashoffset:initialAnimation?checked?pathLength+animationBuffer:animationBuffer:checked?animationBuffer:pathLength+animationBuffer},// initial={false}\nanimate:{strokeDashoffset:checked?animationBuffer:pathLength+animationBuffer+3}})})})}));}Checkbox.defaultProps={height:20,width:20,text:\"Get started!\",activeBackground:\"#0099ff\",activeBorder:\"#0066FF\",inactiveBackground:\"#EBEBEB\",inactiveBorder:\"#a5a5a5\",hasBorder:false,radius:5,isChecked:true,borderWidth:1,strokeWidth:1.5,joinType:\"round\",checkSize:100,color:\"white\",initialAnimation:false,disabled:false,transition:{duration:0.15,ease:[0.12,0.23,0.5,1],type:\"tween\"},backgroundTransition:{duration:0.15,ease:[0.12,0.23,0.5,1],type:\"tween\"}};// Learn more: https://framer.com/api/property-controls/\naddPropertyControls(Checkbox,{isChecked:{title:\"Checked\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},disabled:{title:\"Disabled\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},hasBorder:{title:\"Border\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},borderWidth:{title:\"Width\",type:ControlType.Number,defaultValue:Checkbox.defaultProps.borderWidth,hidden:({hasBorder})=>!hasBorder},activeBorder:{title:\"Active\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.activeBackground,hidden:({hasBorder})=>!hasBorder},inactiveBorder:{title:\"Inactive\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.inactiveBackground,hidden:({hasBorder})=>!hasBorder},activeBackground:{title:\"Active\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.activeBackground},inactiveBackground:{title:\"Inactive\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.inactiveBackground},color:{title:\"Check\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.color},checkSize:{title:\"Check Size\",type:ControlType.Number,unit:\"%\",min:0,max:100,defaultValue:Checkbox.defaultProps.checkSize},joinType:{title:\"Corner\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"miter\",\"round\"],optionTitles:[\"Square\",\"Round\"]},strokeWidth:{title:\"Thickness\",type:ControlType.Number,min:1,max:5,step:0.5,displayStepper:true},radius:{title:\"Radius\",type:ControlType.FusedNumber,defaultValue:Checkbox.defaultProps.radius,toggleKey:\"isMixed\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},transition:{title:\"Check\",type:ControlType.Transition,defaultValue:Checkbox.defaultProps.transition},backgroundTransition:{title:\"Fill\",type:ControlType.Transition,defaultValue:Checkbox.defaultProps.transition},initialAnimation:{title:\"On Load\",type:ControlType.Boolean,enabledTitle:\"Animate\",disabledTitle:\"Instant\"},onToggle:{type:ControlType.EventHandler},onCheck:{type:ControlType.EventHandler},onUncheck:{type:ControlType.EventHandler}});const containerStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",height:\"100%\",width:\"100%\",position:\"absolute\",left:0,right:0,top:0,bottom:0};const checkboxStyle={width:\"100%\",height:\"100%\",borderRadius:6,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",cursor:\"pointer\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Checkbox\":{\"type\":\"reactComponent\",\"name\":\"Checkbox\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"20\",\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"CheckboxProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Checkbox.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{saveCookieIndefinitely,useIsSsrLegacy}from\"https://framer.com/m/Utils-RI0s.js@QpPzOjxmAUwVUpygSxEC\";/**\n * The store used to share the checkbox states and save button actions. By default all cookies types are set to true.\n */const useStore=createStore({useMarketing:true,useAnalytics:true});var CheckBoxVariant;/**\n * The checkbox component variants' names\n */(function(CheckBoxVariant){CheckBoxVariant[\"checked\"]=\"Checked\";CheckBoxVariant[\"unchecked\"]=\"Unchecked\";})(CheckBoxVariant||(CheckBoxVariant={}));var GtmConsentOption;/**\n * The allowed values for GTM's consent categories\n */(function(GtmConsentOption){GtmConsentOption[\"granted\"]=\"granted\";GtmConsentOption[\"denied\"]=\"denied\";})(GtmConsentOption||(GtmConsentOption={}));/**\n * Override to show the banner only if cookies are not set in the user's browser\n */export const cookieBannerVisibility=Component=>{return props=>{const isServer=useIsSsrLegacy();const _document=isServer?null:window.document;const isConsentPolicyAlreadySet=(_document===null||_document===void 0?void 0:_document.cookie.indexOf(\"rcl_consent_given=\"))>=0;return isServer||isConsentPolicyAlreadySet?null:/*#__PURE__*/_jsx(Component,{...props});};};/**\n * Override for the analyctics cookies checkbox that captures click event for the cookies\n */export const marketingClickCapture=Component=>{return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{setStore({useMarketing:!store.useMarketing,useAnalytics:store.useAnalytics});}});};};/**\n * Override for the marketing cookies checkbox\n */export const necessaryCheckbox=Component=>{return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{cursor:\"not-allowed\"}});};};/**\n * Override for the marketing cookies checkbox\n */export const marketingCheckbox=Component=>{return props=>{const[store,setStore]=useStore();const[variant,setVariant]=useState(\"Checked\");useEffect(()=>{setVariant(()=>!store.useMarketing?\"Checked\":\"Unchecked\");},[store.useMarketing]);return /*#__PURE__*/_jsx(Component,{...props,variant:variant});};};/**\n * Override for the analyctics cookies checkbox that captures click event for the cookies\n */export const analycticsClickCapture=Component=>{return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{setStore({useMarketing:store.useMarketing,useAnalytics:!store.useAnalytics});}});};};/**\n * Override for the analyctics cookies checkbox\n */export const analycticsCheckbox=Component=>{return props=>{const[store,setStore]=useStore();const[variant,setVariant]=useState(\"Checked\");useEffect(()=>{setVariant(()=>!store.useAnalytics?\"Checked\":\"Unchecked\");},[store.useAnalytics]);return /*#__PURE__*/_jsx(Component,{...props,variant:variant});};};/**\n * Override for the accept selection button\n * Loads the relevant tracking scripts upon click based on checkbox states\n */export const acceptSelectedButton=Component=>{return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{setConsent({necessary:true,analytics:store.useAnalytics,preferences:true,marketing:store.useMarketing});}});};};/**\n * Override for the accept all button\n * Loads all tracking scripts regardless of checkbox states\n */export const acceptAllButton=Component=>{return props=>{const[store,setStore]=useStore();const handleClick=()=>{setConsent({necessary:true,analytics:true,preferences:true,marketing:true});};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};};/**\n * Fire GTM scripts according to the given consent config\n */function setConsent(consentTo){window.gtag(\"consent\",\"update\",consentTo);saveCookies(consentTo);localStorage.setItem(\"consentMode\",JSON.stringify(convertCustomToGtmConsentConfig(consentTo)));location.reload()//force page reload to fire function in head load cookies\n;}/**\n * Helper function to convert our custom consent config to the GTM one\n */function convertCustomToGtmConsentConfig(consentTo){return{functionality_storage:consentTo.necessary?\"granted\":\"denied\",security_storage:consentTo.necessary?\"granted\":\"denied\",ad_storage:consentTo.marketing?\"granted\":\"denied\",analytics_storage:consentTo.analytics?\"granted\":\"denied\",personalization:consentTo.preferences?\"granted\":\"denied\"};}/**\n * Save the provided consent config to document.cookie (needed for syncing cookies with internal platform)\n */function saveCookies(consentTo){saveCookieIndefinitely(\"rcl_preferences_consent\",consentTo.preferences?\"true\":\"false\");saveCookieIndefinitely(\"rcl_marketing_consent\",consentTo.marketing?\"true\":\"false\");saveCookieIndefinitely(\"rcl_statistics_consent\",consentTo.analytics?\"true\":\"false\");saveCookieIndefinitely(\"rcl_consent_given\",\"true\");}\nexport const __FramerMetadata__ = {\"exports\":{\"analycticsClickCapture\":{\"type\":\"reactHoc\",\"name\":\"analycticsClickCapture\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"marketingCheckbox\":{\"type\":\"reactHoc\",\"name\":\"marketingCheckbox\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"marketingClickCapture\":{\"type\":\"reactHoc\",\"name\":\"marketingClickCapture\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"cookieBannerVisibility\":{\"type\":\"reactHoc\",\"name\":\"cookieBannerVisibility\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"acceptSelectedButton\":{\"type\":\"reactHoc\",\"name\":\"acceptSelectedButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"analycticsCheckbox\":{\"type\":\"reactHoc\",\"name\":\"analycticsCheckbox\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"acceptAllButton\":{\"type\":\"reactHoc\",\"name\":\"acceptAllButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"necessaryCheckbox\":{\"type\":\"reactHoc\",\"name\":\"necessaryCheckbox\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CookieBanner.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{colorTokentoValue}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";async function handleActions(callbacks){for(const cb of callbacks){if(!cb)continue;const value=await cb();if(value===false)break;}}/**\n * CHECKBOX\n *\n * @framerIntrinsicWidth 20\n * @framerIntrinsicHeight 20\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Checkbox(props){let{activeBackground,onToggle,onCheck,onUncheck,isChecked,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,checkSize,color,inactiveBackground,inactiveBorder,activeBorder,hasBorder,borderWidth,transition,backgroundTransition,initialAnimation,disabled,joinType,strokeWidth}=props;const[checked,setChecked]=useState(isChecked);const borderRadius=isMixed?`${topLeft}px ${topRight}px ${bottomRight}px ${bottomLeft}px`:`${radius}px`;useEffect(()=>{setChecked(isChecked);},[isChecked]);initialAnimation=RenderTarget.current()!==RenderTarget.preview?false:initialAnimation;const inactiveBorderStyle=`${borderWidth}px solid ${colorTokentoValue(inactiveBorder)}`;const activeBorderStyle=`${borderWidth}px solid ${colorTokentoValue(activeBorder)}`;const animationBuffer=15;const pathLength=8.5;return /*#__PURE__*/_jsx(\"div\",{style:containerStyle,\"data-framer-highlight\":!disabled,children:/*#__PURE__*/_jsx(motion.div,{// @ts-ignore\nstyle:{...checkboxStyle,borderRadius},initial:initialAnimation?{background:checked?colorTokentoValue(inactiveBackground):colorTokentoValue(activeBackground)}:false,animate:{background:checked?colorTokentoValue(activeBackground):colorTokentoValue(inactiveBackground),border:hasBorder?checked?activeBorderStyle:inactiveBorderStyle:\"none\"},transition:backgroundTransition,onTap:()=>{if(disabled)return;handleActions([()=>onToggle&&onToggle(!checked),onCheck,onUncheck,()=>setChecked(!checked)]);},children:/*#__PURE__*/_jsx(\"svg\",{viewBox:\"0 0 12 12\",style:{margin:1,width:`${checkSize}%`,height:`${checkSize}%`},children:/*#__PURE__*/_jsx(motion.path,{d:\"M3 6l2 2 4-4\",fill:\"transparent\",strokeWidth:strokeWidth,stroke:color,strokeLinecap:\"round\",strokeLinejoin:joinType,strokeDasharray:pathLength+animationBuffer,transition:transition,initial:{strokeDashoffset:initialAnimation?checked?pathLength+animationBuffer:animationBuffer:checked?animationBuffer:pathLength+animationBuffer},// initial={false}\nanimate:{strokeDashoffset:checked?animationBuffer:pathLength+animationBuffer+3}})})})});}Checkbox.defaultProps={height:20,width:20,text:\"Get started!\",activeBackground:\"#0099ff\",activeBorder:\"#0066FF\",inactiveBackground:\"#EBEBEB\",inactiveBorder:\"#a5a5a5\",hasBorder:false,radius:5,isChecked:true,borderWidth:1,strokeWidth:1.5,joinType:\"round\",checkSize:100,color:\"white\",initialAnimation:false,disabled:false,transition:{duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},backgroundTransition:{duration:.15,ease:[.12,.23,.5,1],type:\"tween\"}};// Learn more: https://framer.com/api/property-controls/\naddPropertyControls(Checkbox,{isChecked:{title:\"Checked\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},disabled:{title:\"Disabled\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},hasBorder:{title:\"Border\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},borderWidth:{title:\"Width\",type:ControlType.Number,defaultValue:Checkbox.defaultProps.borderWidth,hidden:({hasBorder})=>!hasBorder},activeBorder:{title:\"Active\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.activeBackground,hidden:({hasBorder})=>!hasBorder},inactiveBorder:{title:\"Inactive\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.inactiveBackground,hidden:({hasBorder})=>!hasBorder},activeBackground:{title:\"Active\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.activeBackground},inactiveBackground:{title:\"Inactive\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.inactiveBackground},color:{title:\"Check\",type:ControlType.Color,defaultValue:Checkbox.defaultProps.color},checkSize:{title:\"Check Size\",type:ControlType.Number,unit:\"%\",min:0,max:100,defaultValue:Checkbox.defaultProps.checkSize},joinType:{title:\"Corner\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"miter\",\"round\"],optionTitles:[\"Square\",\"Round\"]},strokeWidth:{title:\"Thickness\",type:ControlType.Number,min:1,max:5,step:.5,displayStepper:true},radius:{title:\"Radius\",type:ControlType.FusedNumber,defaultValue:Checkbox.defaultProps.radius,toggleKey:\"isMixed\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},transition:{title:\"Check\",type:ControlType.Transition,defaultValue:Checkbox.defaultProps.transition},backgroundTransition:{title:\"Fill\",type:ControlType.Transition,defaultValue:Checkbox.defaultProps.transition},initialAnimation:{title:\"On Load\",type:ControlType.Boolean,enabledTitle:\"Animate\",disabledTitle:\"Instant\"},onToggle:{type:ControlType.EventHandler},onCheck:{type:ControlType.EventHandler},onUncheck:{type:ControlType.EventHandler}});const containerStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",height:\"100%\",width:\"100%\",position:\"absolute\",left:0,right:0,top:0,bottom:0};const checkboxStyle={width:\"100%\",height:\"100%\",borderRadius:6,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",cursor:\"pointer\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\"};\nexport const __FramerMetadata__ = {\"exports\":{\"CheckboxProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Checkbox\":{\"type\":\"reactComponent\",\"name\":\"Checkbox\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"20\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Checkbox_1.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",children:\"Required\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Preferences\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Analytics\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Marketing\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Functional\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Partners\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Statistics\"})});export const v7=\"Accept all\";export const v8=\"Adjust\";export const v9=\"Save\";\nexport const __FramerMetadata__ = {\"exports\":{\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f712822)\nimport*as localizedValues from\"./rCKgqZmgK-0.js\";const valuesByLocaleId={MrJV6n5aK:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Link}from\"framer\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:['We use cookies to provide you with the best possible experience on our website. These cookies are essential for the smooth functioning of our website and are always set. We also use third-party cookies to improve the performance of our website, generate statistics and display personalized content. By clicking \"Accept\", you consent to the use of all cookies.',/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),'However, you can change your cookie settings at any time by clicking \"Customize settings\". Further information about cookies and your privacy can be found in our ',/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Gi5uNkwDk:\"cookie-policy\"},unresolvedPathSlugs:{Gi5uNkwDk:{collectionId:\"GFrLi6GQG\",collectionItemId:\"vr5S2oh3t\"}},webPageId:\"Lngq8PjRk\"},motionChild:true,nodeId:\"fjd38JAzZ\",openInNewTab:false,scopeId:\"YTc4Yuvxa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1nxc5x4\",\"data-styles-preset\":\"IHffU01fW\",children:\"Cookie Policy\"})}),\".\"]})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:['We use cookies to provide you with the best possible experience on our website. These cookies are essential for the smooth functioning of our website and are always set. We also use third-party cookies to improve the performance of our website, generate statistics, and display personalized content. By clicking \"Accept\", you agree to the use of all cookies. ',/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),'However, you can change your cookie settings at any time by clicking \"Adjust settings\". For more information about cookies and your privacy, please see our ',/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Gi5uNkwDk:\"cookie-policy\"},unresolvedPathSlugs:{Gi5uNkwDk:{collectionId:\"GFrLi6GQG\",collectionItemId:\"vr5S2oh3t\"}},webPageId:\"Lngq8PjRk\"},motionChild:true,nodeId:\"NPqoME_3B\",openInNewTab:false,scopeId:\"YTc4Yuvxa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1nxc5x4\",\"data-styles-preset\":\"IHffU01fW\",children:\"cookie policy\"})}),\". \"]})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f712822)\nimport*as localizedValues from\"./YTc4Yuvxa-0.js\";const valuesByLocaleId={MrJV6n5aK:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1w0aZP27vA4skpH9AHDf/1TvKgpKgHfV7SAxVsl2V/gVdWbQjcb.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1wigdw2pQ0KDeA3A5YQJ/BUOOZ3C9kKbUrIXU3NR4/IHffU01fW.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/Y0edZJmXzRorFQLRCZXT/NxsM5vptiX8A6sy5Z09A/YTc4Yuvxa.js\";const serializationHash=\"framer-jgyyJ\";const variantClassNames={tbP9Zop2E:\"framer-v-1tcay2p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const contains=(a,b)=>{if(typeof a===\"string\"&&typeof b===\"string\"){return a.toLowerCase().includes(b.toLowerCase());}if(Array.isArray(a)&&typeof b===\"string\"){return a.includes(b);}return false;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({countryCodes,height,id,width,...props})=>{return{...props,imTcqWJA_:countryCodes??props.imTcqWJA_};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,imTcqWJA_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"tbP9Zop2E\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=contains(imTcqWJA_,\"CH\");const visible1=contains(imTcqWJA_,\"DE\");return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tcay2p\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tbP9Zop2E\",ref:refBinding,style:{...style},children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:'Wir verwenden Cookies, um Ihnen die bestm\\xf6gliche Erfahrung auf unserer Webseite zu bieten. Diese Cookies sind f\\xfcr das reibungslose Funktionieren unserer Website unerl\\xe4sslich und werden immer gesetzt. Wir verwenden auch Cookies von Drittanbietern, um die Leistung unserer Website zu verbessern, Statistiken zu erstellen und personalisierte Inhalte anzuzeigen.  Durch Klicken auf \"Akzeptieren\" stimmen Sie der Verwendung aller Cookies zu. '}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1ais0t9, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:'Sie k\\xf6nnen Ihre Cookie-Einstellungen jedoch jederzeit \\xe4ndern, indem Sie auf \"Einstellungen anpassen\" klicken. Weitere Informationen zu Cookies und Ihrer Privatsph\\xe4re finden Sie in unserer '}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Gi5uNkwDk:\"cookie-policy\"},unresolvedPathSlugs:{Gi5uNkwDk:{collectionId:\"GFrLi6GQG\",collectionItemId:\"vr5S2oh3t\"}},webPageId:\"Lngq8PjRk\"},motionChild:true,nodeId:\"fjd38JAzZ\",openInNewTab:false,scopeId:\"YTc4Yuvxa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1nxc5x4\",\"data-styles-preset\":\"IHffU01fW\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-opzb7y, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:\"Cookie-Richtlinie\"})})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-143mgqx, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:\".\"})]})}),className:\"framer-1qgpr0f\",\"data-framer-name\":\"CH\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fjd38JAzZ\",style:{\"--extracted-143mgqx\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\",\"--extracted-1ais0t9\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\",\"--extracted-1w3ko1f\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\",\"--extracted-opzb7y\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\"},verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:'Wir verwenden Cookies, um Ihnen die bestm\\xf6gliche Erfahrung auf unserer Webseite zu bieten. Diese Cookies sind f\\xfcr das reibungslose Funktionieren unserer Website unerl\\xe4sslich und werden immer gesetzt. Wir verwenden auch Cookies von Drittanbietern, um die Leistung unserer Website zu verbessern, Statistiken zu erstellen und personalisierte Inhalte anzuzeigen.  Durch Klicken auf \"Akzeptieren\" stimmen Sie der Verwendung aller Cookies zu. '}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1ais0t9, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:'Sie k\\xf6nnen Ihre Cookie-Einstellungen jedoch jederzeit \\xe4ndern, indem Sie auf \"Einstellungen anpassen\" klicken. Weitere Informationen zu Cookies und Ihrer Privatsph\\xe4re finden Sie in unserer '}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Gi5uNkwDk:\"cookie-policy\"},unresolvedPathSlugs:{Gi5uNkwDk:{collectionId:\"GFrLi6GQG\",collectionItemId:\"vr5S2oh3t\"}},webPageId:\"Lngq8PjRk\"},motionChild:true,nodeId:\"NPqoME_3B\",openInNewTab:false,scopeId:\"YTc4Yuvxa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1nxc5x4\",\"data-styles-preset\":\"IHffU01fW\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-opzb7y, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:\"Cookie-Richtlinie\"})})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-143mgqx, var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31)))\"},children:\". \"})]})}),className:\"framer-16gkwqn\",\"data-framer-name\":\"DE\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NPqoME_3B\",style:{\"--extracted-143mgqx\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\",\"--extracted-1ais0t9\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\",\"--extracted-1w3ko1f\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\",\"--extracted-opzb7y\":\"var(--token-b2a365b4-7d37-4e39-86f3-4956acf4c9de, rgb(15, 12, 31))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jgyyJ.framer-1his3y0, .framer-jgyyJ .framer-1his3y0 { display: block; }\",\".framer-jgyyJ.framer-1tcay2p { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 228px; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: 554px; }\",\".framer-jgyyJ .framer-1qgpr0f, .framer-jgyyJ .framer-16gkwqn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jgyyJ.framer-1tcay2p { gap: 0px; } .framer-jgyyJ.framer-1tcay2p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jgyyJ.framer-1tcay2p > :first-child { margin-top: 0px; } .framer-jgyyJ.framer-1tcay2p > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 228\n * @framerIntrinsicWidth 554\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"imTcqWJA_\":\"countryCodes\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerYTc4Yuvxa=withCSS(Component,css,\"framer-jgyyJ\");export default FramerYTc4Yuvxa;FramerYTc4Yuvxa.displayName=\"_All/Cookie Banner Text\";FramerYTc4Yuvxa.defaultProps={height:228,width:554};addPropertyControls(FramerYTc4Yuvxa,{imTcqWJA_:{defaultValue:\"\",title:\"Country Codes\",type:ControlType.String}});addFonts(FramerYTc4Yuvxa,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYTc4Yuvxa\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"554\",\"framerVariables\":\"{\\\"imTcqWJA_\\\":\\\"countryCodes\\\"}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"228\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Checkbox}from\"https://framerusercontent.com/modules/VqaHB3gIRuIUtWjo3LNk/7APsVvTxh9wM4MAEGPy4/Checkbox.js\";import{acceptAllButton,acceptSelectedButton,analycticsCheckbox,analycticsClickCapture,cookieBannerVisibility,marketingCheckbox,marketingClickCapture,necessaryCheckbox}from\"https://framerusercontent.com/modules/6NF7iBrtxcVlRTQv2ZjZ/dhjswW5ekfpGeRYmruFp/CookieBanner.js\";import{Checkbox as Checkbox1}from\"https://framerusercontent.com/modules/1TKv6OPKZq8pM5FlFpSo/fXvVpQPFGqGhw5zeC8FH/Checkbox_1.js\";import{countryCodeSwapping}from\"https://framerusercontent.com/modules/9VbVA1EMB31MyfPs0M1Q/doOHhePTbGgSczHyEhsr/TldBasedComponentConfig.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1w0aZP27vA4skpH9AHDf/1TvKgpKgHfV7SAxVsl2V/gVdWbQjcb.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/egA2cTJp5o7vhVy0Yzq7/AdtnrcrMQbFdDYKzMNSX/rCKgqZmgK.js\";import _BricksButton,*as _BricksButtonInfo from\"https://framerusercontent.com/modules/8SOPIkUSH9ARh01WoExi/uPTFFK536MO8na1CQuhR/x7xYKLqc3.js\";import _AllCookieBannerText,*as _AllCookieBannerTextInfo from\"https://framerusercontent.com/modules/ov0Nsqu9O30nzLUomLDp/Tv3qTcNv33YRcXlpCxJo/YTc4Yuvxa.js\";const _AllCookieBannerTextFonts=getFonts(_AllCookieBannerText);const _AllCookieBannerTextCountryCodeSwapping11bgynkWithMappedReactProps4cl55r=withMappedReactProps(withCodeBoundaryForOverrides(_AllCookieBannerText,{nodeId:\"wHziZrkfw\",override:countryCodeSwapping,scopeId:\"rCKgqZmgK\"}),_AllCookieBannerTextInfo);const CheckboxFonts=getFonts(Checkbox);const CheckboxNecessaryCheckbox7c7ab3=withCodeBoundaryForOverrides(Checkbox,{nodeId:\"JPNhO1Prr\",override:necessaryCheckbox,scopeId:\"rCKgqZmgK\"});const Checkbox1Fonts=getFonts(Checkbox1);const CheckboxAnalycticsCheckboxyme3id=withCodeBoundaryForOverrides(Checkbox,{nodeId:\"tIBmEMdcH\",override:analycticsCheckbox,scopeId:\"rCKgqZmgK\"});const MotionDivAnalycticsClickCapturefr9875=withCodeBoundaryForOverrides(motion.div,{nodeId:\"vZIBRvkOk\",override:analycticsClickCapture,scopeId:\"rCKgqZmgK\"});const CheckboxMarketingCheckbox1ejvp0c=withCodeBoundaryForOverrides(Checkbox,{nodeId:\"EYh7Tjcig\",override:marketingCheckbox,scopeId:\"rCKgqZmgK\"});const MotionDivMarketingClickCapture1pssdi0=withCodeBoundaryForOverrides(motion.div,{nodeId:\"tFCn5bRYq\",override:marketingClickCapture,scopeId:\"rCKgqZmgK\"});const _BricksButtonFonts=getFonts(_BricksButton);const _BricksButtonAcceptAllButtonhnaqmgWithMappedReactProps1svf6n7=withMappedReactProps(withCodeBoundaryForOverrides(_BricksButton,{nodeId:\"x0j5HUTZF\",override:acceptAllButton,scopeId:\"rCKgqZmgK\"}),_BricksButtonInfo);const _BricksButtonAcceptSelectedButton7siioeWithMappedReactProps1svf6n7=withMappedReactProps(withCodeBoundaryForOverrides(_BricksButton,{nodeId:\"eeZedguoR\",override:acceptSelectedButton,scopeId:\"rCKgqZmgK\"}),_BricksButtonInfo);const _BricksButtonAcceptSelectedButtonyq44f8WithMappedReactProps1svf6n7=withMappedReactProps(withCodeBoundaryForOverrides(_BricksButton,{nodeId:\"HGtdP2JVZ\",override:acceptSelectedButton,scopeId:\"rCKgqZmgK\"}),_BricksButtonInfo);const MotionDivCookieBannerVisibilityciaxxz=withCodeBoundaryForOverrides(motion.div,{nodeId:\"wSbxRE6xY\",override:cookieBannerVisibility,scopeId:\"rCKgqZmgK\"});const cycleOrder=[\"wSbxRE6xY\",\"ll8nyHZ1i\",\"IVSFxFLFv\",\"jzZLoIogg\",\"rnLBgd1D8\",\"mlQWcSpwF\"];const serializationHash=\"framer-qSDbS\";const variantClassNames={IVSFxFLFv:\"framer-v-yhff9u\",jzZLoIogg:\"framer-v-bzydw8\",ll8nyHZ1i:\"framer-v-12sqgd7\",mlQWcSpwF:\"framer-v-67kwv6\",rnLBgd1D8:\"framer-v-1dui3ug\",wSbxRE6xY:\"framer-v-ciaxxz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Choice\":\"IVSFxFLFv\",\"Desktop Closed\":\"ll8nyHZ1i\",\"Phone Choice\":\"mlQWcSpwF\",\"Phone Closed\":\"rnLBgd1D8\",Desktop:\"wSbxRE6xY\",Phone:\"jzZLoIogg\"};const getProps=({countryCodes,height,id,tap,width,...props})=>{return{...props,pGfKlPqjf:tap??props.pGfKlPqjf,variant:humanReadableVariantMap[props.variant]??props.variant??\"wSbxRE6xY\",WjYRRnO45:countryCodes??props.WjYRRnO45};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WjYRRnO45,pGfKlPqjf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wSbxRE6xY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapn52ic2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(pGfKlPqjf){const res=await pGfKlPqjf(...args);if(res===false)return false;}});const hn8gdQ1NC1d9hdnx=activeVariantCallback(async(...args)=>{setVariant(\"IVSFxFLFv\");});const hn8gdQ1NCoi30gh=activeVariantCallback(async(...args)=>{setVariant(\"mlQWcSpwF\");});const hn8gdQ1NC1vv7lhp=activeVariantCallback(async(...args)=>{setVariant(\"ll8nyHZ1i\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"IVSFxFLFv\",\"mlQWcSpwF\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"mlQWcSpwF\")return true;return false;};const isDisplayed2=()=>{if([\"IVSFxFLFv\",\"mlQWcSpwF\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"IVSFxFLFv\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivCookieBannerVisibilityciaxxz,{...restProps,...gestureHandlers,\"aria-label\":\"Cookie Banner\",className:cx(scopingClassNames,\"framer-ciaxxz\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wSbxRE6xY\",onTap:onTapn52ic2,ref:refBinding,style:{boxShadow:\"0.3184767494094558px 0.39809593676181976px 1.733359264222137px -0.8125px rgba(0, 0, 0, 0.1), 0.9658024572418071px 1.207253071552259px 5.256530154156635px -1.625px rgba(0, 0, 0, 0.1), 2.5530614085937846px 3.1913267607422307px 13.895433977268114px -2.4375px rgba(0, 0, 0, 0.09), 8px 10px 43.54124481454337px -3.25px rgba(0, 0, 0, 0.06)\",...style},...addPropertyOverrides({IVSFxFLFv:{\"data-framer-name\":\"Desktop Choice\"},jzZLoIogg:{\"data-framer-name\":\"Phone\"},ll8nyHZ1i:{\"data-framer-name\":\"Desktop Closed\"},mlQWcSpwF:{\"data-framer-name\":\"Phone Choice\"},rnLBgd1D8:{\"data-framer-name\":\"Phone Closed\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9wn90q\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"hXWYo13cT\",style:{backgroundColor:\"var(--token-8af32cac-66bc-4d71-8aa2-3e784cb8710f, rgb(255, 225, 224))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:1},variants:{IVSFxFLFv:{opacity:1},jzZLoIogg:{opacity:1},ll8nyHZ1i:{opacity:0},mlQWcSpwF:{opacity:1},rnLBgd1D8:{opacity:0}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-324)/1*0)+16+0,...addPropertyOverrides({IVSFxFLFv:{y:undefined},ll8nyHZ1i:{y:(componentViewport?.y||0)+0+((componentViewport?.height||1)-0-16+0+0)+16+0},mlQWcSpwF:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-516)/1*0)+16+0},rnLBgd1D8:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||1)-0-16)/1*0)+16+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11bgynk-container\",layoutDependency:layoutDependency,layoutId:\"wHziZrkfw-container\",nodeId:\"wHziZrkfw\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(_AllCookieBannerTextCountryCodeSwapping11bgynkWithMappedReactProps4cl55r,{height:\"100%\",id:\"wHziZrkfw\",imTcqWJA_:WjYRRnO45,layoutId:\"wHziZrkfw\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gty2d\",\"data-framer-name\":\"Choices\",layoutDependency:layoutDependency,layoutId:\"I9Ek5ejYj\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1506lnv\",\"data-framer-name\":\"Erforderich\",layoutDependency:layoutDependency,layoutId:\"Lgw7MQonk\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7c7ab3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JPNhO1Prr-container\",nodeId:\"JPNhO1Prr\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",style:{opacity:.6},children:/*#__PURE__*/_jsx(CheckboxNecessaryCheckbox7c7ab3,{activeBackground:\"rgb(83, 53, 53)\",activeBorder:\"rgb(83, 53, 53)\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:2,bottomLeft:1,bottomRight:1,checkSize:100,color:\"rgb(253, 227, 216)\",disabled:true,hasBorder:true,height:\"100%\",id:\"JPNhO1Prr\",inactiveBackground:\"rgba(255, 255, 255, 0)\",inactiveBorder:\"rgb(83, 53, 53)\",initialAnimation:false,isChecked:true,isMixed:false,joinType:\"miter\",layoutId:\"JPNhO1Prr\",radius:1,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:1,topRight:1,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",children:\"Erforderlich\"})}),className:\"framer-4mi49e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sWLoZLr3u\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pcx6j3\",\"data-framer-name\":\"Pr\\xe4ferenzen\",layoutDependency:layoutDependency,layoutId:\"euOiKnLGK\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pga6f7-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"RLoNpKt2K-container\",nodeId:\"RLoNpKt2K\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(Checkbox1,{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:2,bottomLeft:1,bottomRight:1,checkSize:100,color:\"rgb(253, 227, 216)\",disabled:false,hasBorder:true,height:\"100%\",id:\"RLoNpKt2K\",inactiveBackground:\"rgba(255, 255, 255, 0)\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",initialAnimation:false,isChecked:true,isMixed:false,joinType:\"miter\",layoutId:\"RLoNpKt2K\",radius:1,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:1,topRight:1,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Pr\\xe4ferenzen\"})}),className:\"framer-1wox5jg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Cpn3YNqjR\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i8bjo1\",\"data-framer-name\":\"Analyctics\",layoutDependency:layoutDependency,layoutId:\"Jgrsx1xJJ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivAnalycticsClickCapturefr9875,{className:\"framer-fr9875\",\"data-framer-name\":\"Click Capture\",layoutDependency:layoutDependency,layoutId:\"vZIBRvkOk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yme3id-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tIBmEMdcH-container\",nodeId:\"tIBmEMdcH\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(CheckboxAnalycticsCheckboxyme3id,{activeBackground:\"rgb(83, 53, 53)\",activeBorder:\"rgb(83, 53, 53)\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:2,bottomLeft:1,bottomRight:1,checkSize:100,color:\"rgb(253, 227, 216)\",disabled:false,hasBorder:true,height:\"100%\",id:\"tIBmEMdcH\",inactiveBackground:\"rgba(255, 255, 255, 0)\",inactiveBorder:\"rgb(83, 53, 53)\",initialAnimation:false,isChecked:true,isMixed:false,joinType:\"miter\",layoutId:\"tIBmEMdcH\",radius:1,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:1,topRight:1,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({IVSFxFLFv:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",initialAnimation:true},mlQWcSpwF:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Analytik\"})}),className:\"framer-1mgo0tm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vqoArM0lP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rul1iy\",\"data-framer-name\":\"Marketing\",layoutDependency:layoutDependency,layoutId:\"LrYqL1JRh\",children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivMarketingClickCapture1pssdi0,{className:\"framer-1pssdi0\",\"data-framer-name\":\"Click Capture\",layoutDependency:layoutDependency,layoutId:\"tFCn5bRYq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ejvp0c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EYh7Tjcig-container\",nodeId:\"EYh7Tjcig\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(CheckboxMarketingCheckbox1ejvp0c,{activeBackground:\"rgb(83, 53, 53)\",activeBorder:\"rgb(83, 53, 53)\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:2,bottomLeft:1,bottomRight:1,checkSize:100,color:\"rgb(253, 227, 216)\",disabled:false,hasBorder:true,height:\"100%\",id:\"EYh7Tjcig\",inactiveBackground:\"rgba(255, 255, 255, 0)\",inactiveBorder:\"rgb(83, 53, 53)\",initialAnimation:false,isChecked:true,isMixed:false,joinType:\"miter\",layoutId:\"EYh7Tjcig\",radius:1,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:1,topRight:1,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({IVSFxFLFv:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",initialAnimation:true},mlQWcSpwF:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Marketing\"})}),className:\"framer-1kld97g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iNF35LJMM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4xnkf9\",\"data-framer-name\":\"Functional\",layoutDependency:layoutDependency,layoutId:\"YiKJZTMIu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18daq6a\",\"data-framer-name\":\"Click Capture\",layoutDependency:layoutDependency,layoutId:\"c07vhXHad\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tcc5z4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"m2GV2eLlK-container\",nodeId:\"m2GV2eLlK\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(Checkbox,{activeBackground:\"rgb(83, 53, 53)\",activeBorder:\"rgb(83, 53, 53)\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:2,bottomLeft:1,bottomRight:1,checkSize:100,color:\"rgb(253, 227, 216)\",disabled:false,hasBorder:true,height:\"100%\",id:\"m2GV2eLlK\",inactiveBackground:\"rgba(255, 255, 255, 0)\",inactiveBorder:\"rgb(83, 53, 53)\",initialAnimation:true,isChecked:true,isMixed:false,joinType:\"miter\",layoutId:\"m2GV2eLlK\",radius:1,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:1,topRight:1,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({IVSFxFLFv:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"},mlQWcSpwF:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Funktionell\"})}),className:\"framer-1wkcinc\",\"data-framer-name\":\"Funktionell\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BwjLm5Zjt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ictiq\",\"data-framer-name\":\"Partners\",layoutDependency:layoutDependency,layoutId:\"dkYBmLIxv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k7jsnp\",\"data-framer-name\":\"Click Capture\",layoutDependency:layoutDependency,layoutId:\"F4hBPy56b\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lnqt3i-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"e3P62_yHf-container\",nodeId:\"e3P62_yHf\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(Checkbox,{activeBackground:\"rgb(83, 53, 53)\",activeBorder:\"rgb(83, 53, 53)\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:2,bottomLeft:1,bottomRight:1,checkSize:100,color:\"rgb(253, 227, 216)\",disabled:false,hasBorder:true,height:\"100%\",id:\"e3P62_yHf\",inactiveBackground:\"rgba(255, 255, 255, 0)\",inactiveBorder:\"rgb(83, 53, 53)\",initialAnimation:true,isChecked:true,isMixed:false,joinType:\"miter\",layoutId:\"e3P62_yHf\",radius:1,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:1,topRight:1,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({IVSFxFLFv:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"},mlQWcSpwF:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Partners\"})}),className:\"framer-tu4il8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TuL9o9OB6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pk1azi\",\"data-framer-name\":\"Statistics\",layoutDependency:layoutDependency,layoutId:\"YLjGrtfq7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jbq72p\",\"data-framer-name\":\"Click Capture\",layoutDependency:layoutDependency,layoutId:\"Nfn1hJltn\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hotrcr-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Cd4CSeiyZ-container\",nodeId:\"Cd4CSeiyZ\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(Checkbox,{activeBackground:\"rgb(83, 53, 53)\",activeBorder:\"rgb(83, 53, 53)\",backgroundTransition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},borderWidth:2,bottomLeft:1,bottomRight:1,checkSize:100,color:\"rgb(253, 227, 216)\",disabled:false,hasBorder:true,height:\"100%\",id:\"Cd4CSeiyZ\",inactiveBackground:\"rgba(255, 255, 255, 0)\",inactiveBorder:\"rgb(83, 53, 53)\",initialAnimation:true,isChecked:true,isMixed:false,joinType:\"miter\",layoutId:\"Cd4CSeiyZ\",radius:1,strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},topLeft:1,topRight:1,transition:{delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\",...addPropertyOverrides({IVSFxFLFv:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"},mlQWcSpwF:{activeBackground:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",activeBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",inactiveBorder:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8l3q\",\"data-styles-preset\":\"gVdWbQjcb\",style:{\"--framer-text-alignment\":\"left\"},children:\"Statistics\"})}),className:\"framer-1lg9nau\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BB2dktnVS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wro981\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"HQxTT4nwB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jy7cxj\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"Pvm3VJJsD\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-324)/1*0)+16+252+0+0,...addPropertyOverrides({IVSFxFLFv:{y:undefined},ll8nyHZ1i:{y:(componentViewport?.y||0)+0+((componentViewport?.height||1)-0-16+0+0)+16+252+0+0},mlQWcSpwF:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-516)/1*0)+16+444+0+0},rnLBgd1D8:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||1)-0-16)/1*0)+16+252+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hnaqmg-container\",layoutDependency:layoutDependency,layoutId:\"x0j5HUTZF-container\",nodeId:\"x0j5HUTZF\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(_BricksButtonAcceptAllButtonhnaqmgWithMappedReactProps1svf6n7,{Ahbgo64Dk:false,c_2JzEXHf:false,CXsVK0mz_:getLocalizedValue(\"v7\",activeLocale)??\"Alle akzeptieren\",dSbBz3QM2:\"House\",height:\"100%\",id:\"x0j5HUTZF\",JbByzm2Z6:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",kkRc3tMrc:\"var(--token-c32f042b-e1c9-486f-9584-80d1c0e763a8, rgb(255, 220, 216))\",layoutId:\"x0j5HUTZF\",pB7VWOYQY:\"rgb(255, 255, 255)\",SF_iYDrD1:\"House\",style:{height:\"100%\"},variant:\"flWCddaqS\",VXptL2TcK:false,width:\"100%\",xn2dAyDhB:false})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-324)/1*0)+16+252+0+0,...addPropertyOverrides({ll8nyHZ1i:{y:(componentViewport?.y||0)+0+((componentViewport?.height||1)-0-16+0+0)+16+252+0+0},rnLBgd1D8:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||1)-0-16)/1*0)+16+252+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k4ytiu-container\",layoutDependency:layoutDependency,layoutId:\"QKVriRYal-container\",nodeId:\"QKVriRYal\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(_BricksButton,{Ahbgo64Dk:false,c_2JzEXHf:false,CXsVK0mz_:getLocalizedValue(\"v8\",activeLocale)??\"Anpassen\",dSbBz3QM2:\"House\",height:\"100%\",hn8gdQ1NC:hn8gdQ1NC1d9hdnx,id:\"QKVriRYal\",JbByzm2Z6:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",kkRc3tMrc:\"var(--token-c32f042b-e1c9-486f-9584-80d1c0e763a8, rgb(255, 220, 216))\",layoutId:\"QKVriRYal\",pB7VWOYQY:\"rgb(255, 255, 255)\",SF_iYDrD1:\"House\",style:{height:\"100%\"},variant:\"wMPS0paaq\",VXptL2TcK:false,width:\"100%\",xn2dAyDhB:false,...addPropertyOverrides({jzZLoIogg:{hn8gdQ1NC:hn8gdQ1NCoi30gh}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({IVSFxFLFv:{height:48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7siioe-container\",layoutDependency:layoutDependency,layoutId:\"eeZedguoR-container\",nodeId:\"eeZedguoR\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(_BricksButtonAcceptSelectedButton7siioeWithMappedReactProps1svf6n7,{Ahbgo64Dk:false,c_2JzEXHf:false,CXsVK0mz_:getLocalizedValue(\"v9\",activeLocale)??\"Speichern\",dSbBz3QM2:\"House\",height:\"100%\",hn8gdQ1NC:hn8gdQ1NC1vv7lhp,id:\"eeZedguoR\",JbByzm2Z6:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",kkRc3tMrc:\"var(--token-c32f042b-e1c9-486f-9584-80d1c0e763a8, rgb(255, 220, 216))\",layoutId:\"eeZedguoR\",pB7VWOYQY:\"rgb(255, 255, 255)\",SF_iYDrD1:\"House\",style:{height:\"100%\"},variant:\"wMPS0paaq\",VXptL2TcK:false,width:\"100%\",xn2dAyDhB:false})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({mlQWcSpwF:{height:48,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-516)/1*0)+16+444+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yq44f8-container\",layoutDependency:layoutDependency,layoutId:\"HGtdP2JVZ-container\",nodeId:\"HGtdP2JVZ\",rendersWithMotion:true,scopeId:\"rCKgqZmgK\",children:/*#__PURE__*/_jsx(_BricksButtonAcceptSelectedButtonyq44f8WithMappedReactProps1svf6n7,{Ahbgo64Dk:false,c_2JzEXHf:false,CXsVK0mz_:getLocalizedValue(\"v9\",activeLocale)??\"Speichern\",dSbBz3QM2:\"House\",height:\"100%\",id:\"HGtdP2JVZ\",JbByzm2Z6:\"var(--token-2af0eda1-d9fb-4123-875e-d01af5dc6af2, rgb(45, 35, 94))\",kkRc3tMrc:\"var(--token-c32f042b-e1c9-486f-9584-80d1c0e763a8, rgb(255, 220, 216))\",layoutId:\"HGtdP2JVZ\",pB7VWOYQY:\"rgb(255, 255, 255)\",SF_iYDrD1:\"House\",style:{height:\"100%\"},variant:\"wMPS0paaq\",VXptL2TcK:false,width:\"100%\",xn2dAyDhB:false})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qSDbS.framer-1sk8ctz, .framer-qSDbS .framer-1sk8ctz { display: block; }\",\".framer-qSDbS.framer-ciaxxz { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 585px; }\",\".framer-qSDbS .framer-9wn90q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 16px 0px 16px; position: relative; width: 100%; z-index: 1; }\",\".framer-qSDbS .framer-11bgynk-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-qSDbS .framer-1gty2d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; min-height: 22px; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-qSDbS .framer-1506lnv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 126px; }\",\".framer-qSDbS .framer-7c7ab3-container { cursor: not-allowed; flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-qSDbS .framer-4mi49e, .framer-qSDbS .framer-1wox5jg, .framer-qSDbS .framer-1mgo0tm, .framer-qSDbS .framer-1kld97g, .framer-qSDbS .framer-1wkcinc, .framer-qSDbS .framer-tu4il8, .framer-qSDbS .framer-1lg9nau { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qSDbS .framer-pcx6j3, .framer-qSDbS .framer-1i8bjo1, .framer-qSDbS .framer-1rul1iy, .framer-qSDbS .framer-4xnkf9, .framer-qSDbS .framer-1ictiq, .framer-qSDbS .framer-1pk1azi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qSDbS .framer-pga6f7-container, .framer-qSDbS .framer-tcc5z4-container, .framer-qSDbS .framer-lnqt3i-container, .framer-qSDbS .framer-1hotrcr-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-qSDbS .framer-fr9875, .framer-qSDbS .framer-1pssdi0 { flex: none; height: 20px; overflow: visible; position: relative; width: 21px; }\",\".framer-qSDbS .framer-yme3id-container { flex: none; height: 20px; position: absolute; right: 0px; top: -1px; width: 20px; }\",\".framer-qSDbS .framer-1ejvp0c-container { bottom: -33px; flex: none; height: 20px; position: absolute; right: -94px; width: 20px; }\",\".framer-qSDbS .framer-18daq6a, .framer-qSDbS .framer-k7jsnp, .framer-qSDbS .framer-1jbq72p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qSDbS .framer-1wro981 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qSDbS .framer-1jy7cxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: min-content; }\",\".framer-qSDbS .framer-hnaqmg-container, .framer-qSDbS .framer-1k4ytiu-container, .framer-qSDbS .framer-7siioe-container, .framer-qSDbS .framer-yq44f8-container { flex: none; height: 48px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qSDbS .framer-9wn90q, .framer-qSDbS .framer-1gty2d, .framer-qSDbS .framer-1506lnv, .framer-qSDbS .framer-pcx6j3, .framer-qSDbS .framer-1i8bjo1, .framer-qSDbS .framer-1rul1iy, .framer-qSDbS .framer-4xnkf9, .framer-qSDbS .framer-18daq6a, .framer-qSDbS .framer-1ictiq, .framer-qSDbS .framer-k7jsnp, .framer-qSDbS .framer-1pk1azi, .framer-qSDbS .framer-1jbq72p, .framer-qSDbS .framer-1jy7cxj { gap: 0px; } .framer-qSDbS .framer-9wn90q > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-qSDbS .framer-9wn90q > :first-child { margin-top: 0px; } .framer-qSDbS .framer-9wn90q > :last-child { margin-bottom: 0px; } .framer-qSDbS .framer-1gty2d > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-qSDbS .framer-1gty2d > :first-child, .framer-qSDbS .framer-1506lnv > :first-child, .framer-qSDbS .framer-pcx6j3 > :first-child, .framer-qSDbS .framer-1i8bjo1 > :first-child, .framer-qSDbS .framer-1rul1iy > :first-child, .framer-qSDbS .framer-4xnkf9 > :first-child, .framer-qSDbS .framer-18daq6a > :first-child, .framer-qSDbS .framer-1ictiq > :first-child, .framer-qSDbS .framer-k7jsnp > :first-child, .framer-qSDbS .framer-1pk1azi > :first-child, .framer-qSDbS .framer-1jbq72p > :first-child, .framer-qSDbS .framer-1jy7cxj > :first-child { margin-left: 0px; } .framer-qSDbS .framer-1gty2d > :last-child, .framer-qSDbS .framer-1506lnv > :last-child, .framer-qSDbS .framer-pcx6j3 > :last-child, .framer-qSDbS .framer-1i8bjo1 > :last-child, .framer-qSDbS .framer-1rul1iy > :last-child, .framer-qSDbS .framer-4xnkf9 > :last-child, .framer-qSDbS .framer-18daq6a > :last-child, .framer-qSDbS .framer-1ictiq > :last-child, .framer-qSDbS .framer-k7jsnp > :last-child, .framer-qSDbS .framer-1pk1azi > :last-child, .framer-qSDbS .framer-1jbq72p > :last-child, .framer-qSDbS .framer-1jy7cxj > :last-child { margin-right: 0px; } .framer-qSDbS .framer-1506lnv > *, .framer-qSDbS .framer-pcx6j3 > *, .framer-qSDbS .framer-1i8bjo1 > *, .framer-qSDbS .framer-1rul1iy > *, .framer-qSDbS .framer-4xnkf9 > *, .framer-qSDbS .framer-18daq6a > *, .framer-qSDbS .framer-1ictiq > *, .framer-qSDbS .framer-k7jsnp > *, .framer-qSDbS .framer-1pk1azi > *, .framer-qSDbS .framer-1jbq72p > *, .framer-qSDbS .framer-1jy7cxj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-qSDbS.framer-v-12sqgd7.framer-ciaxxz { align-content: flex-start; align-items: flex-start; gap: 0px; height: 1px; justify-content: flex-end; }\",\".framer-qSDbS.framer-v-12sqgd7 .framer-9wn90q, .framer-qSDbS.framer-v-1dui3ug .framer-9wn90q { height: 16px; overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qSDbS.framer-v-12sqgd7.framer-ciaxxz { gap: 0px; } .framer-qSDbS.framer-v-12sqgd7.framer-ciaxxz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qSDbS.framer-v-12sqgd7.framer-ciaxxz > :first-child { margin-top: 0px; } .framer-qSDbS.framer-v-12sqgd7.framer-ciaxxz > :last-child { margin-bottom: 0px; } }\",\".framer-qSDbS.framer-v-yhff9u.framer-ciaxxz { gap: 0px; justify-content: center; width: 586px; }\",\".framer-qSDbS.framer-v-yhff9u .framer-9wn90q { gap: 8px; }\",\".framer-qSDbS.framer-v-yhff9u .framer-1gty2d { min-height: unset; }\",\".framer-qSDbS.framer-v-yhff9u .framer-1506lnv { cursor: not-allowed; }\",\".framer-qSDbS.framer-v-yhff9u .framer-7c7ab3-container, .framer-qSDbS.framer-v-67kwv6 .framer-7c7ab3-container { pointer-events: none; }\",\".framer-qSDbS.framer-v-yhff9u .framer-fr9875, .framer-qSDbS.framer-v-yhff9u .framer-1pssdi0, .framer-qSDbS.framer-v-67kwv6 .framer-fr9875, .framer-qSDbS.framer-v-67kwv6 .framer-1pssdi0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-qSDbS.framer-v-yhff9u .framer-yme3id-container, .framer-qSDbS.framer-v-67kwv6 .framer-yme3id-container { position: relative; right: unset; top: unset; }\",\".framer-qSDbS.framer-v-yhff9u .framer-1ejvp0c-container, .framer-qSDbS.framer-v-67kwv6 .framer-1ejvp0c-container { bottom: unset; position: relative; right: unset; }\",\".framer-qSDbS.framer-v-yhff9u .framer-hnaqmg-container, .framer-qSDbS.framer-v-67kwv6 .framer-hnaqmg-container { order: 2; }\",\".framer-qSDbS.framer-v-yhff9u .framer-7siioe-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qSDbS.framer-v-yhff9u.framer-ciaxxz, .framer-qSDbS.framer-v-yhff9u .framer-9wn90q, .framer-qSDbS.framer-v-yhff9u .framer-fr9875, .framer-qSDbS.framer-v-yhff9u .framer-1pssdi0 { gap: 0px; } .framer-qSDbS.framer-v-yhff9u.framer-ciaxxz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qSDbS.framer-v-yhff9u.framer-ciaxxz > :first-child, .framer-qSDbS.framer-v-yhff9u .framer-9wn90q > :first-child { margin-top: 0px; } .framer-qSDbS.framer-v-yhff9u.framer-ciaxxz > :last-child, .framer-qSDbS.framer-v-yhff9u .framer-9wn90q > :last-child { margin-bottom: 0px; } .framer-qSDbS.framer-v-yhff9u .framer-9wn90q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-qSDbS.framer-v-yhff9u .framer-fr9875 > *, .framer-qSDbS.framer-v-yhff9u .framer-1pssdi0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qSDbS.framer-v-yhff9u .framer-fr9875 > :first-child, .framer-qSDbS.framer-v-yhff9u .framer-1pssdi0 > :first-child { margin-left: 0px; } .framer-qSDbS.framer-v-yhff9u .framer-fr9875 > :last-child, .framer-qSDbS.framer-v-yhff9u .framer-1pssdi0 > :last-child { margin-right: 0px; } }\",\".framer-qSDbS.framer-v-bzydw8.framer-ciaxxz, .framer-qSDbS.framer-v-67kwv6.framer-ciaxxz { width: 515px; }\",\".framer-qSDbS.framer-v-1dui3ug.framer-ciaxxz { height: 1px; width: 515px; }\",\".framer-qSDbS.framer-v-1dui3ug .framer-1wro981 { gap: 40px; justify-content: flex-end; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qSDbS.framer-v-1dui3ug .framer-1wro981 { gap: 0px; } .framer-qSDbS.framer-v-1dui3ug .framer-1wro981 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-qSDbS.framer-v-1dui3ug .framer-1wro981 > :first-child { margin-left: 0px; } .framer-qSDbS.framer-v-1dui3ug .framer-1wro981 > :last-child { margin-right: 0px; } }\",\".framer-qSDbS.framer-v-67kwv6 .framer-1gty2d { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(100px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; min-height: unset; }\",\".framer-qSDbS.framer-v-67kwv6 .framer-1506lnv { align-self: start; cursor: not-allowed; height: 100%; justify-self: start; width: 100%; }\",\".framer-qSDbS.framer-v-67kwv6 .framer-pcx6j3, .framer-qSDbS.framer-v-67kwv6 .framer-1i8bjo1, .framer-qSDbS.framer-v-67kwv6 .framer-1rul1iy, .framer-qSDbS.framer-v-67kwv6 .framer-4xnkf9, .framer-qSDbS.framer-v-67kwv6 .framer-1ictiq, .framer-qSDbS.framer-v-67kwv6 .framer-1pk1azi { align-self: start; height: 100%; justify-self: start; width: 100%; }\",\".framer-qSDbS.framer-v-67kwv6 .framer-yq44f8-container { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qSDbS.framer-v-67kwv6 .framer-1gty2d, .framer-qSDbS.framer-v-67kwv6 .framer-fr9875, .framer-qSDbS.framer-v-67kwv6 .framer-1pssdi0 { gap: 0px; } .framer-qSDbS.framer-v-67kwv6 .framer-1gty2d > *, .framer-qSDbS.framer-v-67kwv6 .framer-1gty2d > :first-child, .framer-qSDbS.framer-v-67kwv6 .framer-1gty2d > :last-child { margin: 0px; } .framer-qSDbS.framer-v-67kwv6 .framer-fr9875 > *, .framer-qSDbS.framer-v-67kwv6 .framer-1pssdi0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qSDbS.framer-v-67kwv6 .framer-fr9875 > :first-child, .framer-qSDbS.framer-v-67kwv6 .framer-1pssdi0 > :first-child { margin-left: 0px; } .framer-qSDbS.framer-v-67kwv6 .framer-fr9875 > :last-child, .framer-qSDbS.framer-v-67kwv6 .framer-1pssdi0 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 324\n * @framerIntrinsicWidth 585\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ll8nyHZ1i\":{\"layout\":[\"fixed\",\"fixed\"]},\"IVSFxFLFv\":{\"layout\":[\"fixed\",\"auto\"]},\"jzZLoIogg\":{\"layout\":[\"fixed\",\"auto\"]},\"rnLBgd1D8\":{\"layout\":[\"fixed\",\"fixed\"]},\"mlQWcSpwF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WjYRRnO45\":\"countryCodes\",\"pGfKlPqjf\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerrCKgqZmgK=withCSS(Component,css,\"framer-qSDbS\");export default FramerrCKgqZmgK;FramerrCKgqZmgK.displayName=\"_All/Cookie Banner\";FramerrCKgqZmgK.defaultProps={height:324,width:585};addPropertyControls(FramerrCKgqZmgK,{variant:{options:[\"wSbxRE6xY\",\"ll8nyHZ1i\",\"IVSFxFLFv\",\"jzZLoIogg\",\"rnLBgd1D8\",\"mlQWcSpwF\"],optionTitles:[\"Desktop\",\"Desktop Closed\",\"Desktop Choice\",\"Phone\",\"Phone Closed\",\"Phone Choice\"],title:\"Variant\",type:ControlType.Enum},WjYRRnO45:{defaultValue:\"\",title:\"Country Codes\",type:ControlType.String},pGfKlPqjf:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerrCKgqZmgK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},..._AllCookieBannerTextFonts,...CheckboxFonts,...Checkbox1Fonts,..._BricksButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrCKgqZmgK\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"324\",\"framerVariables\":\"{\\\"WjYRRnO45\\\":\\\"countryCodes\\\",\\\"pGfKlPqjf\\\":\\\"tap\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"585\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ll8nyHZ1i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IVSFxFLFv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jzZLoIogg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rnLBgd1D8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mlQWcSpwF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"+4CAA6O,eAAeA,GAAc,EAAU,CAAC,IAAI,IAAM,KAAM,EAAU,CAAC,IAAI,EAAG,SAAS,IAAM,EAAM,KAAM,IAAI,CAAC,GAAG,KAAQ,EAAM,KAAO,CAAC,CAQ5W,SAAgB,EAAS,EAAM,CAAC,GAAG,CAAC,mBAAiB,WAAS,UAAQ,YAAU,YAAU,SAAO,UAAQ,WAAS,cAAY,aAAW,UAAQ,YAAU,QAAM,qBAAmB,iBAAe,eAAa,YAAU,cAAY,aAAW,uBAAqB,mBAAiB,WAAS,WAAS,cAAY,CAAC,EAAW,CAAC,EAAQ,EAAW,CAAC,EAAS,EAAU,CAAO,EAAa,KAAW,EAAQ,KAAK,EAAS,KAAK,EAAY,KAAK,EAAW,OAAO,EAAO,IAAwD,AAApD,EAAU,IAAI,CAAC,EAAW,EAAU,AAAE,EAAC,CAAC,CAAU,EAAC,CAAC,EAAiB,EAAa,SAAS,GAAG,EAAa,QAAc,GAAN,EAAuB,IAAM,KAAuB,EAAY,WAAW,EAAkB,EAAe,GAAS,KAAqB,EAAY,WAAW,EAAkB,EAAa,GAAS,EAAgB,GAAS,EAAW,IAAI,MAAqB,GAAK,MAAM,CAAC,MAAMC,GAAe,yBAAyB,EAAS,SAAuB,EAAK,EAAO,IAAI,CACx7B,MAAM,CAAC,GAAGC,GAAc,cAAa,EAAC,QAAQ,EAAiB,CAAC,WAAW,AAAQ,EAAR,EAA0B,EAAsC,EAAiB,AAAC,GAAC,EAAM,QAAQ,CAAC,WAAW,AAAQ,EAAR,EAA0B,EAAoC,EAAmB,CAAC,OAAO,EAAU,EAAQ,EAAkB,EAAoB,MAAO,EAAC,WAAW,EAAqB,MAAM,IAAI,CAAI,GAAgB,GAAc,CAAC,IAAI,GAAU,GAAU,EAAQ,CAAC,EAAQ,EAAU,IAAI,GAAY,EAAQ,AAAE,EAAC,AAAE,EAAC,SAAuB,EAAK,MAAM,CAAC,QAAQ,YAAY,MAAM,CAAC,OAAO,EAAE,SAAS,EAAU,GAAG,UAAU,EAAU,EAAG,EAAC,SAAuB,EAAK,EAAO,KAAK,CAAC,EAAE,eAAe,KAAK,cAA0B,cAAY,OAAO,EAAM,cAAc,QAAQ,eAAe,EAAS,gBAAgB,EAAW,EAA2B,aAAW,QAAQ,CAAC,iBAAiB,EAAiB,EAAQ,EAAW,EAAgB,EAAgB,EAAQ,EAAgB,EAAW,CAAgB,EACt9B,QAAQ,CAAC,iBAAiB,EAAQ,EAAgB,EAAW,EAAgB,CAAE,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAG,qBACgoEA,AAX1tE,GAA2C,IAAsC,IAAwE,KAAoF,CAUnJ,EAAS,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,KAAK,eAAe,iBAAiB,UAAU,aAAa,UAAU,mBAAmB,UAAU,eAAe,UAAU,WAAU,EAAM,OAAO,EAAE,WAAU,EAAK,YAAY,EAAE,YAAY,IAAI,SAAS,QAAQ,UAAU,IAAI,MAAM,QAAQ,kBAAiB,EAAM,UAAS,EAAM,WAAW,CAAC,SAAS,IAAK,KAAK,CAAC,IAAK,IAAK,GAAI,CAAE,EAAC,KAAK,OAAQ,EAAC,qBAAqB,CAAC,SAAS,IAAK,KAAK,CAAC,IAAK,IAAK,GAAI,CAAE,EAAC,KAAK,OAAQ,CAAC,EACjiB,EAAoB,EAAS,CAAC,UAAU,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,cAAa,EAAK,aAAa,MAAM,cAAc,IAAK,EAAC,SAAS,CAAC,MAAM,WAAW,KAAK,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAK,EAAC,UAAU,CAAC,MAAM,SAAS,KAAK,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAK,EAAC,YAAY,CAAC,MAAM,QAAQ,KAAK,EAAY,OAAO,aAAa,EAAS,aAAa,YAAY,OAAO,CAAC,CAAC,YAAU,IAAI,CAAU,EAAC,aAAa,CAAC,MAAM,SAAS,KAAK,EAAY,MAAM,aAAa,EAAS,aAAa,iBAAiB,OAAO,CAAC,CAAC,YAAU,IAAI,CAAU,EAAC,eAAe,CAAC,MAAM,WAAW,KAAK,EAAY,MAAM,aAAa,EAAS,aAAa,mBAAmB,OAAO,CAAC,CAAC,YAAU,IAAI,CAAU,EAAC,iBAAiB,CAAC,MAAM,SAAS,KAAK,EAAY,MAAM,aAAa,EAAS,aAAa,gBAAiB,EAAC,mBAAmB,CAAC,MAAM,WAAW,KAAK,EAAY,MAAM,aAAa,EAAS,aAAa,kBAAmB,EAAC,MAAM,CAAC,MAAM,QAAQ,KAAK,EAAY,MAAM,aAAa,EAAS,aAAa,KAAM,EAAC,UAAU,CAAC,MAAM,aAAa,KAAK,EAAY,OAAO,KAAK,IAAI,IAAI,EAAE,IAAI,IAAI,aAAa,EAAS,aAAa,SAAU,EAAC,SAAS,CAAC,MAAM,SAAS,KAAK,EAAY,KAAK,yBAAwB,EAAK,QAAQ,CAAC,QAAQ,OAAQ,EAAC,aAAa,CAAC,SAAS,OAAQ,CAAC,EAAC,YAAY,CAAC,MAAM,YAAY,KAAK,EAAY,OAAO,IAAI,EAAE,IAAI,EAAE,KAAK,GAAI,gBAAe,CAAK,EAAC,OAAO,CAAC,MAAM,SAAS,KAAK,EAAY,YAAY,aAAa,EAAS,aAAa,OAAO,UAAU,UAAU,aAAa,CAAC,SAAS,mBAAoB,EAAC,UAAU,CAAC,UAAU,WAAW,cAAc,YAAa,EAAC,YAAY,CAAC,KAAK,KAAK,KAAK,IAAK,EAAC,IAAI,CAAE,EAAC,WAAW,CAAC,MAAM,QAAQ,KAAK,EAAY,WAAW,aAAa,EAAS,aAAa,UAAW,EAAC,qBAAqB,CAAC,MAAM,OAAO,KAAK,EAAY,WAAW,aAAa,EAAS,aAAa,UAAW,EAAC,iBAAiB,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAU,EAAC,SAAS,CAAC,KAAK,EAAY,YAAa,EAAC,QAAQ,CAAC,KAAK,EAAY,YAAa,EAAC,UAAU,CAAC,KAAK,EAAY,YAAa,CAAC,EAAC,CAAOD,GAAe,CAAC,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,OAAO,OAAO,MAAM,OAAO,SAAS,WAAW,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,CAAE,EAAOC,GAAc,CAAC,MAAM,OAAO,OAAO,OAAO,aAAa,EAAE,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,OAAO,UAAU,wBAAwB,kBAAmB,ICev4E,SAAS,GAAW,EAAU,CAAiK,AAAhK,EAAO,KAAK,UAAU,SAAS,EAAU,CAAC,GAAY,EAAU,CAAC,aAAa,QAAQ,cAAc,KAAK,UAAU,GAAgC,EAAU,CAAC,CAAC,CAAC,SAAS,QAAQ,AACjN,CAEC,SAAS,GAAgC,EAAU,CAAC,MAAM,CAAC,sBAAsB,EAAU,UAAU,UAAU,SAAS,iBAAiB,EAAU,UAAU,UAAU,SAAS,WAAW,EAAU,UAAU,UAAU,SAAS,kBAAkB,EAAU,UAAU,UAAU,SAAS,gBAAgB,EAAU,YAAY,UAAU,QAAS,CAAE,CAEtV,SAAS,GAAY,EAAU,CAA+P,AAA9P,EAAuB,0BAA0B,EAAU,YAAY,OAAO,QAAQ,CAAC,EAAuB,wBAAwB,EAAU,UAAU,OAAO,QAAQ,CAAC,EAAuB,yBAAyB,EAAU,UAAU,OAAO,QAAQ,CAAC,EAAuB,oBAAoB,OAAO,AAAE,+CAPrU,IAxBhB,GAA2C,IAAsC,KAAqE,KAA2G,CAExP,EAAS,GAAY,CAAC,cAAa,EAAK,cAAa,CAAK,EAAC,CAEjE,AAAC,SAASC,EAAgB,CAAsC,AAArC,EAAgB,QAAW,UAAU,EAAgB,UAAa,WAAa,EAAoB,KAAgB,CAAE,EAAE,CAElJ,AAAC,SAASC,EAAiB,CAAuC,AAAtC,EAAiB,QAAW,UAAU,EAAiB,OAAU,QAAU,EAAqB,KAAiB,CAAE,EAAE,CAEpI,GAAuB,GAAmB,GAAO,CAAC,IAAM,EAAS,GAAgB,CAAO,EAAU,EAAS,KAAK,EAAO,SAAe,EAAuE,AAA5C,GAAsD,OAAO,QAAQ,qBAAqB,EAAG,EAAE,OAAO,GAAU,EAA0B,KAAkB,EAAKkB,EAAU,CAAC,GAAG,CAAM,EAAC,AAAE,EAEzV,GAAsB,GAAmB,GAAO,CAAC,GAAK,CAAC,EAAM,EAAS,CAAC,GAAU,CAAC,MAAoB,GAAKA,EAAU,CAAC,GAAG,EAAM,QAAQ,IAAI,CAAC,EAAS,CAAC,cAAc,EAAM,aAAa,aAAa,EAAM,YAAa,EAAC,AAAE,CAAC,EAAC,AAAE,EAE9N,GAAkB,GAAmB,GAA4B,EAAKA,EAAU,CAAC,GAAG,EAAM,MAAM,CAAC,OAAO,aAAc,CAAC,EAAC,CAExH,GAAkB,GAAmB,GAAO,CAAC,GAAK,CAAC,EAAM,EAAS,CAAC,GAAU,CAAM,CAAC,EAAQ,EAAW,CAAC,EAAS,UAAU,CAAkG,MAAjG,GAAU,IAAI,CAAC,EAAW,IAAK,EAAM,aAAuB,YAAV,UAAsB,AAAE,EAAC,CAAC,EAAM,YAAa,EAAC,CAAqB,EAAKA,EAAU,CAAC,GAAG,EAAc,SAAQ,EAAC,AAAE,EAE7R,GAAuB,GAAmB,GAAO,CAAC,GAAK,CAAC,EAAM,EAAS,CAAC,GAAU,CAAC,MAAoB,GAAKA,EAAU,CAAC,GAAG,EAAM,QAAQ,IAAI,CAAC,EAAS,CAAC,aAAa,EAAM,aAAa,cAAc,EAAM,YAAa,EAAC,AAAE,CAAC,EAAC,AAAE,EAE/N,GAAmB,GAAmB,GAAO,CAAC,GAAK,CAAC,EAAM,EAAS,CAAC,GAAU,CAAM,CAAC,EAAQ,EAAW,CAAC,EAAS,UAAU,CAAkG,MAAjG,GAAU,IAAI,CAAC,EAAW,IAAK,EAAM,aAAuB,YAAV,UAAsB,AAAE,EAAC,CAAC,EAAM,YAAa,EAAC,CAAqB,EAAKA,EAAU,CAAC,GAAG,EAAc,SAAQ,EAAC,AAAE,EAG9R,GAAqB,GAAmB,GAAO,CAAC,GAAK,CAAC,EAAM,EAAS,CAAC,GAAU,CAAC,MAAoB,GAAKA,EAAU,CAAC,GAAG,EAAM,QAAQ,IAAI,CAAC,GAAW,CAAC,WAAU,EAAK,UAAU,EAAM,aAAa,aAAY,EAAK,UAAU,EAAM,YAAa,EAAC,AAAE,CAAC,EAAC,AAAE,EAGxP,GAAgB,GAAmB,GAAO,CAAC,GAAK,CAAC,EAAM,EAAS,CAAC,GAAU,CAAO,EAAY,IAAI,CAAC,GAAW,CAAC,WAAU,EAAK,WAAU,EAAK,aAAY,EAAK,WAAU,CAAK,EAAC,AAAE,EAAC,MAAoB,GAAKA,EAAU,CAAC,GAAG,EAAM,QAAQ,CAAY,EAAC,AAAE,ICxBxB,eAAe,GAAc,EAAU,CAAC,IAAI,IAAM,KAAM,EAAU,CAAC,IAAI,EAAG,SAAS,IAAM,EAAM,KAAM,IAAI,CAAC,GAAG,KAAQ,EAAM,KAAO,CAAC,CAQ7W,SAAgBhB,EAAS,EAAM,CAAC,GAAG,CAAC,mBAAiB,WAAS,UAAQ,YAAU,YAAU,SAAO,UAAQ,WAAS,cAAY,aAAW,UAAQ,YAAU,QAAM,qBAAmB,iBAAe,eAAa,YAAU,cAAY,aAAW,uBAAqB,mBAAiB,WAAS,WAAS,cAAY,CAAC,EAAW,CAAC,EAAQ,EAAW,CAAC,EAAS,EAAU,CAAO,EAAa,KAAW,EAAQ,KAAK,EAAS,KAAK,EAAY,KAAK,EAAW,OAAO,EAAO,IAAwD,AAApD,EAAU,IAAI,CAAC,EAAW,EAAU,AAAE,EAAC,CAAC,CAAU,EAAC,CAAC,EAAiB,EAAa,SAAS,GAAG,EAAa,QAAc,GAAN,EAAuB,IAAM,KAAuB,EAAY,WAAW,EAAkB,EAAe,GAAS,KAAqB,EAAY,WAAW,EAAkB,EAAa,GAAS,EAAgB,GAAS,EAAW,IAAI,MAAoB,GAAK,MAAM,CAAC,MAAM,GAAe,yBAAyB,EAAS,SAAsB,EAAK,EAAO,IAAI,CACr7B,MAAM,CAAC,GAAG,GAAc,cAAa,EAAC,QAAQ,EAAiB,CAAC,WAAW,AAAQ,EAAR,EAA0B,EAAsC,EAAiB,AAAC,GAAC,EAAM,QAAQ,CAAC,WAAW,AAAQ,EAAR,EAA0B,EAAoC,EAAmB,CAAC,OAAO,EAAU,EAAQ,EAAkB,EAAoB,MAAO,EAAC,WAAW,EAAqB,MAAM,IAAI,CAAI,GAAgB,GAAc,CAAC,IAAI,GAAU,GAAU,EAAQ,CAAC,EAAQ,EAAU,IAAI,GAAY,EAAQ,AAAC,EAAC,AAAE,EAAC,SAAsB,EAAK,MAAM,CAAC,QAAQ,YAAY,MAAM,CAAC,OAAO,EAAE,SAAS,EAAU,GAAG,UAAU,EAAU,EAAG,EAAC,SAAsB,EAAK,EAAO,KAAK,CAAC,EAAE,eAAe,KAAK,cAA0B,cAAY,OAAO,EAAM,cAAc,QAAQ,eAAe,EAAS,gBAAgB,EAAW,EAA2B,aAAW,QAAQ,CAAC,iBAAiB,EAAiB,EAAQ,EAAW,EAAgB,EAAgB,EAAQ,EAAgB,EAAW,CAAgB,EACn9B,QAAQ,CAAC,iBAAiB,EAAQ,EAAgB,EAAW,EAAgB,CAAE,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,qBACgoE,AAXztE,GAA2C,IAAsC,IAAwE,KAAoF,CAUpJ,EAAS,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,KAAK,eAAe,iBAAiB,UAAU,aAAa,UAAU,mBAAmB,UAAU,eAAe,UAAU,WAAU,EAAM,OAAO,EAAE,WAAU,EAAK,YAAY,EAAE,YAAY,IAAI,SAAS,QAAQ,UAAU,IAAI,MAAM,QAAQ,kBAAiB,EAAM,UAAS,EAAM,WAAW,CAAC,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,qBAAqB,CAAC,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,CAAC,EACxhB,EAAoBA,EAAS,CAAC,UAAU,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,cAAa,EAAK,aAAa,MAAM,cAAc,IAAK,EAAC,SAAS,CAAC,MAAM,WAAW,KAAK,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAK,EAAC,UAAU,CAAC,MAAM,SAAS,KAAK,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAK,EAAC,YAAY,CAAC,MAAM,QAAQ,KAAK,EAAY,OAAO,aAAaA,EAAS,aAAa,YAAY,OAAO,CAAC,CAAC,YAAU,IAAI,CAAU,EAAC,aAAa,CAAC,MAAM,SAAS,KAAK,EAAY,MAAM,aAAaA,EAAS,aAAa,iBAAiB,OAAO,CAAC,CAAC,YAAU,IAAI,CAAU,EAAC,eAAe,CAAC,MAAM,WAAW,KAAK,EAAY,MAAM,aAAaA,EAAS,aAAa,mBAAmB,OAAO,CAAC,CAAC,YAAU,IAAI,CAAU,EAAC,iBAAiB,CAAC,MAAM,SAAS,KAAK,EAAY,MAAM,aAAaA,EAAS,aAAa,gBAAiB,EAAC,mBAAmB,CAAC,MAAM,WAAW,KAAK,EAAY,MAAM,aAAaA,EAAS,aAAa,kBAAmB,EAAC,MAAM,CAAC,MAAM,QAAQ,KAAK,EAAY,MAAM,aAAaA,EAAS,aAAa,KAAM,EAAC,UAAU,CAAC,MAAM,aAAa,KAAK,EAAY,OAAO,KAAK,IAAI,IAAI,EAAE,IAAI,IAAI,aAAaA,EAAS,aAAa,SAAU,EAAC,SAAS,CAAC,MAAM,SAAS,KAAK,EAAY,KAAK,yBAAwB,EAAK,QAAQ,CAAC,QAAQ,OAAQ,EAAC,aAAa,CAAC,SAAS,OAAQ,CAAC,EAAC,YAAY,CAAC,MAAM,YAAY,KAAK,EAAY,OAAO,IAAI,EAAE,IAAI,EAAE,KAAK,GAAG,gBAAe,CAAK,EAAC,OAAO,CAAC,MAAM,SAAS,KAAK,EAAY,YAAY,aAAaA,EAAS,aAAa,OAAO,UAAU,UAAU,aAAa,CAAC,SAAS,mBAAoB,EAAC,UAAU,CAAC,UAAU,WAAW,cAAc,YAAa,EAAC,YAAY,CAAC,KAAK,KAAK,KAAK,IAAK,EAAC,IAAI,CAAE,EAAC,WAAW,CAAC,MAAM,QAAQ,KAAK,EAAY,WAAW,aAAaA,EAAS,aAAa,UAAW,EAAC,qBAAqB,CAAC,MAAM,OAAO,KAAK,EAAY,WAAW,aAAaA,EAAS,aAAa,UAAW,EAAC,iBAAiB,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAU,EAAC,SAAS,CAAC,KAAK,EAAY,YAAa,EAAC,QAAQ,CAAC,KAAK,EAAY,YAAa,EAAC,UAAU,CAAC,KAAK,EAAY,YAAa,CAAC,EAAC,CAAO,GAAe,CAAC,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,OAAO,OAAO,MAAM,OAAO,SAAS,WAAW,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,CAAE,EAAO,GAAc,CAAC,MAAM,OAAO,OAAO,OAAO,aAAa,EAAE,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,OAAO,UAAU,wBAAwB,kBAAmB,+LCV53EmB,AADb,GAA2C,IAAkC,IAA4B,CAAalB,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,SAAS,UAAW,EAAC,AAAC,EAAC,CAAcC,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,aAAc,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,YAAa,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,YAAa,EAAC,AAAC,EAAC,CAAc,GAAG,aAA0B,GAAG,SAAsB,GAAG,OAC3pDiB,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,mBAAqB,CAAC,KAAO,UAAW,CAAC,CAAC,ICAtqB,SAAwB,EAAkB,EAAI,EAAO,CAAC,KAAM,GAAO,CAAC,IAAM,EAAOf,GAAiB,EAAO,IAAI,GAAG,EAAO,CAAC,IAAM,EAAM,EAAO,GAAK,GAAG,EAAM,OAAO,CAAO,GAAO,EAAO,QAAU,CAAC,kBAA7OA,AAAvD,IAAiD,CAAMA,GAAiB,CAAC,UAAUI,EAAgB,uFCAtFW,AADb,GAAyD,IAAyB,IAAkC,IAA4B,CAAa,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAM,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,CAAC,0WAAuX,EAAK,EAAO,GAAG,CAAE,EAAC,CAAc,EAAK,EAAO,GAAG,CAAE,EAAC,CAAC,qKAAkL,EAAK,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAgB,EAAC,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAY,CAAC,EAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAgB,EAAC,AAAC,EAAC,CAAC,GAAI,CAAC,EAAC,AAAC,EAAC,CAAc,GAAgB,EAAA,EAAoB,CAAC,SAAsB,EAAM,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,CAAC,0WAAuX,EAAK,EAAO,GAAG,CAAE,EAAC,CAAc,EAAK,EAAO,GAAG,CAAE,EAAC,CAAC,+JAA4K,EAAK,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAgB,EAAC,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAY,CAAC,EAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAgB,EAAC,AAAC,EAAC,CAAC,IAAK,CAAC,EAAC,AAAC,EAAC,CACnhFA,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,mBAAqB,CAAC,KAAO,UAAW,CAAC,CAAC,ICA9H,SAAwBZ,GAAkB,EAAI,EAAO,CAAC,KAAM,GAAO,CAAC,IAAM,EAAO,GAAiB,EAAO,IAAI,GAAG,EAAO,CAAC,IAAM,EAAM,EAAO,GAAK,GAAG,EAAM,OAAO,CAAO,GAAO,EAAO,QAAU,CAAC,kBAA7O,AAAvD,IAAiD,CAAM,GAAiB,CAAC,UAAUC,EAAgB,6GCWtFW,AAXb,GAAyD,IAAiK,IAAkE,IAA4B,CAA0B,IAAyH,KAA0H,KAA4H,CAAMV,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAmB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,GAAS,CAAC,EAAE,WAAe,GAAI,iBAAiB,GAAI,SAAiB,EAAE,aAAa,CAAC,SAAS,EAAE,aAAa,CAAC,CAAK,MAAM,QAAQ,EAAE,SAAS,GAAI,SAAiB,EAAE,SAAS,EAAE,EAAS,EAAcC,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAS,CAAC,CAAC,eAAa,SAAO,KAAG,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAc,EAAM,SAAU,GAASC,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,GAAe,CAAO,EAAkB,GAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,EAAgB,CAAC,eAAe,YAAY,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,EAAsB,CAAA,GAAA,EAA8C,EAAO,EAAkB,EAAGP,GAAkB,GAAG,EAAsB,CAAO,EAAQ,GAAS,EAAU,KAAK,CAAO,EAAS,GAAS,EAAU,KAAK,CAAC,MAAoB,GAAK,EAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKI,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMD,GAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,GAAG,EAAU,GAAG,EAAgB,UAAU,EAAG,EAAkB,iBAAiBc,EAAU,EAAW,CAAC,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,GAAG,CAAM,EAAC,SAAS,CAAC,GAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,GAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAM,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,CAAc,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,8FAA+F,EAAC,SAAS,ubAAic,EAAC,CAAc,EAAK,EAAO,GAAG,CAAE,EAAC,CAAc,EAAK,EAAO,GAAG,CAAE,EAAC,CAAc,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,8FAA+F,EAAC,SAAS,8LAAwM,EAAC,CAAc,EAAK,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAgB,EAAC,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAY,CAAC,EAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,6FAA8F,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,8FAA+F,EAAC,SAAS,GAAI,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,sBAAsB,qEAAqE,sBAAsB,qEAAqE,qBAAqB,oEAAqE,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAC,GAAuB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,GAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAM,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,CAAc,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,8FAA+F,EAAC,SAAS,ubAAic,EAAC,CAAc,EAAK,EAAO,GAAG,CAAE,EAAC,CAAc,EAAK,EAAO,GAAG,CAAE,EAAC,CAAc,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,8FAA+F,EAAC,SAAS,8LAAwM,EAAC,CAAc,EAAK,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAgB,EAAC,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAY,CAAC,EAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,6FAA8F,EAAC,SAAS,mBAAoB,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,8FAA+F,EAAC,SAAS,IAAK,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,sBAAsB,qEAAqE,sBAAsB,qEAAqE,qBAAqB,oEAAqE,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOC,GAAI,CAAC,kFAAkF,kFAAkF,4SAA4S,oMAAoM,+WAA+W,GAAA,GAAmB,GAAA,EAAoB,EAUl3S,EAAgB,EAAQV,GAAUU,GAAI,eAAe,GAAgB,EAAgB,EAAgB,YAAY,0BAA0B,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,EAAgB,CAAC,UAAU,CAAC,aAAa,GAAG,MAAM,gBAAgB,KAAK,EAAY,MAAO,CAAC,EAAC,CAAC,EAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,EAAA,EAA0C,CAAC,GAAG,EAAA,GAA2C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,CACrgEP,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAE,EAAC,YAAc,CAAC,qBAAuB,MAAM,gBAAkB,+BAAmC,sBAAwB,IAAI,kBAAoB,OAAO,yBAA2B,QAAQ,6BAA+B,OAAO,sBAAwB,MAAM,yBAA2B,OAAO,oCAAsC,2EAA0F,CAAC,EAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,mBAAqB,CAAC,KAAO,UAAW,CAAC,CAAC,2DCX0yG,SAAS,EAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,kGAW5lI,AAXb,GAAyD,IAAwS,IAAkE,IAA4B,CAA0B,IAAkH,KAA6Q,KAAiI,KAA4I,KAAyH,KAA4H,KAA8I,KAA4J,CAAM,GAA0B,EAASC,EAAqB,CAAO,GAAyE,EAAqB,EAA6BA,EAAqB,CAAC,OAAO,YAAY,SAAS,EAAoB,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAc,EAAS,EAAS,CAAO,GAAgC,EAA6B,EAAS,CAAC,OAAO,YAAY,SAAS,GAAkB,QAAQ,WAAY,EAAC,CAAO,GAAe,EAASC,EAAU,CAAO,GAAiC,EAA6B,EAAS,CAAC,OAAO,YAAY,SAAS,GAAmB,QAAQ,WAAY,EAAC,CAAO,GAAsC,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,GAAuB,QAAQ,WAAY,EAAC,CAAO,GAAiC,EAA6B,EAAS,CAAC,OAAO,YAAY,SAAS,GAAkB,QAAQ,WAAY,EAAC,CAAO,GAAsC,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,GAAsB,QAAQ,WAAY,EAAC,CAAO,GAAmB,EAASC,EAAc,CAAO,GAA8D,EAAqB,EAA6BA,EAAc,CAAC,OAAO,YAAY,SAAS,GAAgB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAAmE,EAAqB,EAA6BD,EAAc,CAAC,OAAO,YAAY,SAAS,GAAqB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAAmE,EAAqB,EAA6BD,EAAc,CAAC,OAAO,YAAY,SAAS,GAAqB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAAsC,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,GAAuB,QAAQ,WAAY,EAAC,CAAO,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAO,GAAkB,eAAqB,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAkB,EAA8L,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAO,GAAS,EAAO,OAAA,EAAsB,CAAO,GAAwB,CAAC,iBAAiB,YAAY,iBAAiB,YAAY,eAAe,YAAY,eAAe,YAAY,QAAQ,YAAY,MAAM,WAAY,EAAO,GAAS,CAAC,CAAC,eAAa,SAAO,KAAG,MAAI,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAK,EAAM,UAAU,QAAQ,GAAwB,EAAM,UAAU,EAAM,SAAS,YAAY,UAAU,GAAc,EAAM,SAAU,GAAS,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAS,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,GAAe,CAAO,EAAkB,GAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,YAAU,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,EAAgB,CAAC,cAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,oBAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAM,CAAC,wBAAsB,SAAM,CAAC,EAAyB,EAAY,CAAO,EAAY,EAAsB,MAAM,GAAG,IAAO,CAAoC,GAAnC,EAAgB,CAAC,WAAU,CAAM,EAAC,CAAI,EAAU,CAAC,IAAM,EAAI,KAAM,GAAU,GAAG,EAAK,CAAC,GAAG,KAAM,EAAM,OAAO,CAAO,CAAC,EAAC,CAAO,GAAiB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAgB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAiB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAsB,CAAA,EAAuB,EAAO,EAAkB,EAAG,GAAkB,GAAG,GAAsB,CAAO,EAAY,MAAQ,CAAC,YAAY,WAAY,EAAC,SAAS,EAAY,CAAkC,EAAa,IAAQ,IAAc,YAA6C,GAAa,KAAQ,CAAC,YAAY,WAAY,EAAC,SAAS,EAAY,CAAkC,GAAa,IAAQ,IAAc,YAAuC,MAAoB,GAAK,EAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAK,GAAW,CAAC,MAAM,GAAY,SAAsB,EAAK,GAAsC,CAAC,GAAG,EAAU,GAAG,EAAgB,aAAa,gBAAgB,UAAU,EAAG,EAAkB,gBAAgBC,EAAU,EAAW,CAAC,mBAAmB,UAAU,kBAAiB,EAAsB,mBAAiB,SAAS,YAAY,MAAM,EAAY,IAAI,EAAW,MAAM,CAAC,UAAU,gVAAgV,GAAG,CAAM,EAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,mBAAmB,gBAAiB,EAAC,UAAU,CAAC,mBAAmB,OAAQ,EAAC,UAAU,CAAC,mBAAmB,gBAAiB,EAAC,UAAU,CAAC,mBAAmB,cAAe,EAAC,UAAU,CAAC,mBAAmB,cAAe,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,CAAE,EAAC,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAE,EAAC,UAAU,CAAC,QAAQ,CAAE,EAAC,UAAU,CAAC,QAAQ,CAAE,EAAC,UAAU,CAAC,QAAQ,CAAE,EAAC,UAAU,CAAC,QAAQ,CAAE,CAAC,EAAC,SAAS,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,GAAG,EAAqB,CAAC,UAAU,CAAC,MAAA,EAAY,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,IAAI,GAAmB,QAAQ,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,GAAG,EAAE,IAAI,EAAE,GAAG,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA4C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAyE,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAU,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,SAAS,CAAC,GAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAA+B,mBAAiB,SAAS,YAAY,SAAS,CAAC,GAAa,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,EAAG,EAAC,SAAsB,EAAK,GAAgC,CAAC,iBAAiB,kBAAkB,aAAa,kBAAkB,qBAAqB,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,IAAI,MAAM,qBAAqB,UAAS,EAAK,WAAU,EAAK,OAAO,OAAO,GAAG,YAAY,mBAAmB,yBAAyB,eAAe,kBAAkB,kBAAiB,EAAM,WAAU,EAAK,SAAQ,EAAM,SAAS,QAAQ,SAAS,YAAY,OAAO,EAAE,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,SAAS,cAAe,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,GAAc,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKH,EAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,qBAAqB,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,IAAI,MAAM,qBAAqB,UAAS,EAAM,WAAU,EAAK,OAAO,OAAO,GAAG,YAAY,mBAAmB,yBAAyB,eAAe,qEAAqE,kBAAiB,EAAM,WAAU,EAAK,SAAQ,EAAM,SAAS,QAAQ,SAAS,YAAY,OAAO,EAAE,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,aAAiB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,GAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAA8B,mBAAiB,SAAS,YAAY,SAAS,CAAC,GAAa,EAAe,EAAK,GAAsC,CAAC,UAAU,gBAAgB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAiC,CAAC,iBAAiB,kBAAkB,aAAa,kBAAkB,qBAAqB,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,IAAI,MAAM,qBAAqB,UAAS,EAAM,WAAU,EAAK,OAAO,OAAO,GAAG,YAAY,mBAAmB,yBAAyB,eAAe,kBAAkB,kBAAiB,EAAM,WAAU,EAAK,SAAQ,EAAM,SAAS,QAAQ,SAAS,YAAY,OAAO,EAAE,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,qEAAqE,kBAAiB,CAAK,EAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,GAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,SAAS,CAAC,GAAa,EAAe,EAAK,GAAsC,CAAC,UAAU,iBAAiB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAiC,CAAC,iBAAiB,kBAAkB,aAAa,kBAAkB,qBAAqB,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,IAAI,MAAM,qBAAqB,UAAS,EAAM,WAAU,EAAK,OAAO,OAAO,GAAG,YAAY,mBAAmB,yBAAyB,eAAe,kBAAkB,kBAAiB,EAAM,WAAU,EAAK,SAAQ,EAAM,SAAS,QAAQ,SAAS,YAAY,OAAO,EAAE,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,qEAAqE,kBAAiB,CAAK,EAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,GAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAA8B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,iBAAiB,kBAAkB,aAAa,kBAAkB,qBAAqB,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,IAAI,MAAM,qBAAqB,UAAS,EAAM,WAAU,EAAK,OAAO,OAAO,GAAG,YAAY,mBAAmB,yBAAyB,eAAe,kBAAkB,kBAAiB,EAAK,WAAU,EAAK,SAAQ,EAAM,SAAS,QAAQ,SAAS,YAAY,OAAO,EAAE,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,EAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,aAAc,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,GAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAA4B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,iBAAiB,kBAAkB,aAAa,kBAAkB,qBAAqB,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,IAAI,MAAM,qBAAqB,UAAS,EAAM,WAAU,EAAK,OAAO,OAAO,GAAG,YAAY,mBAAmB,yBAAyB,eAAe,kBAAkB,kBAAiB,EAAK,WAAU,EAAK,SAAQ,EAAM,SAAS,QAAQ,SAAS,YAAY,OAAO,EAAE,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,EAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,GAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAA8B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,iBAAiB,kBAAkB,aAAa,kBAAkB,qBAAqB,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,UAAU,IAAI,MAAM,qBAAqB,UAAS,EAAM,WAAU,EAAK,OAAO,OAAO,GAAG,YAAY,mBAAmB,yBAAyB,eAAe,kBAAkB,kBAAiB,EAAK,WAAU,EAAK,SAAQ,EAAM,SAAS,QAAQ,SAAS,YAAY,OAAO,EAAE,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,EAAE,SAAS,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,EAAC,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,EAAC,UAAU,CAAC,iBAAiB,qEAAqE,aAAa,qEAAqE,eAAe,oEAAqE,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,4BAA4B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,YAAa,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAA0B,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,EAAE,EAAE,GAAG,EAAqB,CAAC,UAAU,CAAC,MAAA,EAAY,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,IAAI,GAAmB,QAAQ,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,GAAG,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAA8D,CAAC,WAAU,EAAM,WAAU,EAAM,UAAU,EAAkB,KAAK,EAAa,EAAE,mBAAmB,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,wEAAwE,SAAS,YAAY,UAAU,qBAAqB,UAAU,QAAQ,MAAM,CAAC,OAAO,MAAO,EAAC,QAAQ,YAAY,WAAU,EAAM,MAAM,OAAO,WAAU,CAAM,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAc,EAAe,EAAK,EAA0B,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,EAAE,EAAE,GAAG,EAAqB,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,IAAI,GAAmB,QAAQ,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,GAAG,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA4C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKC,EAAc,CAAC,WAAU,EAAM,WAAU,EAAM,UAAU,EAAkB,KAAK,EAAa,EAAE,WAAW,UAAU,QAAQ,OAAO,OAAO,UAAU,GAAiB,GAAG,YAAY,UAAU,qEAAqE,UAAU,wEAAwE,SAAS,YAAY,UAAU,qBAAqB,UAAU,QAAQ,MAAM,CAAC,OAAO,MAAO,EAAC,QAAQ,YAAY,WAAU,EAAM,MAAM,OAAO,WAAU,EAAM,GAAG,EAAqB,CAAC,UAAU,CAAC,UAAU,EAAgB,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAc,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,EAAG,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,WAAU,EAAM,WAAU,EAAM,UAAU,EAAkB,KAAK,EAAa,EAAE,YAAY,UAAU,QAAQ,OAAO,OAAO,UAAU,GAAiB,GAAG,YAAY,UAAU,qEAAqE,UAAU,wEAAwE,SAAS,YAAY,UAAU,qBAAqB,UAAU,QAAQ,MAAM,CAAC,OAAO,MAAO,EAAC,QAAQ,YAAY,WAAU,EAAM,MAAM,OAAO,WAAU,CAAM,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,GAAG,IAAM,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,EAAE,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,WAAU,EAAM,WAAU,EAAM,UAAU,EAAkB,KAAK,EAAa,EAAE,YAAY,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,wEAAwE,SAAS,YAAY,UAAU,qBAAqB,UAAU,QAAQ,MAAM,CAAC,OAAO,MAAO,EAAC,QAAQ,YAAY,WAAU,EAAM,MAAM,OAAO,WAAU,CAAM,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOG,GAAI,CAAC,kFAAkF,kFAAkF,gRAAgR,uTAAuT,yGAAyG,qTAAqT,4QAA4Q,6HAA6H,ySAAyS,0aAA0a,iOAAiO,gJAAgJ,+HAA+H,sIAAsI,kVAAkV,0QAA0Q,qSAAqS,iOAAiO,w3EAAw3E,yJAAyJ,+LAA+L,6aAA6a,mGAAmG,6DAA6D,sEAAsE,yEAAyE,2IAA2I,6XAA6X,mKAAmK,wKAAwK,+HAA+H,uEAAuE,uvCAAuvC,6GAA6G,8EAA8E,2FAA2F,ubAAub,6RAA6R,4IAA4I,+VAA+V,uEAAuE,q3BAAq3B,GAAA,EAAmB,EAUlvzC,EAAgB,EAAQ,GAAUA,GAAI,eAAe,IAAgB,EAAgB,EAAgB,YAAY,qBAAqB,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,UAAU,iBAAiB,iBAAiB,QAAQ,eAAe,cAAe,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,aAAa,GAAG,MAAM,gBAAgB,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,MAAM,MAAM,KAAK,EAAY,YAAa,CAAC,EAAC,CAAC,EAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,GAA0B,GAAG,GAAc,GAAG,GAAe,GAAG,GAAmB,GAAG,EAAA,EAA0C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,CACh0E,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAE,EAAC,YAAc,CAAC,kBAAoB,OAAO,sBAAwB,IAAI,sBAAwB,MAAM,gBAAkB,iDAAyD,yBAA2B,OAAO,6BAA+B,OAAO,qBAAuB,MAAM,yBAA2B,QAAQ,oCAAsC,qRAA4U,CAAC,EAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,mBAAqB,CAAC,KAAO,UAAW,CAAC,CAAC"}