{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/hN711cBSiQPLeI9e9mAp/hLmX35eETrvUnOPPEMIk/Outseta.js", "ssg:https://framerusercontent.com/modules/diixmcbmarl2uW9gPXJN/juAsKzqNhMk7KCNsKIpP/BXlcRLwfl.js", "ssg:https://framerusercontent.com/modules/rK2GznXwb6D7iLi6kgqL/Bd03yndUYUgnnFRko29t/Rr67N7zI9.js"],
  "sourcesContent": ["/// VERSION 0.0.1\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";/////////////////// Button Overrides\nexport function withRegisterPopup(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,\"data-o-anonymous\":\"1\",\"data-o-auth\":\"1\",\"data-mode\":\"popup\",\"data-widget-mode\":\"register\"});};}export function asLoginPopupButton(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,\"data-o-anonymous\":\"1\",\"data-o-auth\":\"1\",\"data-mode\":\"popup\",\"data-widget-mode\":\"login\"});};}export function asProfilePopupButton(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,\"data-o-authenticated\":\"1\",\"data-o-profile\":\"1\",\"data-mode\":\"popup\"});};}export function asLogoutButton(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,\"data-o-authenticated\":\"1\",\"data-o-logout-link\":\"1\"});};}/////////////////// Visibility Overrides\nexport function showForAuthenticated(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,\"data-o-authenticated\":\"1\"});};}export function showForAnonymous(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,\"data-o-anonymous\":\"1\"});};}/////////// Visibility Overrides Based on Plan Uid\n/////// Instruction\n// 1. Find the plan uid on the plan page in Outseta\n// 2. Replace aWxYEbmV in function name with the plan uid\n// 3. Replace the aWxYEbmV value of validPlanUid with the plan uid\n// Duplicate function for additional plan uids\nexport function showForSinglePlan_rmkyMD9g(Component){const validPlanUid=\"rmkyMD9g\";return props=>{try{const user=useUser();const value=user&&user[\"Account.CurrentSubscription.Plan.Uid\"];if(value===validPlanUid){return /*#__PURE__*/_jsx(Component,{...props});}return null;}catch(error){log(\"error in showForSinglePlan\",validPlanUid,error.message);return null;}};}/////////// Visibility Based on an Account Custom Property\n/////// Instruction\n// 1. Give the function as useful name\n// 2. Replace the \"PARTY\" value of validPropertyValue with the uppercase version of the value you want\n// 3. Replace MyCustomAccountProperty with the system name of your custom account property\n// Duplicate the functions for additional account properties and/or values\nexport function showForPartyAccounts(Component){const validPropertyValue=\"PARTY\";return props=>{try{const user=useUser();const value=user&&user[\"Account.MyCustomAccountProperty\"]?.toUpperCase();if(value===validPropertyValue){return /*#__PURE__*/_jsx(Component,{...props});}return null;}catch(error){log(\"error in showForPartyPlan\",validPropertyValue,error.message);return null;}};}/////////// Visibility Based on an Person Custom Property\n/////// Instruction\n// 1. Give the function a useful name\n// 2. Replace the \"PARTY\" value of validPropertyValue with the uppercase version of the value you want\n// 3. Replace MyCustomPersonProperty with the system name of your custom person property\n// Duplicate the functions for additional account properties and/or values\nexport function showForPartyPeople(Component){const validPropertyValue=\"PARTY\";return props=>{try{const user=useUser();const value=user&&user[\"MyCustomPersonProperty\"]?.toUpperCase();if(value===validPropertyValue){return /*#__PURE__*/_jsx(Component,{...props});}return null;}catch(error){log(\"error in showForPartyPeople\",validPropertyValue,error.message);return null;}};}/////////////////// Text Overrides\nexport function withUserFirstName(Component){return withProperty(\"FirstName\",Component);}export function withUserLastName(Component){return withProperty(\"LastName\",Component);}export function withUserFullName(Component){return withProperty(\"FullName\",Component);}export function withUserEmail(Component){return withProperty(\"Email\",Component);}export function withAccountName(Component){return withProperty(\"Account.Name\",Component);}export function withAccountSubscriptionUid(Component){return withProperty(\"Account.CurrentSubscription.Plan.Uid\",Component);}export function withAccountSubscriptionName(Component){return withProperty(\"Account.CurrentSubscription.Plan.Name\",Component);}export function withAccountSubscriptionDescription(Component){return withProperty(\"Account.CurrentSubscription.Plan.Description\",Component);}/////////////////// Image Overrides\nexport function withUserAvatar(Component){return withImageProperty(\"ProfileImageS3Url\",Component);}let user=null;const listeners=new Set;const fetchUser=async event=>{try{log(\"fetch user\",event);const userObject=await getOutseta().getUser();user=flattenObject(userObject);log(\"fetch user fulfilled\",event,userObject,user);notifyListeners();}catch(error){log(\"fetch user failed\",error);}};const clearUser=event=>{user=null;// Possible race condition that an earlier\nlog(\"cleared user\",event);notifyListeners();};const notifyListeners=()=>{listeners.forEach(listener=>listener(user));};export const subscribe=listener=>{listeners.add(listener);return()=>listeners.delete(listener);};export const getUser=()=>user;// Listen to global events that might change the user\nconst outsetaFetchUserEvents=[\"accessToken.set\",\"profile.update\",\"account.update\"];outsetaFetchUserEvents.forEach(event=>{getOutseta()?.on(event,()=>fetchUser(event));});// Listen to global events that should clear the user\nconst outsetaClearUserEvents=[\"logout\"];outsetaClearUserEvents.forEach(event=>{getOutseta()?.on(event,()=>clearUser(event));});/////////////////// User Hook\nfunction useUser(){const[user,setUser]=useState(getUser());useEffect(()=>{const updateData=newData=>setUser(newData);const unsubscribe=subscribe(updateData);return()=>{unsubscribe();};},[]);return user;}function getOutseta(){if(window&&window[\"Outseta\"]){return window[\"Outseta\"];}else if(window){console.log(\"Outseta is missing, have you added the Outseta Script and Options to the head of the site?\");alert(`We're sorry, but it seems that Outseta is missing. Please reach out to the owner of ${window.location.hostname} to let them know. Thank you for your understanding \uD83D\uDE4F`);}else{// Rendering on the server\n}}/////////////////// Helpers\nfunction withProperty(property,Component){return props=>{const user=useUser();if(!user)return null;return /*#__PURE__*/_jsx(Component,{...props,text:user[property]});};}function withImageProperty(property,Component){return props=>{const user=useUser();if(!user)return null;const imageSrc=user[property];log(\"avatar source\",user[property]);if(imageSrc){return /*#__PURE__*/_jsx(Component,{...props,background:{...props.background,src:imageSrc,srcSet:undefined}});}else if(props.background?.src){// Component has image set, use as fallback\nreturn /*#__PURE__*/_jsx(Component,{...props});}else{// Component has no image set, remove\nreturn null;}};}function log(...props){getOutseta()?.debug(\"outseta.framer.override.user\",...props);}function flattenObject(obj,parent=\"\",res={}){for(let key in obj){let propName=parent?`${parent}.${key}`:key;if(Array.isArray(obj[key])){obj[key].forEach((item,index)=>{flattenObject(item,`${propName}[${index}]`,res);});}else if(typeof obj[key]===\"object\"&&obj[key]!==null){flattenObject(obj[key],propName,res);}else{res[propName]=obj[key];}}return res;}\nexport const __FramerMetadata__ = {\"exports\":{\"withUserEmail\":{\"type\":\"reactHoc\",\"name\":\"withUserEmail\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAccountSubscriptionDescription\":{\"type\":\"reactHoc\",\"name\":\"withAccountSubscriptionDescription\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRegisterPopup\":{\"type\":\"reactHoc\",\"name\":\"withRegisterPopup\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getUser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"showForAuthenticated\":{\"type\":\"reactHoc\",\"name\":\"showForAuthenticated\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"subscribe\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUserLastName\":{\"type\":\"reactHoc\",\"name\":\"withUserLastName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAccountSubscriptionUid\":{\"type\":\"reactHoc\",\"name\":\"withAccountSubscriptionUid\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUserFirstName\":{\"type\":\"reactHoc\",\"name\":\"withUserFirstName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"showForSinglePlan_rmkyMD9g\":{\"type\":\"reactHoc\",\"name\":\"showForSinglePlan_rmkyMD9g\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"showForPartyPeople\":{\"type\":\"reactHoc\",\"name\":\"showForPartyPeople\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUserFullName\":{\"type\":\"reactHoc\",\"name\":\"withUserFullName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUserAvatar\":{\"type\":\"reactHoc\",\"name\":\"withUserAvatar\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"asLoginPopupButton\":{\"type\":\"reactHoc\",\"name\":\"asLoginPopupButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAccountSubscriptionName\":{\"type\":\"reactHoc\",\"name\":\"withAccountSubscriptionName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"asLogoutButton\":{\"type\":\"reactHoc\",\"name\":\"asLogoutButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAccountName\":{\"type\":\"reactHoc\",\"name\":\"withAccountName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"showForPartyAccounts\":{\"type\":\"reactHoc\",\"name\":\"showForPartyAccounts\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"asProfilePopupButton\":{\"type\":\"reactHoc\",\"name\":\"asProfilePopupButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"showForAnonymous\":{\"type\":\"reactHoc\",\"name\":\"showForAnonymous\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Outseta.map", "// Generated by Framer (f5febb9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"MROEWO1gs\",\"CDSgmN_Hm\"];const serializationHash=\"framer-Z6vU0\";const variantClassNames={CDSgmN_Hm:\"framer-v-tbg8cm\",MROEWO1gs:\"framer-v-oy569t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1 - Hover\":\"CDSgmN_Hm\",\"Variant 1\":\"MROEWO1gs\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,cD0MtVvRB:link!==null&&link!==void 0?link:props.cD0MtVvRB,r6pb1sy1A:(_ref=title!==null&&title!==void 0?title:props.r6pb1sy1A)!==null&&_ref!==void 0?_ref:\"Home\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"MROEWO1gs\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cD0MtVvRB,r6pb1sy1A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MROEWO1gs\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter13g19kg=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"CDSgmN_Hm\");});const onMouseLeave1gynqi7=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"MROEWO1gs\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:cD0MtVvRB,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-oy569t\",className,classNames)} framer-te9wd6`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MROEWO1gs\",onMouseEnter:onMouseEnter13g19kg,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CDSgmN_Hm:{\"data-framer-name\":\"Variant 1 - Hover\",onMouseLeave:onMouseLeave1gynqi7}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\"},children:\"Home\"})}),className:\"framer-iirrqr\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"BurT6B0Sy\",text:r6pb1sy1A,variants:{CDSgmN_Hm:{\"--extracted-r6o4lv\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CDSgmN_Hm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80)))\"},children:\"Home\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5jwk05\",layoutDependency:layoutDependency,layoutId:\"YDFw5erds\",style:{backgroundColor:\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\",borderBottomLeftRadius:400,borderBottomRightRadius:400,borderTopLeftRadius:400,borderTopRightRadius:400,boxShadow:\"0px 0px 9px 1px rgba(5, 150, 136, 0)\",opacity:.2},variants:{CDSgmN_Hm:{boxShadow:\"0px 0px 9px 1px rgb(5, 150, 136)\",opacity:1}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z6vU0.framer-te9wd6, .framer-Z6vU0 .framer-te9wd6 { display: block; }\",\".framer-Z6vU0.framer-oy569t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 21px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Z6vU0 .framer-iirrqr { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Z6vU0 .framer-5jwk05 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); overflow: visible; position: relative; width: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z6vU0.framer-oy569t { gap: 0px; } .framer-Z6vU0.framer-oy569t > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Z6vU0.framer-oy569t > :first-child { margin-left: 0px; } .framer-Z6vU0.framer-oy569t > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 79\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"CDSgmN_Hm\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"cD0MtVvRB\":\"link\",\"r6pb1sy1A\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBXlcRLwfl=withCSS(Component,css,\"framer-Z6vU0\");export default FramerBXlcRLwfl;FramerBXlcRLwfl.displayName=\"Hamburger Menu - Links\";FramerBXlcRLwfl.defaultProps={height:20,width:79};addPropertyControls(FramerBXlcRLwfl,{variant:{options:[\"MROEWO1gs\",\"CDSgmN_Hm\"],optionTitles:[\"Variant 1\",\"Variant 1 - Hover\"],title:\"Variant\",type:ControlType.Enum},cD0MtVvRB:{title:\"Link\",type:ControlType.Link},r6pb1sy1A:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerBXlcRLwfl,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBXlcRLwfl\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"cD0MtVvRB\\\":\\\"link\\\",\\\"r6pb1sy1A\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"79\",\"framerIntrinsicHeight\":\"20\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CDSgmN_Hm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BXlcRLwfl.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{asLogoutButton,showForAnonymous,showForAuthenticated}from\"https://framerusercontent.com/modules/hN711cBSiQPLeI9e9mAp/hLmX35eETrvUnOPPEMIk/Outseta.js\";import HamburgerMenuLinks from\"https://framerusercontent.com/modules/diixmcbmarl2uW9gPXJN/juAsKzqNhMk7KCNsKIpP/BXlcRLwfl.js\";const HamburgerMenuLinksFonts=getFonts(HamburgerMenuLinks);const MotionDivShowForAnonymous=showForAnonymous(motion.div);const MotionAShowForAnonymous=showForAnonymous(motion.a);const MotionAShowForAuthenticated=showForAuthenticated(motion.a);const MotionAAsLogoutButton=asLogoutButton(motion.a);const cycleOrder=[\"rCO3_ttRa\",\"LiwtP1_OV\"];const serializationHash=\"framer-3QNPs\";const variantClassNames={LiwtP1_OV:\"framer-v-19ja52g\",rCO3_ttRa:\"framer-v-152sen7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;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={\"Variant 1\":\"rCO3_ttRa\",\"Variant 2\":\"LiwtP1_OV\"};const getProps=({hamburgerColour,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rCO3_ttRa\",ztV1_1SPm:hamburgerColour??props.ztV1_1SPm??\"rgb(255, 255, 255)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ztV1_1SPm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rCO3_ttRa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4zbyd6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});});const onTap1ehnce0=activeVariantCallback(async(...args)=>{setVariant(\"LiwtP1_OV\");});const onTapdddxej=activeVariantCallback(async(...args)=>{setVariant(\"rCO3_ttRa\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"LiwtP1_OV\")return true;return false;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();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(serializationHash,...sharedStyleClassNames,\"framer-152sen7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rCO3_ttRa\",ref:ref??ref1,style:{...style},...addPropertyOverrides({LiwtP1_OV:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true,onTap:onTap4zbyd6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q1hcbf\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"K3TtyQh6V\",onTap:onTap1ehnce0,...addPropertyOverrides({LiwtP1_OV:{onTap:onTapdddxej}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ki5870\",layoutDependency:layoutDependency,layoutId:\"D6fn8xnbF\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{LiwtP1_OV:{rotate:45}},...addPropertyOverrides({LiwtP1_OV:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e26qgw\",layoutDependency:layoutDependency,layoutId:\"NPTVDR5yM\",style:{backgroundColor:ztV1_1SPm,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nltwns\",layoutDependency:layoutDependency,layoutId:\"dVIu2Feaq\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{LiwtP1_OV:{rotate:-45}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14s4ct9\",layoutDependency:layoutDependency,layoutId:\"X4bDMlfl2\",style:{backgroundColor:ztV1_1SPm,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14nt8ev\",layoutDependency:layoutDependency,layoutId:\"yqejlzBty\",style:{rotate:0},transformTemplate:transformTemplate1,variants:{LiwtP1_OV:{rotate:45}},...addPropertyOverrides({LiwtP1_OV:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1epua92\",layoutDependency:layoutDependency,layoutId:\"yjqdDCfjs\",style:{backgroundColor:ztV1_1SPm,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cwm2me\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"I_Kb2KUkQ\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",opacity:0},variants:{LiwtP1_OV:{opacity:1}},children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({LiwtP1_OV:{height:20,y:(componentViewport?.y||0)+40+40+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cnaxww-container\",layoutDependency:layoutDependency,layoutId:\"RSW66alQY-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{cD0MtVvRB:resolvedLinks[0],height:\"100%\",id:\"RSW66alQY\",layoutId:\"RSW66alQY\",r6pb1sy1A:\"Home\",variant:\"MROEWO1gs\",width:\"100%\",...addPropertyOverrides({LiwtP1_OV:{cD0MtVvRB:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivShowForAnonymous,{className:\"framer-1wqoy31\",layoutDependency:layoutDependency,layoutId:\"VjVBZ5T6P\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YGwCAJ92a\"},implicitPathVariables:undefined},{href:{webPageId:\"YGwCAJ92a\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,...addPropertyOverrides({LiwtP1_OV:{y:(componentViewport?.y||0)+40+40+45+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k326co-container\",layoutDependency:layoutDependency,layoutId:\"IsDlA0zeZ-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{cD0MtVvRB:resolvedLinks1[0],height:\"100%\",id:\"IsDlA0zeZ\",layoutId:\"IsDlA0zeZ\",r6pb1sy1A:\"Subscribe\",variant:\"MROEWO1gs\",width:\"100%\",...addPropertyOverrides({LiwtP1_OV:{cD0MtVvRB:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined},{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({LiwtP1_OV:{height:20,y:(componentViewport?.y||0)+40+40+90}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1clj4p-container\",layoutDependency:layoutDependency,layoutId:\"qKR6u1s3S-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{cD0MtVvRB:resolvedLinks2[0],height:\"100%\",id:\"qKR6u1s3S\",layoutId:\"qKR6u1s3S\",r6pb1sy1A:\"Interviews\",variant:\"MROEWO1gs\",width:\"100%\",...addPropertyOverrides({LiwtP1_OV:{cD0MtVvRB:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lAUSoC81t\"},implicitPathVariables:undefined},{href:{webPageId:\"lAUSoC81t\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({LiwtP1_OV:{height:20,y:(componentViewport?.y||0)+40+40+135}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1akoey7-container\",layoutDependency:layoutDependency,layoutId:\"XWr_RxNxe-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{cD0MtVvRB:resolvedLinks3[0],height:\"100%\",id:\"XWr_RxNxe\",layoutId:\"XWr_RxNxe\",r6pb1sy1A:\"Mentors\",variant:\"MROEWO1gs\",width:\"100%\",...addPropertyOverrides({LiwtP1_OV:{cD0MtVvRB:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XhISVQf0w\"},implicitPathVariables:undefined},{href:{webPageId:\"XhISVQf0w\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({LiwtP1_OV:{height:20,y:(componentViewport?.y||0)+40+40+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0hzur-container\",layoutDependency:layoutDependency,layoutId:\"SNvsxfUEf-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{cD0MtVvRB:resolvedLinks4[0],height:\"100%\",id:\"SNvsxfUEf\",layoutId:\"SNvsxfUEf\",r6pb1sy1A:\"Playbooks\",variant:\"MROEWO1gs\",width:\"100%\",...addPropertyOverrides({LiwtP1_OV:{cD0MtVvRB:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rZX_66F34\"},implicitPathVariables:undefined},{href:{webPageId:\"bqXTXxW5Q\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({LiwtP1_OV:{height:20,y:(componentViewport?.y||0)+40+40+225}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pflqys-container\",layoutDependency:layoutDependency,layoutId:\"CiCKC5jn_-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{cD0MtVvRB:resolvedLinks5[0],height:\"100%\",id:\"CiCKC5jn_\",layoutId:\"CiCKC5jn_\",r6pb1sy1A:\"Investors\",variant:\"MROEWO1gs\",width:\"100%\",...addPropertyOverrides({LiwtP1_OV:{cD0MtVvRB:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8jql74\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Ig8cfUI4n\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://medsider.outseta.com/auth?widgetMode=login#o-anonymous\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAShowForAnonymous,{className:\"framer-ez5s27 framer-uf3bwv\",layoutDependency:layoutDependency,layoutId:\"nMPcxDmGT\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,...addPropertyOverrides({LiwtP1_OV:{y:(componentViewport?.y||0)+40+40+270+25+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jfo1ys-container\",layoutDependency:layoutDependency,layoutId:\"MoJsfkJ3E-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{height:\"100%\",id:\"MoJsfkJ3E\",layoutId:\"MoJsfkJ3E\",r6pb1sy1A:\"Log In\",variant:\"MROEWO1gs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://medsider.outseta.com/profile?tab=profile#o-authenticated\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAShowForAuthenticated,{className:\"framer-164xbdq framer-uf3bwv\",layoutDependency:layoutDependency,layoutId:\"F6Q8z1Cgr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,...addPropertyOverrides({LiwtP1_OV:{y:(componentViewport?.y||0)+40+40+270+25+45+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iiyviq-container\",layoutDependency:layoutDependency,layoutId:\"mb5fnJEg5-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{height:\"100%\",id:\"mb5fnJEg5\",layoutId:\"mb5fnJEg5\",r6pb1sy1A:\"Account\",variant:\"MROEWO1gs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"/#o-logout-link\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAAsLogoutButton,{className:\"framer-1ykfpph framer-uf3bwv\",layoutDependency:layoutDependency,layoutId:\"Np4H8l_V4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,...addPropertyOverrides({LiwtP1_OV:{y:(componentViewport?.y||0)+40+40+270+25+90+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pdn5rh-container\",layoutDependency:layoutDependency,layoutId:\"gnehDqmJD-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{height:\"100%\",id:\"gnehDqmJD\",layoutId:\"gnehDqmJD\",r6pb1sy1A:\"Log Out\",variant:\"MROEWO1gs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pl8T_1FTL\"},implicitPathVariables:undefined},{href:{webPageId:\"pl8T_1FTL\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,...addPropertyOverrides({LiwtP1_OV:{y:(componentViewport?.y||0)+40+40+270+25+135}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a6malc-container\",layoutDependency:layoutDependency,layoutId:\"dBmiph_sR-container\",children:/*#__PURE__*/_jsx(HamburgerMenuLinks,{cD0MtVvRB:resolvedLinks6[0],height:\"100%\",id:\"dBmiph_sR\",layoutId:\"dBmiph_sR\",r6pb1sy1A:\"Contact\",variant:\"MROEWO1gs\",width:\"100%\",...addPropertyOverrides({LiwtP1_OV:{cD0MtVvRB:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3QNPs.framer-uf3bwv, .framer-3QNPs .framer-uf3bwv { display: block; }\",\".framer-3QNPs.framer-152sen7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3QNPs .framer-q1hcbf { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 27px; }\",\".framer-3QNPs .framer-1ki5870 { 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; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 6%; width: 24px; z-index: 8; }\",\".framer-3QNPs .framer-e26qgw, .framer-3QNPs .framer-14s4ct9, .framer-3QNPs .framer-1epua92 { flex: none; height: 2px; overflow: visible; position: relative; width: 24px; }\",\".framer-3QNPs .framer-1nltwns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 24px; z-index: 8; }\",\".framer-3QNPs .framer-14nt8ev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 94%; width: 24px; z-index: 8; }\",\".framer-3QNPs .framer-1cwm2me { -webkit-user-select: none; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; min-height: 540px; min-width: 257px; overflow: hidden; padding: 40px; pointer-events: none; position: absolute; right: 0px; top: 80px; user-select: none; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-3QNPs .framer-1cnaxww-container, .framer-3QNPs .framer-1clj4p-container, .framer-3QNPs .framer-1akoey7-container, .framer-3QNPs .framer-1g0hzur-container, .framer-3QNPs .framer-pflqys-container { flex: none; height: auto; position: relative; width: auto; z-index: -1; }\",\".framer-3QNPs .framer-1wqoy31 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-3QNPs .framer-1k326co-container, .framer-3QNPs .framer-jfo1ys-container, .framer-3QNPs .framer-iiyviq-container, .framer-3QNPs .framer-pdn5rh-container, .framer-3QNPs .framer-a6malc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3QNPs .framer-8jql74 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 25px 0px 0px 0px; position: relative; width: 177px; }\",\".framer-3QNPs .framer-ez5s27, .framer-3QNPs .framer-164xbdq, .framer-3QNPs .framer-1ykfpph { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3QNPs.framer-152sen7, .framer-3QNPs .framer-q1hcbf, .framer-3QNPs .framer-1ki5870, .framer-3QNPs .framer-1nltwns, .framer-3QNPs .framer-14nt8ev, .framer-3QNPs .framer-1cwm2me, .framer-3QNPs .framer-1wqoy31, .framer-3QNPs .framer-8jql74, .framer-3QNPs .framer-ez5s27, .framer-3QNPs .framer-164xbdq, .framer-3QNPs .framer-1ykfpph { gap: 0px; } .framer-3QNPs.framer-152sen7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-3QNPs.framer-152sen7 > :first-child, .framer-3QNPs .framer-q1hcbf > :first-child, .framer-3QNPs .framer-1cwm2me > :first-child, .framer-3QNPs .framer-8jql74 > :first-child { margin-top: 0px; } .framer-3QNPs.framer-152sen7 > :last-child, .framer-3QNPs .framer-q1hcbf > :last-child, .framer-3QNPs .framer-1cwm2me > :last-child, .framer-3QNPs .framer-8jql74 > :last-child { margin-bottom: 0px; } .framer-3QNPs .framer-q1hcbf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3QNPs .framer-1ki5870 > *, .framer-3QNPs .framer-1nltwns > *, .framer-3QNPs .framer-14nt8ev > *, .framer-3QNPs .framer-1wqoy31 > *, .framer-3QNPs .framer-ez5s27 > *, .framer-3QNPs .framer-164xbdq > *, .framer-3QNPs .framer-1ykfpph > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3QNPs .framer-1ki5870 > :first-child, .framer-3QNPs .framer-1nltwns > :first-child, .framer-3QNPs .framer-14nt8ev > :first-child, .framer-3QNPs .framer-1wqoy31 > :first-child, .framer-3QNPs .framer-ez5s27 > :first-child, .framer-3QNPs .framer-164xbdq > :first-child, .framer-3QNPs .framer-1ykfpph > :first-child { margin-left: 0px; } .framer-3QNPs .framer-1ki5870 > :last-child, .framer-3QNPs .framer-1nltwns > :last-child, .framer-3QNPs .framer-14nt8ev > :last-child, .framer-3QNPs .framer-1wqoy31 > :last-child, .framer-3QNPs .framer-ez5s27 > :last-child, .framer-3QNPs .framer-164xbdq > :last-child, .framer-3QNPs .framer-1ykfpph > :last-child { margin-right: 0px; } .framer-3QNPs .framer-1cwm2me > *, .framer-3QNPs .framer-8jql74 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }\",\".framer-3QNPs.framer-v-19ja52g.framer-152sen7 { cursor: pointer; }\",\".framer-3QNPs.framer-v-19ja52g .framer-1ki5870 { left: unset; right: -1px; top: 53%; width: 27px; }\",\".framer-3QNPs.framer-v-19ja52g .framer-e26qgw { width: 12px; z-index: 0; }\",\".framer-3QNPs.framer-v-19ja52g .framer-14nt8ev { left: -1px; top: 6px; width: 27px; }\",\".framer-3QNPs.framer-v-19ja52g .framer-1epua92 { width: 12px; }\",\".framer-3QNPs.framer-v-19ja52g .framer-1cwm2me { -webkit-user-select: auto; min-height: unset; min-width: unset; pointer-events: auto; top: 40px; user-select: auto; z-index: 8; }\",\".framer-3QNPs.framer-v-19ja52g .framer-1cnaxww-container, .framer-3QNPs.framer-v-19ja52g .framer-1clj4p-container, .framer-3QNPs.framer-v-19ja52g .framer-1akoey7-container, .framer-3QNPs.framer-v-19ja52g .framer-1g0hzur-container, .framer-3QNPs.framer-v-19ja52g .framer-pflqys-container { z-index: unset; }\",'.framer-3QNPs[data-border=\"true\"]::after, .framer-3QNPs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17\n * @framerIntrinsicWidth 27\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"LiwtP1_OV\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ztV1_1SPm\":\"hamburgerColour\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRr67N7zI9=withCSS(Component,css,\"framer-3QNPs\");export default FramerRr67N7zI9;FramerRr67N7zI9.displayName=\"Hamburger Menu\";FramerRr67N7zI9.defaultProps={height:17,width:27};addPropertyControls(FramerRr67N7zI9,{variant:{options:[\"rCO3_ttRa\",\"LiwtP1_OV\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ztV1_1SPm:{defaultValue:\"rgb(255, 255, 255)\",title:\"Hamburger Colour\",type:ControlType.Color}});addFonts(FramerRr67N7zI9,[{explicitInter:true,fonts:[]},...HamburgerMenuLinksFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRr67N7zI9\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ztV1_1SPm\\\":\\\"hamburgerColour\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"27\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"17\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LiwtP1_OV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "8TAE4kB,SAASA,GAAeC,EAAU,CAAC,OAAOC,GAA4BC,EAAKF,EAAU,CAAC,GAAGC,EAAM,uBAAuB,IAAI,qBAAqB,GAAG,CAAC,CAAI,CAC5tB,SAASE,GAAqBH,EAAU,CAAC,OAAOC,GAA4BC,EAAKF,EAAU,CAAC,GAAGC,EAAM,uBAAuB,GAAG,CAAC,CAAI,CAAQ,SAASG,GAAiBJ,EAAU,CAAC,OAAOC,GAA4BC,EAAKF,EAAU,CAAC,GAAGC,EAAM,mBAAmB,GAAG,CAAC,CAAI,CAMxQ,SAASI,GAA2BL,EAAU,CAAC,IAAMM,EAAa,WAAW,OAAOL,GAAO,CAAC,GAAG,CAAC,IAAMM,EAAKC,GAAQ,EAAiE,OAAnDD,GAAMA,EAAK,sCAAsC,KAAaD,EAAkCJ,EAAKF,EAAU,CAAC,GAAGC,CAAK,CAAC,EAAU,IAAK,OAAOQ,EAAM,CAAC,OAAAC,EAAI,6BAA6BJ,EAAaG,EAAM,OAAO,EAAS,IAAK,CAAC,CAAE,CAcvQ,IAAIE,EAAK,KAAWC,GAAU,IAAI,IAAUC,GAAU,MAAMC,GAAO,CAAC,GAAG,CAACC,EAAI,aAAaD,CAAK,EAAE,IAAME,EAAW,MAAMC,EAAW,EAAE,QAAQ,EAAEN,EAAKO,GAAcF,CAAU,EAAED,EAAI,uBAAuBD,EAAME,EAAWL,CAAI,EAAEQ,GAAgB,CAAE,OAAOC,EAAM,CAACL,EAAI,oBAAoBK,CAAK,CAAE,CAAC,EAAQC,GAAUP,GAAO,CAACH,EAAK,KACjaI,EAAI,eAAeD,CAAK,EAAEK,GAAgB,CAAE,EAAQA,GAAgB,IAAI,CAACP,GAAU,QAAQU,GAAUA,EAASX,CAAI,CAAC,CAAE,EAAeY,GAAUD,IAAWV,GAAU,IAAIU,CAAQ,EAAQ,IAAIV,GAAU,OAAOU,CAAQ,GAAiBE,GAAQ,IAAIb,EAC3Oc,GAAuB,CAAC,kBAAkB,iBAAiB,gBAAgB,EAAEA,GAAuB,QAAQX,GAAO,CAACG,EAAW,GAAG,GAAGH,EAAM,IAAID,GAAUC,CAAK,CAAC,CAAE,CAAC,EACxK,IAAMY,GAAuB,CAAC,QAAQ,EAAEA,GAAuB,QAAQZ,GAAO,CAACG,EAAW,GAAG,GAAGH,EAAM,IAAIO,GAAUP,CAAK,CAAC,CAAE,CAAC,EAC7H,SAASa,IAAS,CAAC,GAAK,CAAChB,EAAKiB,CAAO,EAAEC,GAASL,GAAQ,CAAC,EAAE,UAAU,IAAI,CAA4C,IAAMM,EAAYP,GAA5CQ,GAASH,EAAQG,CAAO,CAAwC,EAAE,MAAM,IAAI,CAACD,EAAY,CAAE,CAAE,EAAE,CAAC,CAAC,EAASnB,CAAK,CAAC,SAASM,GAAY,CAAC,GAAGe,GAAQA,EAAO,QAAY,OAAOA,EAAO,QAAoBA,IAAQ,QAAQ,IAAI,4FAA4F,EAAE,MAAM,uFAAuFA,EAAO,SAAS,QAAQ,+DAAwD,EAC/jB,CAGe,SAASC,KAAOC,EAAM,CAACC,EAAW,GAAG,MAAM,+BAA+B,GAAGD,CAAK,CAAE,CAAC,SAASE,GAAcC,EAAIC,EAAO,GAAGC,EAAI,CAAC,EAAE,CAAC,QAAQC,KAAOH,EAAI,CAAC,IAAII,EAASH,EAAO,GAAGA,CAAM,IAAIE,CAAG,GAAGA,EAAO,MAAM,QAAQH,EAAIG,CAAG,CAAC,EAAGH,EAAIG,CAAG,EAAE,QAAQ,CAACE,EAAKC,IAAQ,CAACP,GAAcM,EAAK,GAAGD,CAAQ,IAAIE,CAAK,IAAIJ,CAAG,CAAE,CAAC,EAAW,OAAOF,EAAIG,CAAG,GAAI,UAAUH,EAAIG,CAAG,IAAI,KAAMJ,GAAcC,EAAIG,CAAG,EAAEC,EAASF,CAAG,EAAQA,EAAIE,CAAQ,EAAEJ,EAAIG,CAAG,CAAG,CAAC,OAAOD,CAAI,CC9B5I,IAAMK,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,oBAAoB,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,UAAUH,GAAgCG,EAAM,UAAU,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,OAAO,SAASE,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASM,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiBtB,GAAuBJ,EAAMxB,CAAQ,EAAO,CAAC,sBAAAmD,EAAsB,MAAAC,EAAK,EAAEC,EAAyBZ,CAAW,EAAQa,EAAoBH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAoBL,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG3B,GAA4CsB,EAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKoD,EAAK,CAAC,KAAK3B,EAAU,aAAa,GAAK,SAAsB4B,EAAMnD,EAAO,EAAE,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAU,GAAGuB,EAAGvE,GAAkB,GAAGiE,GAAsB,gBAAgBzB,EAAUM,EAAU,CAAC,iBAAiB,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,EAAoB,IAAIvB,GAA6B0B,GAAK,MAAM,CAAC,GAAGtB,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,oBAAoB,aAAa0D,EAAmB,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKuD,GAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzC,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,uCAAuC,QAAQ,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,UAAU,mCAAmC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,gFAAgF,0SAA0S,oLAAoL,0KAA0K,0WAA0W,EASv1MC,EAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,EAAQF,EAAgBA,EAAgB,YAAY,yBAAyBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,mBAAmB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTzH,IAAMM,GAAwBC,GAASC,CAAkB,EAAQC,GAA0BC,GAAiBC,EAAO,GAAG,EAAQC,GAAwBF,GAAiBC,EAAO,CAAC,EAAQE,GAA4BC,GAAqBH,EAAO,CAAC,EAAQI,GAAsBC,GAAeL,EAAO,CAAC,EAAQM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,oBAAoBA,CAAC,GAASE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS7B,EAAO,OAAa8B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,gBAAAC,EAAgB,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUJ,GAAiBI,EAAM,WAAW,oBAAoB,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,GAAGC,CAAS,EAAEjB,GAASK,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,EAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBrB,GAAuBD,EAAM1B,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,EAAyBZ,CAAW,EAAQa,GAAYH,EAAsB,SAASI,IAAO,CAACR,GAAgB,CAAC,UAAU,EAAK,CAAC,CAAE,CAAC,EAAQS,EAAaL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAYN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQnB,IAAc,YAA6CoB,GAAOC,GAAU,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBhD,EAAKiD,EAAY,CAAC,GAAG9B,GAAUyB,GAAgB,SAAsB5C,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKT,GAAW,CAAC,MAAML,GAAY,SAAsBgE,EAAM9E,EAAO,IAAI,CAAC,GAAGiD,EAAU,GAAGI,GAAgB,UAAU0B,EAAGxE,GAAkB,GAAGmE,GAAsB,iBAAiB5B,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAAK0B,GAAK,MAAM,CAAC,GAAGtB,CAAK,EAAE,GAAGpC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,iBAAiB,GAAK,MAAMsD,EAAW,CAAC,EAAEb,EAAYI,CAAc,EAAE,SAAS,CAAcwB,EAAM9E,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAMM,EAAa,GAAGxD,EAAqB,CAAC,UAAU,CAAC,MAAMyD,EAAW,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAS,CAAc1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,kBAAkB5C,GAAmB,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,GAAGN,EAAqB,CAAC,UAAU,CAAC,kBAAkBS,EAAkB,CAAC,EAAEgC,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,EAAU,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,kBAAkB5C,GAAmB,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBa,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,EAAU,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,kBAAkB5C,GAAmB,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,GAAGN,EAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,EAAU,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qCAAqC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAACU,EAAY,GAAgBzC,EAAKoD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BrD,EAAKsD,EAA0B,CAAC,GAAGzE,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,UAAUoF,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,OAAO,QAAQ,YAAY,MAAM,OAAO,GAAGxE,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAc,CAAC,CAAC,CAAC,EAAE/B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAY,GAAgBzC,EAAK9B,GAA0B,CAAC,UAAU,iBAAiB,iBAAiB6D,EAAiB,SAAS,YAAY,SAAsB/B,EAAKoD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BvD,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,UAAUsF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAG1E,EAAqB,CAAC,UAAU,CAAC,UAAU0E,EAAe,CAAC,CAAC,CAAC,EAAEjC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAY,GAAgBzC,EAAKoD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BxD,EAAKsD,EAA0B,CAAC,GAAGzE,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,UAAUuF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAG3E,EAAqB,CAAC,UAAU,CAAC,UAAU2E,EAAe,CAAC,CAAC,CAAC,EAAElC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAY,GAAgBzC,EAAKoD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BzD,EAAKsD,EAA0B,CAAC,GAAGzE,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,UAAUwF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAG5E,EAAqB,CAAC,UAAU,CAAC,UAAU4E,EAAe,CAAC,CAAC,CAAC,EAAEnC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAY,GAAgBzC,EAAKoD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B1D,EAAKsD,EAA0B,CAAC,GAAGzE,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,UAAUyF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAG7E,EAAqB,CAAC,UAAU,CAAC,UAAU6E,EAAe,CAAC,CAAC,CAAC,EAAEpC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAY,GAAgBzC,EAAKoD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6B3D,EAAKsD,EAA0B,CAAC,GAAGzE,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,UAAU0F,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAG9E,EAAqB,CAAC,UAAU,CAAC,UAAU8E,EAAe,CAAC,CAAC,CAAC,EAAErC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAY,GAAgBS,EAAM9E,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,sBAAsB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAc/B,EAAK4D,EAAK,CAAC,KAAK,iEAAiE,aAAa,GAAM,SAAsB5D,EAAK3B,GAAwB,CAAC,UAAU,8BAA8B,iBAAiB0D,EAAiB,SAAS,YAAY,SAAsB/B,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,SAAS,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4D,EAAK,CAAC,KAAK,mEAAmE,aAAa,GAAM,SAAsB5D,EAAK1B,GAA4B,CAAC,UAAU,+BAA+B,iBAAiByD,EAAiB,SAAS,YAAY,SAAsB/B,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,GAAG,CAAC,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4D,EAAK,CAAC,KAAK,kBAAkB,aAAa,GAAM,SAAsB5D,EAAKxB,GAAsB,CAAC,UAAU,+BAA+B,iBAAiBuD,EAAiB,SAAS,YAAY,SAAsB/B,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,GAAG,CAAC,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKoD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6B7D,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAGzE,EAAqB,CAAC,UAAU,CAAC,GAAGkE,GAAmB,GAAG,GAAG,GAAG,GAAG,IAAI,GAAG,GAAG,CAAC,EAAEzB,EAAYI,CAAc,EAAE,SAAsB1B,EAAK5B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2D,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK/B,EAAmB,CAAC,UAAU4F,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGhF,EAAqB,CAAC,UAAU,CAAC,UAAUgF,EAAe,CAAC,CAAC,CAAC,EAAEvC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoC,GAAI,CAAC,kFAAkF,gFAAgF,0QAA0Q,0RAA0R,kTAAkT,8KAA8K,+SAA+S,iTAAiT,yeAAye,wRAAwR,qSAAqS,yQAAyQ,kSAAkS,2WAA2W,+oEAA+oE,qEAAqE,sGAAsG,6EAA6E,wFAAwF,kEAAkE,qLAAqL,qTAAqT,+bAA+b,EAS1nqBC,EAAgBC,EAAQrD,GAAUmD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,iBAAiBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,qBAAqB,MAAM,mBAAmB,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGhG,EAAuB,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["asLogoutButton", "Component", "props", "p", "showForAuthenticated", "showForAnonymous", "showForSinglePlan_rmkyMD9g", "validPlanUid", "user", "useUser", "error", "log", "user", "listeners", "fetchUser", "event", "log", "userObject", "getOutseta", "flattenObject", "notifyListeners", "error", "clearUser", "listener", "subscribe", "getUser", "outsetaFetchUserEvents", "outsetaClearUserEvents", "useUser", "setUser", "ye", "unsubscribe", "newData", "window", "log", "props", "getOutseta", "flattenObject", "obj", "parent", "res", "key", "propName", "item", "index", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cD0MtVvRB", "r6pb1sy1A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter13g19kg", "args", "onMouseLeave1gynqi7", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerBXlcRLwfl", "withCSS", "BXlcRLwfl_default", "addPropertyControls", "ControlType", "addFonts", "HamburgerMenuLinksFonts", "getFonts", "BXlcRLwfl_default", "MotionDivShowForAnonymous", "showForAnonymous", "motion", "MotionAShowForAnonymous", "MotionAShowForAuthenticated", "showForAuthenticated", "MotionAAsLogoutButton", "asLogoutButton", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "hamburgerColour", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ztV1_1SPm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap4zbyd6", "args", "onTap1ehnce0", "onTapdddxej", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "Link", "resolvedLinks6", "css", "FramerRr67N7zI9", "withCSS", "Rr67N7zI9_default", "addPropertyControls", "ControlType", "addFonts"]
}
