{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/smu5EVUYoHvicydS1jnz/MnSs4PZxPbUTiPHWOEfE/DotLottieFramer.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{DotLottieReact as BaseDotLottiePlayer}from\"https://unpkg.com/@lottiefiles/dotlottie-react@0.11.0/dist/index.js\";import{getDotLottieVersion}from\"https://cdn.jsdelivr.net/npm/@dotlottie/dotlottie-js@0.9.0-beta.13/+esm\";const getDotLottieVersionFromUrl=async url=>{const response=await fetch(url);const arrayBuffer=await response.arrayBuffer();const uint8Array=new Uint8Array(arrayBuffer);return getDotLottieVersion(uint8Array);};function DotLottiePlayerV1(props){const[componentLoaded,setComponentLoaded]=useState(false);const[animationLoaded,setAnimationLoaded]=useState(false);const lottieInstanceRef=useRef(null);const lastVariant=useRef();useEffect(()=>{if(typeof window!==\"undefined\"){import(\"https://unpkg.com/@dotlottie/player-component@2.7.12/dist/dotlottie-player.js\").then(()=>setComponentLoaded(true));}},[]);useEffect(()=>{const player=lottieInstanceRef.current;if(!player)return;player.addEventListener(\"ready\",()=>setAnimationLoaded(true));return()=>{player.removeEventListener(\"ready\",()=>setAnimationLoaded(true));};},[componentLoaded]);useEffect(()=>{const player=lottieInstanceRef.current;if(!player||!animationLoaded)return;player.seek(`${!props.progressToggle?Math.round(props.progress):\"50\"}%`);},[animationLoaded,props.progress,props.progressToggle]);useEffect(()=>{if(props.isCanvas)return;const player=lottieInstanceRef.current;if(!player||lastVariant.current===props.autoplay)return;const handleComplete=()=>{if(props.loop){player.seek(\"0%\");player.play();}};player.addEventListener(\"complete\",handleComplete);if(props.autoplay){player.play();}else{player.pause();}lastVariant.current=props.autoplay;return()=>{player.removeEventListener(\"complete\",handleComplete);};},[props.autoplay,props.isCanvas]);return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",...props.style},children:componentLoaded&&/*#__PURE__*/_jsx(\"dotlottie-player\",{src:props.srcTypeToggle?props.srcUrl:props.srcFile,ref:lottieInstanceRef,autoplay:!props.isCanvas&&props.autoplay?true:null,loop:props.loop?true:null,hover:props.hover?true:null,controls:props.controls?true:null,background:props.background||null,speed:props.speed,direction:props.playMode===\"reverse\"?-1:1},props.srcTypeToggle?props.srcUrl:props.srcFile)});}function DotLottiePlayerV2(props){const[dotLottie,setDotLottie]=useState(null);const[animationLoaded,setAnimationLoaded]=useState(false);const[themes,setThemes]=useState([]);const[framerTheme,setFramerTheme]=useState(null);const containerRef=useRef(null);const lastDimensions=useRef({width:0,height:0});useEffect(()=>{if(typeof document!==\"undefined\"){setFramerTheme(document.body.dataset.framerTheme);}},[]);const applyProgressFrame=propertyValue=>{if(dotLottie){const totalFrames=dotLottie.totalFrames;const frame=propertyValue/100*totalFrames;dotLottie.setFrame(frame);}};useEffect(()=>{if(!dotLottie||!animationLoaded)return;applyProgressFrame(!props.progressToggle?props.progress:\"50\");},[props.progress,props.progressToggle,dotLottie,animationLoaded]);useEffect(()=>{function onLoad(){var _dotLottie_manifest;setAnimationLoaded(true);var _dotLottie_manifest_themes;setThemes((_dotLottie_manifest_themes=dotLottie===null||dotLottie===void 0?void 0:(_dotLottie_manifest=dotLottie.manifest)===null||_dotLottie_manifest===void 0?void 0:_dotLottie_manifest.themes)!==null&&_dotLottie_manifest_themes!==void 0?_dotLottie_manifest_themes:[]);applyProgressFrame(props.progress);setTimeout(()=>dotLottie===null||dotLottie===void 0?void 0:dotLottie.resize(),1e3);}dotLottie===null||dotLottie===void 0?void 0:dotLottie.addEventListener(\"load\",onLoad);dotLottie===null||dotLottie===void 0?void 0:dotLottie.addEventListener(\"loadError\",console.error);return()=>{dotLottie===null||dotLottie===void 0?void 0:dotLottie.removeEventListener(\"load\",onLoad);dotLottie===null||dotLottie===void 0?void 0:dotLottie.removeEventListener(\"loadError\",console.error);};},[dotLottie,props.progress]);const lastVariant=useRef();useEffect(()=>{if(props.isCanvas)return;if(lastVariant.current!==props.autoplay){if(!dotLottie||!animationLoaded)return;props.autoplay?dotLottie.play():dotLottie.pause();}lastVariant.current=props.autoplay;},[props.autoplay,dotLottie,animationLoaded]);useEffect(()=>{if(!dotLottie||!(themes===null||themes===void 0?void 0:themes.length)||!animationLoaded)return;const themeToUse=framerTheme===\"light\"?props.lightTheme:props.darkTheme;const selectedTheme=themeToUse||(!props.lightTheme&&!props.darkTheme?props.defaultTheme:\"\");const themeExists=themes.some(theme=>theme.id===selectedTheme);dotLottie.setTheme(themeExists?selectedTheme:\"\");},[props.defaultTheme,props.lightTheme,props.darkTheme,dotLottie,animationLoaded,themes,framerTheme]);useEffect(()=>{const resizeObserver=new ResizeObserver(entries=>{for(let entry of entries){const{width,height}=entry.contentRect;// Check if the size change is significant to avoid infinite loops\nif(Math.abs(lastDimensions.current.width-width)>5||Math.abs(lastDimensions.current.height-height)>5){lastDimensions.current={width,height};dotLottie===null||dotLottie===void 0?void 0:dotLottie.resize();}}});if(containerRef.current){resizeObserver.observe(containerRef.current);}return()=>{if(containerRef.current){resizeObserver.unobserve(containerRef.current);}};},[dotLottie]);useEffect(()=>{if(typeof window===\"undefined\")return;const getSystemTheme=()=>window.matchMedia(\"(prefers-color-scheme: dark)\").matches?\"dark\":\"light\";const getInitialTheme=()=>{if(props.isCanvas){var _document_body_dataset,_document_body;return((_document_body=document.body)===null||_document_body===void 0?void 0:(_document_body_dataset=_document_body.dataset)===null||_document_body_dataset===void 0?void 0:_document_body_dataset.framerTheme)||\"light\";}return getSystemTheme();};setFramerTheme(getInitialTheme());// Watch for system theme changes\nconst systemThemeMedia=window.matchMedia(\"(prefers-color-scheme: dark)\");const handleSystemThemeChange=e=>{if(!props.isCanvas){setFramerTheme(e.matches?\"dark\":\"light\");}};// Watch for Framer theme changes\nconst framerThemeObserver=new MutationObserver(mutations=>{mutations.forEach(mutation=>{if(mutation.type===\"attributes\"&&mutation.attributeName===\"data-framer-theme\"){var _document_body_dataset,_document_body;const framerTheme=(_document_body=document.body)===null||_document_body===void 0?void 0:(_document_body_dataset=_document_body.dataset)===null||_document_body_dataset===void 0?void 0:_document_body_dataset.framerTheme;setFramerTheme(framerTheme||getSystemTheme());}});});systemThemeMedia.addEventListener(\"change\",handleSystemThemeChange);if(document.body){framerThemeObserver.observe(document.body,{attributes:true,attributeFilter:[\"data-framer-theme\"]});}return()=>{systemThemeMedia.removeEventListener(\"change\",handleSystemThemeChange);framerThemeObserver.disconnect();};},[]);return /*#__PURE__*/_jsx(\"div\",{ref:containerRef,style:{width:\"100%\",height:\"100%\",...props.style},children:/*#__PURE__*/_jsx(BaseDotLottiePlayer,{dotLottieRefCallback:setDotLottie,src:props.srcTypeToggle?props.srcUrl:props.srcFile,autoplay:!props.isCanvas?props.autoplay:false,useFrameInterpolation:props.useFrameInterpolation,mode:props.playMode,loop:props.loop,playOnHover:props.hover,speed:props.speed,backgroundColor:props.background?props.background.toString():\"\",renderConfig:{devicePixelRatio:props.dprToggle?null:props.devicePixelRatio},autoResizeCanvas:props.autoResizeCanvas,marker:props.marker},props.srcTypeToggle?props.srcUrl:props.srcFile)});}/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/docs/guides/auto-sizing\n *\n * @framerIntrinsicHeight fixed\n * @framerIntrinsicWidth fixed\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerDisableUnlink\n */export default function DotLottiePlayer(props){const[dotLottieVersion,setDotLottieVersion]=useState(null);const dotLottieVersionNumber=dotLottieVersion===null||dotLottieVersion===void 0?void 0:dotLottieVersion.split(\".\")[0];const isCanvas=RenderTarget.current()===RenderTarget.canvas;useEffect(()=>{const src=props.srcTypeToggle?props.srcUrl:props.srcFile;if(src){getDotLottieVersionFromUrl(src).then(setDotLottieVersion);}},[props.srcUrl,props.srcFile,props.srcTypeToggle]);const commonProps={...props,isCanvas};return /*#__PURE__*/_jsxs(_Fragment,{children:[typeof window===\"object\"&&dotLottieVersionNumber===\"1\"&&/*#__PURE__*/_jsx(DotLottiePlayerV1,{...commonProps}),typeof window===\"object\"&&dotLottieVersionNumber===\"2\"&&/*#__PURE__*/_jsx(DotLottiePlayerV2,{...commonProps})]});}DotLottiePlayer.defaultProps={srcTypeToggle:true,srcUrl:\"https://lottie.host/279b8a8c-25d8-4456-80db-e61cd7d076dd/0IHTQL6lv5.lottie\",autoplay:true,background:\"#ffffff\",useFrameInterpolation:false,playMode:\"forward\",hover:false,loop:true,speed:1,progress:0,devicePixelRatio:1,progressToggle:false};addPropertyControls(DotLottiePlayer,{srcTypeToggle:{type:ControlType.Boolean,title:\"Source Type\",enabledTitle:\"URL\",disabledTitle:\"File\"},srcUrl:{type:ControlType.String,title:\"URL\",hidden(props){return props.srcTypeToggle===false;}},srcFile:{type:ControlType.File,allowedFileTypes:[\"lottie\",\"json\"],title:\"Source\",hidden(props){return props.srcTypeToggle===true;}},autoplay:{type:ControlType.Boolean,title:\"Autoplay\",defaultValue:true},availableThemes:{type:ControlType.String,title:\"Themes\",defaultValue:\"\",hidden(){return true;}},defaultTheme:{type:ControlType.String,title:\"Theme\",defaultValue:\"\"},lightTheme:{type:ControlType.String,title:\"Light Theme\",defaultValue:\"\"},darkTheme:{type:ControlType.String,title:\"Dark Theme\",defaultValue:\"\"},background:{type:ControlType.Color,title:\"Background\",defaultValue:\"\"},playMode:{type:ControlType.Enum,title:\"Play Mode\",defaultValue:\"Forward\",displaySegmentedControl:false,options:[\"forward\",\"reverse\",\"bounce\",\"reverse-bounce\"],optionTitles:[\"Forward\",\"Reverse\",\"Bounce\",\"Reverse Bounce\"]},hover:{type:ControlType.Boolean,title:\"Play on Hover\"},loop:{type:ControlType.Boolean,title:\"Loop\"},useFrameInterpolation:{type:ControlType.Boolean,title:\"Frame Interpolation\",defaultValue:false},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:1,min:.5,max:10,unit:\"x\",step:.5,displayStepper:true},marker:{type:ControlType.String,title:\"Marker\",defaultValue:\"\"},dprToggle:{type:ControlType.Boolean,title:\"Device Pixel Ratio\",enabledTitle:\"Auto\",disabledTitle:\"Custom\",defaultValue:true},devicePixelRatio:{type:ControlType.Number,title:\"Device Pixel Ratio\",defaultValue:1,min:.5,max:5,unit:\"\",step:.5,displayStepper:true,hidden(props){return props.dprToggle===true;}},progressToggle:{type:ControlType.Boolean,title:\"Progress\",enabledTitle:\"Auto\",disabledTitle:\"Custom\",defaultValue:false},progress:{type:ControlType.Number,title:\"Progress\",defaultValue:50,min:0,max:99,unit:\"%\",step:.5,displayStepper:false,hidden(props){return props.progressToggle===true;}},autoResizeCanvas:{type:ControlType.Boolean,title:\"AutoResizeCanvas\",defaultValue:false},pageUrl:{type:ControlType.String,title:\"Page URL\",defaultValue:\"\",hidden(){return true;}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DotLottiePlayer\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DotLottieFramer.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "getDotLottieVersionFromUrl", "url", "arrayBuffer", "uint8Array", "$t", "DotLottiePlayerV1", "props", "componentLoaded", "setComponentLoaded", "ye", "animationLoaded", "setAnimationLoaded", "lottieInstanceRef", "pe", "lastVariant", "ue", "player", "handleComplete", "p", "DotLottiePlayerV2", "dotLottie", "setDotLottie", "themes", "setThemes", "framerTheme", "setFramerTheme", "containerRef", "lastDimensions", "applyProgressFrame", "propertyValue", "totalFrames", "frame", "onLoad", "_dotLottie_manifest", "_dotLottie_manifest_themes", "selectedTheme", "themeExists", "theme", "resizeObserver", "entries", "entry", "width", "height", "getSystemTheme", "_document_body_dataset", "_document_body", "systemThemeMedia", "handleSystemThemeChange", "e", "framerThemeObserver", "mutations", "mutation", "DotLottieReact", "DotLottiePlayer", "dotLottieVersion", "setDotLottieVersion", "dotLottieVersionNumber", "isCanvas", "RenderTarget", "src", "commonProps", "u", "l", "addPropertyControls", "ControlType"]
}
