{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/1MMKuFtFWZOMnq8dkMIO/B9lGKhFlxqvCbtfHwC8L/Pattern.js", "ssg:https://framerusercontent.com/modules/x4scZ09QL7SZFszRfrvK/LkuF3bPTDSw4TegUEzeg/gpzLBsg1h.js", "ssg:https://framerusercontent.com/modules/coUdgCOfuknSPrK3DAiz/76D5XeWmYOGhxg3hdN0l/X58MA8psS.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,Color}from\"framer\";import{motion}from\"framer-motion\";const loadPassword=str=>{try{const prefix=\"FramerOverrides Pattern >\";if(!str.includes(prefix)){return null;}const preprocessedStr=str.replace(prefix,\"\");const parsed=JSON.parse(preprocessedStr);return parsed;}catch(err){return null;}};const formatPatternString=(str,primary,secondary,tertiary,scale,angle)=>{const primaryNoHash=primary.replace(\"#\",\"\");const secondaryNoHash=secondary.replace(\"#\",\"\");const tertiaryNoHash=tertiary.replace(\"#\",\"\");const nineDownScale=scale/9;const quarterScale=scale/4;const halfScale=scale/2;const twoScale=scale*2;const twoPointFourScale=scale*2.4;const twoPointEightScale=scale*2.8;const threeScale=scale*3;const threePointTwoScale=scale*3.2;const threePointFourScale=scale*3.4;const fourScale=scale*4;const fiveScale=scale*5;const fivePointSixScale=scale*5.6;const sixScale=scale*6;const sevenScale=scale*7;const eightScale=scale*8;const nineScale=scale*9;const tenScale=scale*10;const fourteenScale=scale*14;return str.replace(/\\{primary\\}/g,primary).replace(/\\{primaryNoHash\\}/g,primaryNoHash).replace(/\\{secondary\\}/g,secondary).replace(/\\{secondaryNoHash\\}/g,secondaryNoHash).replace(/\\{tertiary\\}/g,tertiary).replace(/\\{tertiaryNoHash\\}/g,tertiaryNoHash).replace(/\\{nineDownScale\\}/g,nineDownScale.toString()).replace(/\\{quarterScale\\}/g,quarterScale.toString()).replace(/\\{halfScale\\}/g,halfScale.toString()).replace(/\\{scale\\}/g,scale.toString()).replace(/\\{twoScale\\}/g,twoScale.toString()).replace(/\\{twoPointFourScale\\}/g,twoPointFourScale.toString()).replace(/\\{twoPointEightScale\\}/g,twoPointEightScale.toString()).replace(/\\{threeScale\\}/g,threeScale.toString()).replace(/\\{threePointTwoScale\\}/g,threePointTwoScale.toString()).replace(/\\{threePointFourScale\\}/g,threePointFourScale.toString()).replace(/\\{fourScale\\}/g,fourScale.toString()).replace(/\\{fiveScale\\}/g,fiveScale.toString()).replace(/\\{fivePointSixScale\\}/g,fivePointSixScale.toString()).replace(/\\{sixScale\\}/g,sixScale.toString()).replace(/\\{sevenScale\\}/g,sevenScale.toString()).replace(/\\{eightScale\\}/g,eightScale.toString()).replace(/\\{nineScale\\}/g,nineScale.toString()).replace(/\\{tenScale\\}/g,tenScale.toString()).replace(/\\{fourteenScale\\}/g,fourteenScale.toString()).replace(/\\{angle\\}/g,angle.toString());};const cleanColorString=s=>{if(s.startsWith(\"var(--\")){console.log(s);// var(--token-580cb08b-d3fb-479e-bdd5-30cc5f9acae8, rgb(186, 143, 229)) /* {\"name\":\"Dark Purple\"} */\n// => rgb(186, 143, 229)\nconst startIndex=s.indexOf(\"(\",4);const endIndex=s.indexOf(\")\");const colorString=\"rgb(\"+s.substring(startIndex+1,endIndex)+\")\";console.log(\"FINAL RESULT: \"+colorString);console.log();console.log();return colorString;}return s;};/**\n * PATTERN\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Pattern(props){const{patternType,primary,secondary,tertiary,radius,scale,opacity,angle,shouldAnimate,direction,diagonal,duration,password}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:14,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,lineHeight:1.5,textAlign:\"center\"};let pattern;let filter;let backgroundPosAnimation;const cleanPrimary=cleanColorString(primary);const cleanSecondary=cleanColorString(secondary);const cleanTertiary=cleanColorString(tertiary);const primaryColor=Color(cleanPrimary);const primaryOpacity=primaryColor.roundA;const primaryOpacityHex=(\"00\"+parseInt((primaryOpacity*255).toFixed(0)).toString(16)).slice(-2);const primaryOpacityHexFinal=primaryOpacity===1?\"\":primaryOpacityHex.length===1?primaryOpacityHex+primaryOpacityHex:primaryOpacityHex;const secondaryColor=Color(cleanSecondary);const secondaryOpacity=secondaryColor.roundA;const secondaryOpacityHex=(\"00\"+parseInt((secondaryOpacity*255).toFixed(0)).toString(16)).slice(-2);const secondaryOpacityHexFinal=secondaryOpacity===1?\"\":secondaryOpacityHex.length===1?secondaryOpacityHex+secondaryOpacityHex:secondaryOpacityHex;const tertiaryColor=Color(cleanTertiary);const tertiaryOpacity=tertiaryColor.roundA;const tertiaryOpacityHex=(\"00\"+parseInt((tertiaryOpacity*255).toFixed(0)).toString(16)).slice(-2);const tertiaryOpacityHexFinal=tertiaryOpacity===1?\"\":tertiaryOpacityHex.length===1?tertiaryOpacityHex+tertiaryOpacityHex:tertiaryOpacityHex;const primaryHex=Color.toHexString(primaryColor)+primaryOpacityHexFinal;const secondaryHex=Color.toHexString(secondaryColor)+secondaryOpacityHexFinal;const tertiaryHex=Color.toHexString(tertiaryColor)+tertiaryOpacityHexFinal;const frontWithoutHex=primaryHex.replace(\"#\",\"\");const backWithoutHex=secondaryHex.replace(\"#\",\"\");const tertiaryWithoutHex=tertiaryHex.replace(\"#\",\"\");const factor=direction===\"left\"||direction===\"top\"?-1:1;const xScale=direction===\"left\"||direction===\"right\"?factor*scale:0;const yScale=direction===\"top\"||direction===\"bottom\"?factor*scale:0;const parsedPattern=loadPassword(password);if(parsedPattern===null){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Please provide a pattern snippet\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Visit FramerOverrides.com/generator/pattern\"})]});}const id=parsedPattern.id;const displayName=parsedPattern.displayName;const patternBackground=parsedPattern.backgroundCss?formatPatternString(parsedPattern.backgroundCss,primaryHex,secondaryHex,tertiaryHex,scale,angle):undefined;const patternBackgroundImage=parsedPattern.backgroundImageCss?formatPatternString(parsedPattern.backgroundImageCss,primaryHex,secondaryHex,tertiaryHex,scale,angle):undefined;const addBackground=parsedPattern.addBackground?formatPatternString(parsedPattern.addBackground,primaryHex,secondaryHex,tertiaryHex,scale,angle):\"transparent\";const size=parsedPattern.size?formatPatternString(parsedPattern.size,primaryHex,secondaryHex,tertiaryHex,scale,angle):`${scale*10}px ${scale*2}px`;const position=parsedPattern.position?formatPatternString(parsedPattern.position,primaryHex,secondaryHex,tertiaryHex,scale,angle):\"0 0\";var _blendMode;const blendMode=(_blendMode=parsedPattern.blendMode)!==null&&_blendMode!==void 0?_blendMode:\"normal\";var _repeat;const repeat=(_repeat=parsedPattern.repeat)!==null&&_repeat!==void 0?_repeat:\"repeat\";const backgroundConfig=patternBackground?{}:{backgroundColor:addBackground,backgroundImage:patternBackgroundImage,backgroundPosition:position,backgroundSize:size,backgroundRepeat:repeat,backgroundBlendMode:blendMode};return /*#__PURE__*/ _jsx(motion.div,{style:{position:\"relative\",width:\"100%\",height:\"100%\",overflow:\"hidden\",borderRadius:radius,filter:filter,opacity:opacity/100,background:patternBackground,...backgroundConfig},animate:shouldAnimate&&{backgroundPosition:backgroundPosAnimation},transition:{type:\"tween\",ease:\"linear\",duration:duration,repeat:Infinity,repeatType:\"loop\"},children:patternBackground&&patternBackground.includes(\"<svg\")?/*#__PURE__*/ _jsx(_Fragment,{children:[0].map((_,i)=>{const a=patternBackground.indexOf(\"<svg\");const b=patternBackground.indexOf(\"</svg>\")+6;const svg=patternBackground.substring(a,b);return /*#__PURE__*/ _jsx(\"object\",{style:{position:\"absolute\",width:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"100%\":\"calc(50vw + 50vh)\",height:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"100%\":\"calc(50vw + 50vh)\",top:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"0\":\"50%\",left:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"0\":\"50%\",opacity:opacity/100,transform:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"none\":`translate(-50%, -50%) rotate(${angle}deg)`},type:\"image/svg+xml\",data:`data:image/svg+xml,\n                                                        ${svg}\n                                                    `,children:\"SVG not supported\"});})}):/*#__PURE__*/ _jsx(\"div\",{style:{position:\"absolute\",width:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"100%\":\"calc(100vw + 100vh)\",height:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"100%\":\"calc(100vw + 100vh)\",top:patternBackground&&patternBackground.includes(\"patternTransform='\")?0:\"50%\",left:patternBackground&&patternBackground.includes(\"patternTransform='\")?0:\"50%\",borderRadius:patternBackground&&patternBackground.includes(\"patternTransform='\")?0:\"50%\",transformOrigin:\"center\",transform:patternBackground&&patternBackground.includes(\"patternTransform='\")?\"none\":`translate(-50%, -50%) rotate(${angle}deg)`,background:patternBackground,...backgroundConfig}})});};Pattern.displayName=\"Pattern\";addPropertyControls(Pattern,{password:{type:ControlType.String,title:\"Snippet\",placeholder:\"Enter Snippet\"},primary:{type:ControlType.Color,title:\"Primary\",defaultValue:\"#6D29FF\",hidden(props){return props.password.includes(\"{primary\")===false;}},secondary:{type:ControlType.Color,title:\"Secondary\",defaultValue:\"#EBE5FF\",hidden(props){return props.password.includes(\"{secondary\")===false;}},tertiary:{type:ControlType.Color,title:\"Tertiary\",defaultValue:\"#DF26CF\",hidden(props){return props.password.includes(\"{tertiary\")===false;}},scale:{type:ControlType.Number,min:1,max:100,step:1,defaultValue:8},angle:{type:ControlType.Number,title:\"Angle\",min:0,max:360,step:5,defaultValue:0},radius:{type:ControlType.Number,min:0,max:100,step:1,defaultValue:0},opacity:{type:ControlType.Number,min:10,max:100,step:10,defaultValue:100}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Pattern\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pattern.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Pattern from\"https://framerusercontent.com/modules/1MMKuFtFWZOMnq8dkMIO/B9lGKhFlxqvCbtfHwC8L/Pattern.js\";const PatternFonts=getFonts(Pattern);const cycleOrder=[\"fTKLG3QKU\"];const serializationHash=\"framer-5vWDZ\";const variantClassNames={fTKLG3QKU:\"framer-v-1th98pn\"};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={damping:60,delay:0,mass:1,stiffness:500,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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fTKLG3QKU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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(motion.div,{...restProps,\"aria-label\":\"pattern-background\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-1th98pn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fTKLG3QKU\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"grid-pattern\",fit:\"fill\",intrinsicHeight:1013,intrinsicWidth:3e3,pixelHeight:1013,pixelWidth:3e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/HCeVqu9JXKC8UWYAYVU5q8Qymkk.png\",srcSet:\"https://framerusercontent.com/images/HCeVqu9JXKC8UWYAYVU5q8Qymkk.png?scale-down-to=512 512w,https://framerusercontent.com/images/HCeVqu9JXKC8UWYAYVU5q8Qymkk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HCeVqu9JXKC8UWYAYVU5q8Qymkk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HCeVqu9JXKC8UWYAYVU5q8Qymkk.png 3000w\"},className:\"framer-zhrhqq\",\"data-framer-name\":\"grid_pattern\",layoutDependency:layoutDependency,layoutId:\"XoYcuscXO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-88yzkf-container\",layoutDependency:layoutDependency,layoutId:\"CwiFRHHJB-container\",children:/*#__PURE__*/_jsx(Pattern,{angle:0,height:\"100%\",id:\"CwiFRHHJB\",layoutId:\"CwiFRHHJB\",opacity:30,password:\"FramerOverrides Pattern >{\\\"id\\\":\\\"Plaid Pattern 1\\\",\\\"displayName\\\":\\\"Plaid Pattern 1\\\",\\\"backgroundCss\\\":\\\"\\\\nurl(\\\\\\\"data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='30' height='30' patternTransform='scale({nineDownScale}) rotate({angle})'><rect x='0' y='0' width='100%' height='100%' fill='%23{tertiaryNoHash}'/><path d='M18.35 0l-.03 1.67L20 0zm3.3 0l-3.33 3.33.03 1.67 3.33-3.33zm.03 3.33l-3.36 3.34v1.66L21.65 5zm0 3.34L18.35 10l-.03 1.68 3.36-3.35zM21.65 10l-3.33 3.32.03 1.68 3.33-3.32zm.03 3.32l-3.36 3.36v1.64L21.65 15zm-3.36 5L15 21.65l1.68.03L18.35 20l-.03 1.68 1.68-.03-1.68 1.68.03 1.67 3.33-3.32-.03-1.68 1.68-1.68h-1.65v-1.64L20 18.35zm3.36 3.36h1.65l3.34-3.36-1.67.03zM3.33 18.32l-1.68.03L0 20v1.65zm3.34 0L5 18.35l-3.33 3.33h1.66zm1.66 0L5 21.65l1.67.03L10 18.35zm3.35 0l-3.35 3.36 1.67-.03 3.32-3.33zm5 0l-1.68.03-3.32 3.33h1.64zm11.65 0L25 21.65l1.67.03L30 18.35zM30 20l-1.67 1.68 1.67-.03zm-8.32 3.33l-3.36 3.34v1.66L21.65 25zm0 3.34L18.35 30H20l1.68-1.67z'  stroke-width='1' stroke='none' fill='%23{secondaryNoHash}'/><path d='M10 30v-1.65L8.35 30zm-3.35 0L10 26.65V25l-5 5zM10 15L0 25v1.65l10-10zm0 3.35l-10 10V30l10-10zM3.35 30L10 23.35v-1.7L1.65 30zM5 10l-5 5v1.65L6.65 10zm-3.35 0L0 11.65v1.7L3.35 10zM10 10H8.35L0 18.35V20zm0 1.65l-10 10v1.7l10-10zM10 0v10H0V0h10v1.65L11.65 0M20 6.65L16.65 10h1.7L20 8.35 28.35 0h-1.7zM23.35 0L20 3.35 13.35 10H15l5-5 5-5zM30 0L20 10h1.65L30 1.65zm-1.65 10L30 8.35v-1.7L26.65 10zM25 10l5-5V3.35L23.35 10zM16.65 0L10 6.65v1.7L18.35 0zM20 1.65L21.65 0H20L10 10h1.65zM15 0h-1.65L10 3.35V5z'  stroke-width='1' stroke='none' fill='%23{primaryNoHash}'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>\\\\\\\")\\\\n\\\",\\\"addBackground\\\":\\\"{secondary}\\\"}\",primary:\"var(--token-112738b6-6239-4a3c-be02-e46f3fb20683, rgb(104, 106, 114))\",radius:0,scale:25,secondary:\"var(--token-e170d871-edab-4ae0-9d96-7f86059b7d20, rgb(0, 0, 0))\",style:{height:\"100%\",width:\"100%\"},tertiary:\"var(--token-e02c5fab-1558-4a4e-b17e-e153373c8154, rgb(59, 59, 59))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l4po4l\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"QBWvx8yV7\",style:{background:'radial-gradient(50% 50% at 50% 50%, hsla(0, 0%, 0%, 0) 0%, var(--token-e170d871-edab-4ae0-9d96-7f86059b7d20, rgb(12, 12, 13)) /* {\"name\":\"Black\"} */ 100%)'}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5vWDZ.framer-vrlae8, .framer-5vWDZ .framer-vrlae8 { display: block; }\",\".framer-5vWDZ.framer-1th98pn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1500px; }\",\".framer-5vWDZ .framer-zhrhqq { aspect-ratio: 3.0211480362537766 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 497px); overflow: visible; position: relative; width: 100%; }\",\".framer-5vWDZ .framer-88yzkf-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-5vWDZ .framer-l4po4l { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5vWDZ.framer-1th98pn { gap: 0px; } .framer-5vWDZ.framer-1th98pn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5vWDZ.framer-1th98pn > :first-child { margin-left: 0px; } .framer-5vWDZ.framer-1th98pn > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 496.5\n * @framerIntrinsicWidth 1500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergpzLBsg1h=withCSS(Component,css,\"framer-5vWDZ\");export default FramergpzLBsg1h;FramergpzLBsg1h.displayName=\"Hero Pattern\";FramergpzLBsg1h.defaultProps={height:496.5,width:1500};addFonts(FramergpzLBsg1h,[{explicitInter:true,fonts:[]},...PatternFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergpzLBsg1h\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1500\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"496.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gpzLBsg1h.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/r5hcv80O3hnHqbtJeVpc/B2gpWEM8WkPWR7FgqtcB/ptdBhE7Xh.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/nf85Bpy6J96V8B4FUDvK/wMc3TSnyUb1LokiWhwgr/qscnsAAWy.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/fh9xCG7fD9cqT84cidPQ/z7AvCkYRuwAczjfeyUiW/t9PWyvJ3n.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zFLpgpAjllNO7qUCF1KS/5qu68IhDfOeQPA2gW9Jk/xlmCzQoMI.js\";import GBtnIcon from\"https://framerusercontent.com/modules/wWynvCybIuTVU15ty0Ot/TzCJIDRLMPvWGtBU6K5r/JcyWoXwbO.js\";const GBtnIconFonts=getFonts(GBtnIcon);const cycleOrder=[\"SLBgB74cx\",\"fHAR6OxPW\"];const serializationHash=\"framer-TEN5Z\";const variantClassNames={fHAR6OxPW:\"framer-v-1yq6onl\",SLBgB74cx:\"framer-v-1ippolw\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={Mobile:\"fHAR6OxPW\",Web:\"SLBgB74cx\"};const getProps=({descriptionAuthor,height,id,image,linkedin,showLinkedin,showTwitter,title,twitter,width,...props})=>{return{...props,eWzVQMnLS:linkedin??props.eWzVQMnLS,gcs3pIxSY:twitter??props.gcs3pIxSY,H0Dre8B2F:image??props.H0Dre8B2F??{src:\"https://framerusercontent.com/images/KKYEd4cRRZgmlvb3gIV2Uik55Ls.webp\",srcSet:\"https://framerusercontent.com/images/KKYEd4cRRZgmlvb3gIV2Uik55Ls.webp?scale-down-to=512 512w,https://framerusercontent.com/images/KKYEd4cRRZgmlvb3gIV2Uik55Ls.webp 1024w\"},h68VPHhBx:descriptionAuthor??props.h68VPHhBx??\"Malware Maverick | Uncovering threats | Innovator by nature, protector by mission.\",iufXBCs1K:showTwitter??props.iufXBCs1K??true,OkIeGYJTw:showLinkedin??props.OkIeGYJTw??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"SLBgB74cx\",Z93R5SSGb:title??props.Z93R5SSGb??\"Priyadharshini Balaji\"};};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,Z93R5SSGb,h68VPHhBx,eWzVQMnLS,gcs3pIxSY,H0Dre8B2F,iufXBCs1K,OkIeGYJTw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SLBgB74cx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();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(scopingClassNames,\"framer-1ippolw\",className,classNames),\"data-framer-name\":\"Web\",layoutDependency:layoutDependency,layoutId:\"SLBgB74cx\",ref:ref??ref1,style:{...style},...addPropertyOverrides({fHAR6OxPW:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-esuscc\",\"data-framer-name\":\"avatar\",layoutDependency:layoutDependency,layoutId:\"K2zU0Fuw9\",style:{borderBottomLeftRadius:999999,borderBottomRightRadius:999999,borderTopLeftRadius:999999,borderTopRightRadius:999999},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:2048,pixelWidth:2048,sizes:\"80px\",...toResponsiveImage(H0Dre8B2F)},className:\"framer-nl6st8\",\"data-framer-name\":\"avatar-img\",layoutDependency:layoutDependency,layoutId:\"UwQ6nUPmo\",style:{borderBottomLeftRadius:99999,borderBottomRightRadius:99999,borderTopLeftRadius:99999,borderTopRightRadius:99999},...addPropertyOverrides({fHAR6OxPW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:2048,pixelWidth:2048,sizes:\"80px\",src:\"https://framerusercontent.com/images/x9MO3gOeQ6WOKUEzU4qRbpcrjHs.png\",srcSet:\"https://framerusercontent.com/images/x9MO3gOeQ6WOKUEzU4qRbpcrjHs.png?scale-down-to=512 512w,https://framerusercontent.com/images/x9MO3gOeQ6WOKUEzU4qRbpcrjHs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x9MO3gOeQ6WOKUEzU4qRbpcrjHs.png 2048w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zkj36j\",\"data-framer-name\":\"title\",layoutDependency:layoutDependency,layoutId:\"rRuIfAAIm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-d3l5ba\",\"data-styles-preset\":\"xlmCzQoMI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Priyadharshini KB\"})}),className:\"framer-1m4dbx5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fj7Xb07ZZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Z93R5SSGb,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fHAR6OxPW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17ogwu9\",\"data-styles-preset\":\"ptdBhE7Xh\",style:{\"--framer-text-alignment\":\"center\"},children:\"Priyadharshini KB\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ttbt0i\",\"data-framer-name\":\"description\",layoutDependency:layoutDependency,layoutId:\"fcRVNgXCu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-4o8a5b\",\"data-styles-preset\":\"t9PWyvJ3n\",style:{\"--framer-text-alignment\":\"center\"},children:\"With 10 years of experience, I simplify online safety in the Indian context. Stay updated on the latest cyber threats and practical tips in my articles.\"})}),className:\"framer-muro0g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NR4GtZyrq\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:h68VPHhBx,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fHAR6OxPW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16lhupd\",\"data-styles-preset\":\"qscnsAAWy\",style:{\"--framer-text-alignment\":\"center\"},children:\"With 10 years of experience, I simplify online safety in the Indian context. Stay updated on the latest cyber threats and practical tips in my articles.\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svglwm\",\"data-framer-name\":\"socialicons\",layoutDependency:layoutDependency,layoutId:\"nes4n3Dc9\",children:[OkIeGYJTw&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+356+0,...addPropertyOverrides({fHAR6OxPW:{y:(componentViewport?.y||0)+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wvkx4d-container\",layoutDependency:layoutDependency,layoutId:\"An2pCkW1q-container\",children:/*#__PURE__*/_jsx(GBtnIcon,{G2pmeHdEh:\"rgba(0, 114, 177, 0.1)\",GLv4n96Rx:\"fill\",height:\"100%\",id:\"An2pCkW1q\",layoutId:\"An2pCkW1q\",LthCzruPe:eWzVQMnLS,RojLkznxu:\"var(--token-17757ec0-2bb8-4b23-ab14-adf1a93af4b5, rgb(162, 162, 168))\",tUfOgtrXI:\"rgb(0, 114, 177)\",TXX0feZRv:\"rgba(255, 255, 255, 0)\",width:\"100%\",ZhYq_apqq:\"LinkedinLogo\"})})}),iufXBCs1K&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+356+0,...addPropertyOverrides({fHAR6OxPW:{y:(componentViewport?.y||0)+0+318+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t8fc3z-container\",layoutDependency:layoutDependency,layoutId:\"Oiz6CGnYm-container\",children:/*#__PURE__*/_jsx(GBtnIcon,{G2pmeHdEh:\"rgba(0, 172, 238, 0.1)\",GLv4n96Rx:\"fill\",height:\"100%\",id:\"Oiz6CGnYm\",layoutId:\"Oiz6CGnYm\",LthCzruPe:gcs3pIxSY,RojLkznxu:\"var(--token-17757ec0-2bb8-4b23-ab14-adf1a93af4b5, rgb(162, 162, 168))\",tUfOgtrXI:\"rgb(0, 172, 238)\",TXX0feZRv:\"rgba(255, 255, 255, 0)\",width:\"100%\",ZhYq_apqq:\"TwitterLogo\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TEN5Z.framer-1si1zdq, .framer-TEN5Z .framer-1si1zdq { display: block; }\",\".framer-TEN5Z.framer-1ippolw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 760px; }\",\".framer-TEN5Z .framer-esuscc { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 80px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80px; }\",\".framer-TEN5Z .framer-nl6st8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 80px; }\",\".framer-TEN5Z .framer-zkj36j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TEN5Z .framer-1m4dbx5 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TEN5Z .framer-ttbt0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TEN5Z .framer-muro0g { cursor: pointer; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TEN5Z .framer-1svglwm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-TEN5Z .framer-1wvkx4d-container, .framer-TEN5Z .framer-1t8fc3z-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TEN5Z.framer-1ippolw, .framer-TEN5Z .framer-esuscc, .framer-TEN5Z .framer-zkj36j, .framer-TEN5Z .framer-ttbt0i, .framer-TEN5Z .framer-1svglwm { gap: 0px; } .framer-TEN5Z.framer-1ippolw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-TEN5Z.framer-1ippolw > :first-child, .framer-TEN5Z .framer-zkj36j > :first-child, .framer-TEN5Z .framer-ttbt0i > :first-child { margin-top: 0px; } .framer-TEN5Z.framer-1ippolw > :last-child, .framer-TEN5Z .framer-zkj36j > :last-child, .framer-TEN5Z .framer-ttbt0i > :last-child { margin-bottom: 0px; } .framer-TEN5Z .framer-esuscc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TEN5Z .framer-esuscc > :first-child, .framer-TEN5Z .framer-1svglwm > :first-child { margin-left: 0px; } .framer-TEN5Z .framer-esuscc > :last-child, .framer-TEN5Z .framer-1svglwm > :last-child { margin-right: 0px; } .framer-TEN5Z .framer-zkj36j > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-TEN5Z .framer-ttbt0i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-TEN5Z .framer-1svglwm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 272\n * @framerIntrinsicWidth 760\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fHAR6OxPW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Z93R5SSGb\":\"title\",\"h68VPHhBx\":\"descriptionAuthor\",\"eWzVQMnLS\":\"linkedin\",\"gcs3pIxSY\":\"twitter\",\"H0Dre8B2F\":\"image\",\"iufXBCs1K\":\"showTwitter\",\"OkIeGYJTw\":\"showLinkedin\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerX58MA8psS=withCSS(Component,css,\"framer-TEN5Z\");export default FramerX58MA8psS;FramerX58MA8psS.displayName=\"blog-card-author-large\";FramerX58MA8psS.defaultProps={height:272,width:760};addPropertyControls(FramerX58MA8psS,{variant:{options:[\"SLBgB74cx\",\"fHAR6OxPW\"],optionTitles:[\"Web\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},Z93R5SSGb:{defaultValue:\"Priyadharshini Balaji\",displayTextArea:false,title:\"Title\",type:ControlType.String},h68VPHhBx:{defaultValue:\"Malware Maverick | Uncovering threats | Innovator by nature, protector by mission.\",displayTextArea:false,title:\"Description Author\",type:ControlType.String},eWzVQMnLS:{title:\"Linkedin\",type:ControlType.Link},gcs3pIxSY:{title:\"Twitter\",type:ControlType.Link},H0Dre8B2F:{__defaultAssetReference:\"data:framer/asset-reference,KKYEd4cRRZgmlvb3gIV2Uik55Ls.webp?originalFilename=img.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},iufXBCs1K:{defaultValue:true,title:\"Show Twitter\",type:ControlType.Boolean},OkIeGYJTw:{defaultValue:true,title:\"Show Linkedin\",type:ControlType.Boolean}});addFonts(FramerX58MA8psS,[{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\"}]},...GBtnIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX58MA8psS\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"272\",\"framerVariables\":\"{\\\"Z93R5SSGb\\\":\\\"title\\\",\\\"h68VPHhBx\\\":\\\"descriptionAuthor\\\",\\\"eWzVQMnLS\\\":\\\"linkedin\\\",\\\"gcs3pIxSY\\\":\\\"twitter\\\",\\\"H0Dre8B2F\\\":\\\"image\\\",\\\"iufXBCs1K\\\":\\\"showTwitter\\\",\\\"OkIeGYJTw\\\":\\\"showLinkedin\\\"}\",\"framerIntrinsicWidth\":\"760\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fHAR6OxPW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./X58MA8psS.map"],
  "mappings": "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",
  "names": ["loadPassword", "str", "prefix", "preprocessedStr", "formatPatternString", "primary", "secondary", "tertiary", "scale", "angle", "primaryNoHash", "secondaryNoHash", "tertiaryNoHash", "nineDownScale", "quarterScale", "halfScale", "twoScale", "twoPointFourScale", "twoPointEightScale", "threeScale", "threePointTwoScale", "threePointFourScale", "fourScale", "fiveScale", "fivePointSixScale", "sixScale", "sevenScale", "eightScale", "nineScale", "tenScale", "fourteenScale", "cleanColorString", "s", "startIndex", "endIndex", "colorString", "Pattern", "props", "patternType", "radius", "opacity", "shouldAnimate", "direction", "diagonal", "duration", "password", "isCanvas", "RenderTarget", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "pattern", "filter", "backgroundPosAnimation", "cleanPrimary", "cleanSecondary", "cleanTertiary", "primaryColor", "Color", "primaryOpacity", "primaryOpacityHex", "primaryOpacityHexFinal", "secondaryColor", "secondaryOpacity", "secondaryOpacityHex", "secondaryOpacityHexFinal", "tertiaryColor", "tertiaryOpacity", "tertiaryOpacityHex", "tertiaryOpacityHexFinal", "primaryHex", "secondaryHex", "tertiaryHex", "frontWithoutHex", "backWithoutHex", "tertiaryWithoutHex", "factor", "xScale", "yScale", "parsedPattern", "u", "p", "id", "displayName", "patternBackground", "patternBackgroundImage", "addBackground", "size", "position", "_blendMode", "blendMode", "_repeat", "repeat", "backgroundConfig", "motion", "l", "_", "i", "a", "b", "svg", "addPropertyControls", "ControlType", "PatternFonts", "getFonts", "Pattern", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "ComponentViewportProvider", "Pattern", "css", "FramergpzLBsg1h", "withCSS", "gpzLBsg1h_default", "addFonts", "PatternFonts", "GBtnIconFonts", "getFonts", "JcyWoXwbO_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "descriptionAuthor", "height", "id", "image", "linkedin", "showLinkedin", "showTwitter", "title", "twitter", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Z93R5SSGb", "h68VPHhBx", "eWzVQMnLS", "gcs3pIxSY", "H0Dre8B2F", "iufXBCs1K", "OkIeGYJTw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentViewportProvider", "css", "FramerX58MA8psS", "withCSS", "X58MA8psS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
