{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/w8AU3cPEi7T2uJcmFLkK/iqvuCw7H24eAJfthHGHB/Pdfviewer.js", "ssg:https://framerusercontent.com/modules/MMF9PDGk5xcCF8Z78aqk/uOsZpZT8ezJ6x9yb4AAo/IHquPVEEH.js"],
  "sourcesContent": ["// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{motion,AnimatePresence}from\"framer-motion\";import{useEffect,useRef,useState}from\"react\";import{getDocument,GlobalWorkerOptions,getPdfFilenameFromUrl}from\"https://cdn.jsdelivr.net/npm/pdfjs-dist@4.5.136/legacy/build/pdf.min.mjs\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */GlobalWorkerOptions.workerSrc=\"https://cdn.jsdelivr.net/npm/pdfjs-dist@4.5.136/legacy/build/pdf.worker.mjs\"||\"\";export default function Pdfviewer(props){var _buttonStyles_border,_buttonStyles_border1,_buttonStyles_border2,_buttonStyles_border3,_buttonStyles_border4,_buttonStyles_border5,_buttonStyles_pdfIcon,_buttonStyles_pdfIcon1,_buttonStyles_pdfIcon2;const{fileChoose,file,fileURL,pageNumber,scale,buttonText,buttonStyles,modalStyles,customFileName}=props;const[modalOpen,setModalOpen]=useState(false);const canvasRef=useRef(null);const[loadingScreen,setLoadingScreen]=useState(false);const[totalPages,setTotalPages]=useState(null);const[pageRendering,setPageRendering]=useState(false);const[pageNumPending,setpageNumPending]=useState(null);const[pageNum,setpageNum]=useState(pageNumber);const[pageScale,setPageScale]=useState(scale);const[downloadURL,setdownloadURL]=useState(null);const selectedFile=fileChoose===\"Upload\"?file:fileURL;const renderPage=pdf=>{const canvas=canvasRef.current;if(canvas){const context=canvas.getContext(\"2d\");if(pageRendering){// Check if other page is rendering\nsetpageNumPending(pageNum)// Cache waited page number until previous page rendering completed\n;}else{setPageRendering(true);// Using promise to fetch the page\npdf===null||pdf===void 0?void 0:pdf.getPage(pageNum).then(page=>{let viewport=page.getViewport({scale:pageScale});canvas.width=viewport.width;canvas.height=viewport.height;// Render PDF page into canvas context\nlet renderContext={canvasContext:context,viewport:viewport};// Wait for rendering to finish\npage.render(renderContext).promise.then(()=>{setPageRendering(false);if(pageNumPending!==null){// New page rendering is pending\nrenderPage(pdf);setpageNumPending(null);}});});}}};const downloadData=async pdf=>{var _window,_pdf__transport__networkStream_source,_pdf__transport__networkStream,_pdf__transport;const data=await (pdf===null||pdf===void 0?void 0:pdf.getData());const blobUrl=(_window=window)===null||_window===void 0?void 0:_window.URL.createObjectURL(new Blob([data],{type:\"application/pdf\"}));const fileURL=await (pdf===null||pdf===void 0?void 0:(_pdf__transport=pdf._transport)===null||_pdf__transport===void 0?void 0:(_pdf__transport__networkStream=_pdf__transport._networkStream)===null||_pdf__transport__networkStream===void 0?void 0:(_pdf__transport__networkStream_source=_pdf__transport__networkStream.source)===null||_pdf__transport__networkStream_source===void 0?void 0:_pdf__transport__networkStream_source.url);const pdfFileName=getPdfFilenameFromUrl(fileURL);setdownloadURL({blob:blobUrl,fileName:pdfFileName});};const download=(e,url)=>{e.stopPropagation();const a=document.createElement(\"a\");if(!a.click){throw new Error('DownloadManager: \"a.click()\" is not supported.');}a.href=url.blob+\"#pdfjs.action=download\";a.target=\"_parent\";// Use a.download if available. This increases the likelihood that\n// the file is downloaded instead of opened by another PDF plugin.\nif(\"download\"in a){a.download=customFileName||url.fileName;}(document.body||document.documentElement).append(a);a.click();a.remove();};/**\n     * If another page rendering in progress, waits until the rendering is\n     * finised. Otherwise, executes rendering immediately.\n     *//**\n     * Displays previous page.\n     */const onPrevPage=e=>{e.stopPropagation();if(pageNum<=1){setpageNum(totalPages);return;}if(!pageRendering){setpageNum(pageNum-1);}};/**\n     * Displays next page.\n     */const onNextPage=e=>{e.stopPropagation();if(pageNum>=totalPages){setpageNum(1);return;}if(!pageRendering){setpageNum(pageNum+1);}};const pdfZoomIn=e=>{e.stopPropagation();if(pageScale>3){return;}if(!pageRendering){setPageScale(pageScale+.1);}};const pdfZoomOut=e=>{e.stopPropagation();if(pageScale<=scale){return;}if(!pageRendering){setPageScale(pageScale-.1);}};useEffect(()=>{const body=document.getElementsByTagName(\"body\")[0];if(selectedFile!==undefined&&modalOpen){//hide body scrollbar\nbody.style.overflow=\"hidden\";body.style.height=\"100%\";const loadingTask=getDocument({url:selectedFile});setLoadingScreen(true);loadingTask===null||loadingTask===void 0?void 0:loadingTask.promise.then(pdf=>{// you can now use *pdf* here\nrenderPage(pdf);setTotalPages(pdf.numPages);pdf.currentScaleValue=pageScale//zoom in/out\n;downloadData(pdf)// load blob data\n;},error=>{console.error(error);});//get progress data\nloadingTask.onProgress=data=>{if(data.loaded){setLoadingScreen(false);}else{setLoadingScreen(true);}};}else{if(pageScale>scale){setPageScale(scale);}body.style.overflow=\"auto\";body.style.height=\"auto\";}},[fileChoose,file,fileURL,selectedFile,pageNum,modalOpen,pageScale,setLoadingScreen]);const close=()=>setModalOpen(false);const open=()=>setModalOpen(true);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.button,{whileTap:{scale:.9},onClick:()=>modalOpen?close():open(),style:{...buttonStyles.fontStyle,padding:buttonStyles.padding,backgroundColor:buttonStyles.background,borderRadius:buttonStyles.borderRadius,borderStyle:(_buttonStyles_border=buttonStyles.border)===null||_buttonStyles_border===void 0?void 0:_buttonStyles_border.borderStyle,borderColor:(_buttonStyles_border1=buttonStyles.border)===null||_buttonStyles_border1===void 0?void 0:_buttonStyles_border1.borderColor,borderTopWidth:(_buttonStyles_border2=buttonStyles.border)===null||_buttonStyles_border2===void 0?void 0:_buttonStyles_border2.borderTopWidth,borderLeftWidth:(_buttonStyles_border3=buttonStyles.border)===null||_buttonStyles_border3===void 0?void 0:_buttonStyles_border3.borderLeftWidth,borderBottomWidth:(_buttonStyles_border4=buttonStyles.border)===null||_buttonStyles_border4===void 0?void 0:_buttonStyles_border4.borderBottomWidth,borderRightWidth:(_buttonStyles_border5=buttonStyles.border)===null||_buttonStyles_border5===void 0?void 0:_buttonStyles_border5.borderRightWidth,textDecoration:buttonStyles.textDecoration,color:buttonStyles.color,boxShadow:buttonStyles.shadow,cursor:\"pointer\",display:\"flex\",alignItems:\"center\",gap:\"5px\",overflow:\"hidden\"},\"aria-label\":\"Button\",children:[buttonStyles.buttonIcon&&/*#__PURE__*/_jsx(motion.div,{style:{width:((_buttonStyles_pdfIcon=buttonStyles.pdfIcon)===null||_buttonStyles_pdfIcon===void 0?void 0:_buttonStyles_pdfIcon.size)+\"px\",height:((_buttonStyles_pdfIcon1=buttonStyles.pdfIcon)===null||_buttonStyles_pdfIcon1===void 0?void 0:_buttonStyles_pdfIcon1.size)+\"px\",color:(_buttonStyles_pdfIcon2=buttonStyles.pdfIcon)===null||_buttonStyles_pdfIcon2===void 0?void 0:_buttonStyles_pdfIcon2.color,display:\"flex\",overflow:\"hidden\"},dangerouslySetInnerHTML:{__html:buttonStyles.pdfIcon.icon}}),buttonText]}),/*#__PURE__*/_jsx(AnimatePresence,{// Disable any initial animations on children that\n// are present when the component is first rendered\ninitial:false,// Only render one component at a time.\n// The exiting component will finish its exit\n// animation before entering component is rendered\nmode:\"wait\",// Fires when all exiting nodes have completed animating out\nonExitComplete:()=>null,children:modalOpen&&selectedFile!==undefined&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",position:\"fixed\",inset:0,zIndex:11},children:/*#__PURE__*/_jsxs(motion.div,{onClick:close,initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\",backgroundColor:modalStyles.backgroundColor,display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:[/*#__PURE__*/_jsx(motion.div,{onClick:e=>e.stopPropagation(),initial:{opacity:0},animate:{opacity:1,transition:{duration:1,type:\"spring\",damping:25,stiffness:500}},exit:{opacity:0},style:{width:\"auto\",height:\"88vh\",margin:\"auto\",display:\"flex\",flexDirection:\"column\",alignItems:\"start\",overflow:\"overlay\",zIndex:1},children:/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef})}),loadingScreen&&/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",left:0,right:0,top:0,bottom:0,height:\"100%\",width:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                                            .lds-dual-ring,\n                                            .lds-dual-ring:after {\n                                                box-sizing: border-box;\n                                            }\n                                            .lds-dual-ring {\n                                                display: inline-block;\n                                                width: 30px;\n                                                height: 30px;\n                                                color:#fff;\n                                            }\n                                            .lds-dual-ring:after {\n                                                content: \" \";\n                                                display: block;\n                                                width: 30px;\n                                                height: 30px;\n                                                margin: 8px;\n                                                border-radius: 50%;\n                                                border: 3px solid currentColor;\n                                                border-color: currentColor transparent currentColor transparent;\n                                                animation: lds-dual-ring 1.2s linear infinite;\n                                            }\n                                            @keyframes lds-dual-ring {\n                                                0% {\n                                                    transform: rotate(0deg);\n                                                }\n                                                100% {\n                                                    transform: rotate(360deg);\n                                                }\n                                            }\n                                            `}),/*#__PURE__*/_jsx(motion.div,{className:\"lds-dual-ring\"})]}),/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",top:\"10px\",left:\"10px\",right:\"10px\",display:\"flex\",justifyContent:\"space-between\",alignItems:\"start\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{...modalStyles.pageCounter.fontStyle,padding:modalStyles.pageCounter.padding,backgroundColor:modalStyles.pageCounter.backgroundColor,borderRadius:modalStyles.pageCounter.borderRadius,color:modalStyles.pageCounter.color,zIndex:2},children:[pageNum,\"/\",totalPages]}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gap:\"10px\",zIndex:2},children:[/*#__PURE__*/_jsx(\"div\",{onClick:close,children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Close Button\",style:{padding:modalStyles.closebtn.padding,backgroundColor:modalStyles.closebtn.backgroundColor,borderRadius:modalStyles.closebtn.borderRadius,width:modalStyles.closebtn.size+\"px\",height:modalStyles.closebtn.size+\"px\",display:\"flex\",color:modalStyles.closebtn.color,cursor:\"pointer\"},dangerouslySetInnerHTML:{__html:modalStyles.closebtn.closeIcon}})}),/*#__PURE__*/_jsx(\"div\",{onClick:pdfZoomOut,children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Zoom-out Button\",style:{padding:modalStyles.zoomControls.padding,backgroundColor:modalStyles.zoomControls.backgroundColor,borderRadius:modalStyles.zoomControls.borderRadius,width:modalStyles.zoomControls.size+\"px\",height:modalStyles.zoomControls.size+\"px\",color:modalStyles.zoomControls.color,cursor:\"pointer\",display:\"flex\"},dangerouslySetInnerHTML:{__html:modalStyles.zoomControls.zoomOutIcon}})}),/*#__PURE__*/_jsx(\"div\",{onClick:pdfZoomIn,children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Zoom-in Button\",style:{padding:modalStyles.zoomControls.padding,backgroundColor:modalStyles.zoomControls.backgroundColor,borderRadius:modalStyles.zoomControls.borderRadius,width:modalStyles.zoomControls.size+\"px\",height:modalStyles.zoomControls.size+\"px\",color:modalStyles.zoomControls.color,cursor:\"pointer\",display:\"flex\"},dangerouslySetInnerHTML:{__html:modalStyles.zoomControls.zoomInIcon}})}),/*#__PURE__*/_jsx(\"div\",{onClick:e=>download(e,downloadURL),children:/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Download Button\",style:{padding:modalStyles.downloadbtn.padding,backgroundColor:modalStyles.downloadbtn.backgroundColor,borderRadius:modalStyles.downloadbtn.borderRadius,width:modalStyles.downloadbtn.size+\"px\",height:modalStyles.downloadbtn.size+\"px\",color:modalStyles.downloadbtn.color,cursor:\"pointer\",display:\"flex\"},dangerouslySetInnerHTML:{__html:modalStyles.downloadbtn.downloadIcon}})})]})]}),/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",inset:\"10px\",display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Previous Button\",onClick:onPrevPage,style:{width:modalStyles.arrows.size+\"px\",height:modalStyles.arrows.size+\"px\",display:\"flex\",color:modalStyles.arrows.color,cursor:\"pointer\",padding:modalStyles.arrows.padding,backgroundColor:modalStyles.arrows.backgroundColor,borderRadius:modalStyles.arrows.borderRadius,zIndex:2},dangerouslySetInnerHTML:{__html:modalStyles.arrows.leftIcon}}),/*#__PURE__*/_jsx(\"div\",{role:\"button\",\"aria-label\":\"Next Button\",onClick:onNextPage,style:{width:modalStyles.arrows.size+\"px\",height:modalStyles.arrows.size+\"px\",display:\"flex\",color:modalStyles.arrows.color,cursor:\"pointer\",padding:modalStyles.arrows.padding,backgroundColor:modalStyles.arrows.backgroundColor,borderRadius:modalStyles.arrows.borderRadius,zIndex:2},dangerouslySetInnerHTML:{__html:modalStyles.arrows.rightIcon}})]})]})})})]});}Pdfviewer.displayName=\"PDF Viewer\";addPropertyControls(Pdfviewer,{fileChoose:{type:ControlType.Enum,title:\"Choose\",options:[\"Upload\",\"URL\"],defaultValue:\"Upload\",displaySegmentedControl:true},file:{title:\"File\",type:ControlType.File,allowedFileTypes:[\"pdf\"],hidden:props=>props.fileChoose!==\"Upload\"},fileURL:{type:ControlType.String,title:\"URL\",defaultValue:\"\",hidden:props=>props.fileChoose!==\"URL\"},pageNumber:{title:\"Inital Page\",type:ControlType.Number,displayStepper:true,min:1,defaultValue:1},scale:{type:ControlType.Number,title:\"Scale\",max:3,min:.8,step:.1,displayStepper:true,defaultValue:1.2},buttonText:{title:\"Button Text\",type:ControlType.String,defaultValue:\"View PDF\"},buttonStyles:{type:ControlType.Object,title:\"Button Styles\",controls:{color:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},background:{type:ControlType.Color,title:\"Button color\",defaultValue:\"#ffffff\"},fontStyle:{title:\"Font Style\",type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\"},border:{type:ControlType.Border,title:\"Border\",defaultValue:{borderBottomWidth:0,borderColor:\"black\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0}},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"25px\"},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"10px 20px 10px 20px\"},shadow:{type:ControlType.BoxShadow,title:\"Shadow\",defaultValue:\"0px 0px 0px 0px rgba(0, 0, 0, 0)\"},textDecoration:{type:ControlType.Enum,title:\"Text Decoration\",options:[\"none\",\"underline\",\"overline\",\"line-through\"],optionTitles:[\"None\",\"Underline\",\"Overline\",\"Line Through\"],defaultValue:\"none\"},buttonIcon:{type:ControlType.Boolean,title:\"Button Icon\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},pdfIcon:{type:ControlType.Object,title:\"Icon Styles\",controls:{icon:{type:ControlType.String,title:\"Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\"><rect width=\"256\" height=\"256\" fill=\"none\"/><polyline points=\"216 152 184 152 184 208\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><line x1=\"208\" y1=\"184\" x2=\"184\" y2=\"184\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,192H64a20,20,0,0,0,0-40H48v56\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M112,152v56h16a28,28,0,0,0,0-56Z\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,112V40a8,8,0,0,1,8-8h96l56,56v24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><polyline points=\"152 32 152 88 208 88\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/></svg>`},size:{type:ControlType.Number,title:\"Size\",defaultValue:24},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"red\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}},hidden(props){return props.buttonIcon===false;}}}},modalStyles:{type:ControlType.Object,title:\"Viewer Styles\",controls:{pageCounter:{type:ControlType.Object,title:\"Counter Styles\",controls:{fontStyle:{title:\"Font Style\",type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\"},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"}}},arrows:{type:ControlType.Object,title:\"Nav Styles\",controls:{leftIcon:{type:ControlType.String,title:\"Left Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z\"></path></svg>`},rightIcon:{type:ControlType.String,title:\"Right Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},zoomControls:{type:ControlType.Object,title:\"Zoom Styles\",controls:{zoomOutIcon:{type:ControlType.String,title:\"Zoom-Out Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H80a8,8,0,0,1,0-16h64A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>`},zoomInIcon:{type:ControlType.String,title:\"Zoom-In Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},closebtn:{type:ControlType.Object,title:\"Close Styles\",controls:{closeIcon:{type:ControlType.String,title:\"Close Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},downloadbtn:{type:ControlType.Object,title:\"Download Styles\",controls:{downloadIcon:{type:ControlType.String,title:\"Download Icon\",defaultValue:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M224,152v56a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V152a8,8,0,0,1,16,0v56H208V152a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,132.69V40a8,8,0,0,0-16,0v92.69L93.66,106.34a8,8,0,0,0-11.32,11.32Z\"></path></svg>`},size:{type:ControlType.Number,title:\"Icon Size\",defaultValue:40},padding:{type:ControlType.Padding,title:\"Padding\",defaultValue:\"5px 10px 5px 10px\"},borderRadius:{type:ControlType.BorderRadius,title:\"Border Radius\",defaultValue:\"5px\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.3)\"},color:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#ffffff\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill/stroke' property to 'currentColor', then only icon color property will be overide\"}}},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"rgba(0,0,0,0.7)\"}}},customFileName:{title:\"Download Name\",type:ControlType.String,defaultValue:\"Download\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Pdfviewer\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Pdfviewer.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import PDFViewer from\"https://framerusercontent.com/modules/w8AU3cPEi7T2uJcmFLkK/iqvuCw7H24eAJfthHGHB/Pdfviewer.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/i0f9bZau6/i0f9bZau6.js\";import Menu from\"#framer/local/canvasComponent/rzCKlDgXL/rzCKlDgXL.js\";import Testimonial from\"#framer/local/canvasComponent/YsNyAi6kX/YsNyAi6kX.js\";import Navigation from\"#framer/local/canvasComponent/zJ3F2MORX/zJ3F2MORX.js\";import*as sharedStyle2 from\"#framer/local/css/AUYiiwKH2/AUYiiwKH2.js\";import*as sharedStyle from\"#framer/local/css/GnZgLY0uG/GnZgLY0uG.js\";import*as sharedStyle1 from\"#framer/local/css/TR9_HD4JC/TR9_HD4JC.js\";import metadataProvider from\"#framer/local/webPageMetadata/IHquPVEEH/IHquPVEEH.js\";const PDFViewerFonts=getFonts(PDFViewer);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TestimonialFonts=getFonts(Testimonial);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const NavigationFonts=getFonts(Navigation);const MenuFonts=getFonts(Menu);const ContainerWithFX=withFX(Container);const breakpoints={f15vRWe1K:\"(min-width: 810px) and (max-width: 1199px)\",pzpkTZlAY:\"(max-width: 809px)\",SxdWDtWS0:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-w2EAw\";const variantClassNames={f15vRWe1K:\"framer-v-wretra\",pzpkTZlAY:\"framer-v-88t842\",SxdWDtWS0:\"framer-v-djnvvk\"};const transition1={delay:0,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:80};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50};const transition2={damping:50,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:-50};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"SxdWDtWS0\",Phone:\"pzpkTZlAY\",Tablet:\"f15vRWe1K\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"SxdWDtWS0\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-w2EAw`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-w2EAw`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const uG59W276Fwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const OxwZZe58i1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"f15vRWe1K\",\"pzpkTZlAY\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"SxdWDtWS0\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-djnvvk\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bwc0xo\",\"data-framer-name\":\"Page head\",name:\"Page head\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Chalet fireplace\",fit:\"fill\",intrinsicHeight:533,intrinsicWidth:2160,loading:getLoadingLazyAtYPosition(0),pixelHeight:1536,pixelWidth:2048,sizes:\"100vw\",src:\"https://framerusercontent.com/images/1cFGFDvYfHYfGW5aE3zTpYB3PY.jpeg\",srcSet:\"https://framerusercontent.com/images/1cFGFDvYfHYfGW5aE3zTpYB3PY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/1cFGFDvYfHYfGW5aE3zTpYB3PY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1cFGFDvYfHYfGW5aE3zTpYB3PY.jpeg 2048w\"},className:\"framer-aj8iwo\",\"data-framer-name\":\"Hero Image\",name:\"Hero Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jrlsj4\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pzpkTZlAY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0VsZWN0cm9sdXggU2FucyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Electrolux Sans SemiBold\", \"Electrolux Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"1.6px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Documents\"})}),fonts:[\"CUSTOM;Electrolux Sans SemiBold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ygn2zy\",\"data-styles-preset\":\"GnZgLY0uG\",children:\"Documents\"})}),className:\"framer-10lxbom\",\"data-framer-name\":\"About\",fonts:[\"Inter\"],name:\"About\",verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1g7fhjy\",\"data-framer-appear-id\":\"1g7fhjy\",\"data-framer-name\":\"Body\",initial:animation1,name:\"Body\",optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-142huto\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88obtw\",\"data-framer-name\":\"Terms and Conditions\",name:\"Terms and Conditions\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o3i4e4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pzpkTZlAY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO0VsZWN0cm9sdXggU2FucyBTZW1pQm9sZA==\",\"--framer-font-family\":'\"Electrolux Sans SemiBold\", \"Electrolux Sans SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"Terms and Conditions\"})}),fonts:[\"CUSTOM;Electrolux Sans SemiBold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-9vs49j\",\"data-styles-preset\":\"TR9_HD4JC\",style:{\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"Terms and Conditions\"})}),className:\"framer-vfr2f5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ksqwu-container\",children:/*#__PURE__*/_jsx(PDFViewer,{buttonStyles:{background:\"rgb(255, 255, 255)\",border:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"50px\",buttonIcon:true,color:\"rgb(0, 0, 0)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"8px 32px 8px 32px\",pdfIcon:{color:\"rgb(250, 0, 0)\",icon:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\"><rect width=\"256\" height=\"256\" fill=\"none\"/><polyline points=\"216 152 184 152 184 208\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><line x1=\"208\" y1=\"184\" x2=\"184\" y2=\"184\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,192H64a20,20,0,0,0,0-40H48v56\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M112,152v56h16a28,28,0,0,0,0-56Z\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,112V40a8,8,0,0,1,8-8h96l56,56v24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><polyline points=\"152 32 152 88 208 88\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/></svg>',size:24},shadow:\"\",textDecoration:\"none\"},buttonText:\"View PDF\",customFileName:\"Download\",file:\"https://framerusercontent.com/assets/qGtrzV7BimPMMtuYg9Gbsd7Vec.pdf\",fileChoose:\"Upload\",fileURL:\"https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf\",height:\"100%\",id:\"ZL4DJeGBf\",layoutId:\"ZL4DJeGBf\",modalStyles:{arrows:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",leftIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z\"></path></svg>',padding:\"5px 10px 5px 10px\",rightIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>',size:40},backgroundColor:\"rgba(0, 0, 0, 0.7)\",closebtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",closeIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>',color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40},downloadbtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",downloadIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M224,152v56a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V152a8,8,0,0,1,16,0v56H208V152a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,132.69V40a8,8,0,0,0-16,0v92.69L93.66,106.34a8,8,0,0,0-11.32,11.32Z\"></path></svg>',padding:\"5px 10px 5px 10px\",size:40},pageCounter:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"5px 10px 5px 10px\"},zoomControls:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40,zoomInIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>',zoomOutIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H80a8,8,0,0,1,0-16h64A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>'}},pageNumber:1,scale:1.2,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8e1x3t\",\"data-framer-name\":\"Privacy Policy\",name:\"Privacy Policy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7hcr3s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-9vs49j\",\"data-styles-preset\":\"TR9_HD4JC\",style:{\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"Privacy Policy\"})}),className:\"framer-1qc7uce\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2grv3r-container\",children:/*#__PURE__*/_jsx(PDFViewer,{buttonStyles:{background:\"rgb(255, 255, 255)\",border:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:1},borderRadius:\"50px\",buttonIcon:true,color:\"rgb(0, 0, 0)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"8px 32px 8px 32px\",pdfIcon:{color:\"rgb(250, 0, 0)\",icon:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\"><rect width=\"256\" height=\"256\" fill=\"none\"/><polyline points=\"216 152 184 152 184 208\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><line x1=\"208\" y1=\"184\" x2=\"184\" y2=\"184\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,192H64a20,20,0,0,0,0-40H48v56\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M112,152v56h16a28,28,0,0,0,0-56Z\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><path d=\"M48,112V40a8,8,0,0,1,8-8h96l56,56v24\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/><polyline points=\"152 32 152 88 208 88\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"/></svg>',size:24},shadow:\"\",textDecoration:\"none\"},buttonText:\"View PDF\",customFileName:\"Download\",file:\"https://framerusercontent.com/assets/JvpTGGeyv5zZpdV70xzA5YMYHjI.pdf\",fileChoose:\"Upload\",fileURL:\"https://raw.githubusercontent.com/mozilla/pdf.js/ba2edeae/web/compressed.tracemonkey-pldi-09.pdf\",height:\"100%\",id:\"Hd73YxZzs\",layoutId:\"Hd73YxZzs\",modalStyles:{arrows:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",leftIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M165.66,202.34a8,8,0,0,1-11.32,11.32l-80-80a8,8,0,0,1,0-11.32l80-80a8,8,0,0,1,11.32,11.32L91.31,128Z\"></path></svg>',padding:\"5px 10px 5px 10px\",rightIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z\"></path></svg>',size:40},backgroundColor:\"rgba(0, 0, 0, 0.7)\",closebtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",closeIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>',color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40},downloadbtn:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",downloadIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M224,152v56a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V152a8,8,0,0,1,16,0v56H208V152a8,8,0,0,1,16,0Zm-101.66,5.66a8,8,0,0,0,11.32,0l40-40a8,8,0,0,0-11.32-11.32L136,132.69V40a8,8,0,0,0-16,0v92.69L93.66,106.34a8,8,0,0,0-11.32,11.32Z\"></path></svg>',padding:\"5px 10px 5px 10px\",size:40},pageCounter:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",fontStyle:{fontFamily:'\"Inter\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:\"5px 10px 5px 10px\"},zoomControls:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:\"5px\",color:\"rgb(255, 255, 255)\",padding:\"5px 10px 5px 10px\",size:40,zoomInIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H120v24a8,8,0,0,1-16,0V120H80a8,8,0,0,1,0-16h24V80a8,8,0,0,1,16,0v24h24A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>',zoomOutIcon:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M152,112a8,8,0,0,1-8,8H80a8,8,0,0,1,0-16h64A8,8,0,0,1,152,112Zm77.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88.11,88.11,0,1,1,11.31-11.31l50.07,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z\"></path></svg>'}},pageNumber:1,scale:1.2,width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2zar5x\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hulhj8\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lsr78e\",\"data-framer-name\":\"Text + Arrows\",name:\"Text + Arrows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zuqsog\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qgpdzc\",\"data-framer-name\":\"Real stories\",name:\"Real stories\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",style:{\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"Guest\"})}),className:\"framer-1mbtihh\",\"data-framer-name\":\"Guest\",fonts:[\"Inter\"],name:\"Guest\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nngwte\",\"data-styles-preset\":\"AUYiiwKH2\",style:{\"--framer-text-color\":\"var(--token-fa13b2c8-a58f-413a-8b92-4cf300d9d4f5, rgb(20, 20, 20))\"},children:\"testimonials\"})}),className:\"framer-1r2row1\",\"data-framer-name\":\"testimonials\",fonts:[\"Inter\"],name:\"testimonials\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cyuq5d\",\"data-framer-name\":\"Quote Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,name:\"Quote Icon\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M32.1667 10.5001C33.8334 12.3334 34.8334 14.3334 34.8334 17.6667C34.8334 23.5001 30.6667 28.6667 24.8334 31.3334L23.3334 29.1667C28.8334 26.1667 30.0001 22.3334 30.3334 19.8334C29.5001 20.3334 28.3334 20.5001 27.1667 20.3334C24.1667 20.0001 21.8334 17.6667 21.8334 14.5001C21.8334 13.0001 22.5001 11.5001 23.5001 10.3334C24.6667 9.16675 26.0001 8.66675 27.6667 8.66675C29.5001 8.66675 31.1667 9.50008 32.1667 10.5001ZM15.5001 10.5001C17.1667 12.3334 18.1667 14.3334 18.1667 17.6667C18.1667 23.5001 14.0001 28.6667 8.16675 31.3334L6.66675 29.1667C12.1667 26.1667 13.3334 22.3334 13.6667 19.8334C12.8334 20.3334 11.6667 20.5001 10.5001 20.3334C7.50008 20.0001 5.16675 17.5001 5.16675 14.5001C5.16675 13.0001 5.83341 11.5001 6.83341 10.3334C8.00008 9.16675 9.33342 8.66675 11.0001 8.66675C12.8334 8.66675 14.5001 9.50008 15.5001 10.5001Z\" fill=\"#141414\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cgq61f\",\"data-framer-name\":\"Quote + Items\",name:\"Quote + Items\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18pbbrj-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"O2Kl6Gmor\",intervalControl:4,itemAmount:1,layoutId:\"O2Kl6Gmor\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9cclr8-container\",\"data-framer-name\":\"Testomonial 1\",name:\"Testomonial 1\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Lily, Bex, Phoebe, Lucas & Daniel were ALL amazing. They all made sure that our week was perfect. The chalet was kept beautifully clean by Bex & Phoebe and they did a fantastic job of looking after us all. We couldn\u2019t have asked for more. Lily\u2019s food was to die for, and the kitchen was spotless. She accommodated all of our quirks\u2026 Lucas & Daniel were great... great job boys!...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Josh - \",/*#__PURE__*/_jsx(\"strong\",{children:\"Chalet Constantia: March 2024\"})]})]}),height:\"100%\",id:\"qtrmqIpt3\",layoutId:\"qtrmqIpt3\",name:\"Testomonial 1\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-86ds0f-container\",\"data-framer-name\":\"Testomonial 2\",name:\"Testomonial 2\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"\\\"Honestly, we loved Chalet Chez Bugi. The house itself and the brilliant team... Ski-In/Ski out is how we roll when we ski the American west, so that was very convenient... The food was excellent and to y'all's high standards as always... I'm still watering at the mouth thinking about some of those dishes and the Mont d'Or fromage with that great red wine...\\\"\"}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Chris & Lilas\",/*#__PURE__*/_jsx(\"strong\",{children:\" - Chez Bugi: Jan 2024\"})]})]}),height:\"100%\",id:\"Bh00dzlFY\",layoutId:\"Bh00dzlFY\",name:\"Testomonial 2\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9eood5-container\",\"data-framer-name\":\"Testomonial 3\",name:\"Testomonial 3\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Thank you for arranging our wonderful holiday at Chalet Coco. It was everything we had hoped for... Alex was superb, he accommodated our requests and dislikes, shared his recipes and fattened us up beautifully!... Erris was lovely, looked after us beautifully and attended to our every need... Ned was fab! He attended to our every need, smiling, chatty, fun... The fire was laid every morning, hot tub ready... All in all a wonderful team, beautiful comfortable chalet and a relaxing, happy holiday.\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Lucinda - \",/*#__PURE__*/_jsx(\"strong\",{children:\"Chalet Coco: March 2024\"})]})]}),height:\"100%\",id:\"qBzgfk31G\",layoutId:\"qBzgfk31G\",name:\"Testomonial 3\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-to61v9-container\",\"data-framer-name\":\"Testomonial 4\",name:\"Testomonial 4\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We had a fantastic time. Everything was first class. The staff was amazing -- all of them! I think by the end of the trip, our crew felt like they were part of the group -- in a very good way! All the meals were fantastic! I've been going to the 3 Valleys since 2009, and Phoebe is one of the best hostesses I have had and the group loved her. Chalet is very clean and as described. It worked perfectly. \"}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Bryant -\",/*#__PURE__*/_jsx(\"strong\",{children:\" Chalet Verdet: Feb 2024\"})]})]}),height:\"100%\",id:\"Wv48qJdvm\",layoutId:\"Wv48qJdvm\",name:\"Testomonial 4\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hifvv-container\",\"data-framer-name\":\"Testomonial 5\",name:\"Testomonial 5\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{children:'\"FIRST CLASS WITHOUT EXCEPTION! All the staff were great. Super imaginative food served impeccably... The girls were great. They had a real knack to always be able to refill water, wine, and G&T just as you were thinking about it... Attentive but great at dissolving into the background but always there!... Just great!...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Ken & Helen\",/*#__PURE__*/_jsx(\"strong\",{children:\" - Chez Bugi: Jan 2024\"})]})]}),height:\"100%\",id:\"oklHTUuOr\",layoutId:\"oklHTUuOr\",name:\"Testomonial 5\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10zhut2-container\",\"data-framer-name\":\"Testomonial 6\",name:\"Testomonial 6\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"White Mountain Chalets gave us our dream ski trip. Matt and the team went above and beyond... The chalet couldn\\'t have been better for our large group of 15, luxury accommodation at its finest with great soundproofing... The kitchen came extremely well equipped, the beds were very comfortable, and the hot tub and sauna were a great addition... The drivers were super friendly and helpful... The team couldn\u2019t have been more helpful and took care of everything...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Jasmine\",/*#__PURE__*/_jsx(\"strong\",{children:\" - Aphylla & Aralia: February 2024\"})]})]}),height:\"100%\",id:\"QUKDKVh2M\",layoutId:\"QUKDKVh2M\",name:\"Testomonial 6\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9cclr8-container\",\"data-framer-name\":\"Testomonial 1\",name:\"Testomonial 1\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Lily, Bex, Phoebe, Lucas & Daniel were ALL amazing. They all made sure that our week was perfect. The chalet was kept beautifully clean by Bex & Phoebe and they did a fantastic job of looking after us all. We couldn\u2019t have asked for more. Lily\u2019s food was to die for, and the kitchen was spotless. She accommodated all of our quirks\u2026 Lucas & Daniel were great... great job boys!...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Josh - \",/*#__PURE__*/_jsx(\"strong\",{children:\"Chalet Constantia: March 2024\"})]})]}),height:\"100%\",id:\"qtrmqIpt3\",layoutId:\"qtrmqIpt3\",name:\"Testomonial 1\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9cclr8-container\",\"data-framer-name\":\"Testomonial 1\",name:\"Testomonial 1\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Lily, Bex, Phoebe, Lucas & Daniel were ALL amazing. They all made sure that our week was perfect. The chalet was kept beautifully clean by Bex & Phoebe and they did a fantastic job of looking after us all. We couldn\u2019t have asked for more. Lily\u2019s food was to die for, and the kitchen was spotless. She accommodated all of our quirks\u2026 Lucas & Daniel were great... great job boys!...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Josh - \",/*#__PURE__*/_jsx(\"strong\",{children:\"Chalet Constantia: March 2024\"})]})]}),height:\"100%\",id:\"qtrmqIpt3\",layoutId:\"qtrmqIpt3\",name:\"Testomonial 1\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9cclr8-container\",\"data-framer-name\":\"Testomonial 1\",name:\"Testomonial 1\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Lily, Bex, Phoebe, Lucas & Daniel were ALL amazing. They all made sure that our week was perfect. The chalet was kept beautifully clean by Bex & Phoebe and they did a fantastic job of looking after us all. We couldn\u2019t have asked for more. Lily\u2019s food was to die for, and the kitchen was spotless. She accommodated all of our quirks\u2026 Lucas & Daniel were great... great job boys!...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Josh - \",/*#__PURE__*/_jsx(\"strong\",{children:\"Chalet Constantia: March 2024\"})]})]}),height:\"100%\",id:\"qtrmqIpt3\",layoutId:\"qtrmqIpt3\",name:\"Testomonial 1\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9cclr8-container\",\"data-framer-name\":\"Testomonial 1\",name:\"Testomonial 1\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Lily, Bex, Phoebe, Lucas & Daniel were ALL amazing. They all made sure that our week was perfect. The chalet was kept beautifully clean by Bex & Phoebe and they did a fantastic job of looking after us all. We couldn\u2019t have asked for more. Lily\u2019s food was to die for, and the kitchen was spotless. She accommodated all of our quirks\u2026 Lucas & Daniel were great... great job boys!...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Josh - \",/*#__PURE__*/_jsx(\"strong\",{children:\"Chalet Constantia: March 2024\"})]})]}),height:\"100%\",id:\"qtrmqIpt3\",layoutId:\"qtrmqIpt3\",name:\"Testomonial 1\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9cclr8-container\",\"data-framer-name\":\"Testomonial 1\",name:\"Testomonial 1\",children:/*#__PURE__*/_jsx(Testimonial,{fqXAY6jE8:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'\"Lily, Bex, Phoebe, Lucas & Daniel were ALL amazing. They all made sure that our week was perfect. The chalet was kept beautifully clean by Bex & Phoebe and they did a fantastic job of looking after us all. We couldn\u2019t have asked for more. Lily\u2019s food was to die for, and the kitchen was spotless. She accommodated all of our quirks\u2026 Lucas & Daniel were great... great job boys!...\"'}),/*#__PURE__*/_jsxs(\"p\",{children:[\"Josh - \",/*#__PURE__*/_jsx(\"strong\",{children:\"Chalet Constantia: March 2024\"})]})]}),height:\"100%\",id:\"qtrmqIpt3\",layoutId:\"qtrmqIpt3\",name:\"Testomonial 1\",style:{height:\"100%\",width:\"100%\"},variant:\"san77zfqG\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f15vRWe1K:{y:2589},pzpkTZlAY:{y:2483}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:429,width:\"100vw\",y:2689,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5kwcxa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f15vRWe1K:{variant:\"zfueE83LY\"},pzpkTZlAY:{variant:\"JKVy9K2KU\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"oR_8p1EN1\",layoutId:\"oR_8p1EN1\",style:{width:\"100%\"},variant:\"EpCoSdzlP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c7j3qn-container\",id:\"c7j3qn\",layoutScroll:true,transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f15vRWe1K:{variant:\"xZpLJR5qx\"},pzpkTZlAY:{variant:\"z79LlmFXR\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"BlOHQ3_ah\",layoutId:\"BlOHQ3_ah\",style:{width:\"100%\"},uG59W276F:uG59W276Fwelu7j({overlay}),variant:\"d6hI9b90A\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-3gn6ml\",\"data-framer-portal-id\":\"c7j3qn\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"Toc2RBa1k\"),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f15vRWe1K:{height:1e3,width:\"50vw\",y:0},pzpkTZlAY:{height:1e3,width:\"70vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qqf3m1-container hidden-djnvvk\",\"data-framer-portal-id\":\"c7j3qn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{f15vRWe1K:{OxwZZe58i:OxwZZe58i1wvko5h({overlay})},pzpkTZlAY:{OxwZZe58i:OxwZZe58i1wvko5h({overlay})}},children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"hQLlZ60Es\",layoutId:\"hQLlZ60Es\",style:{height:\"100%\",width:\"100%\"},variant:\"CKyRtOCnN\",width:\"100%\"})})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-w2EAw { background: var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-w2EAw.framer-10no0f3, .framer-w2EAw .framer-10no0f3 { display: block; }\",\".framer-w2EAw.framer-djnvvk { align-content: center; align-items: center; background-color: var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-w2EAw .framer-1bwc0xo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 70vh; justify-content: space-between; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; }\",\".framer-w2EAw .framer-aj8iwo { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-w2EAw .framer-1jrlsj4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 100px 50px 100px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-10lxbom, .framer-w2EAw .framer-1mbtihh, .framer-w2EAw .framer-1r2row1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-w2EAw .framer-1g7fhjy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 160px 100px 160px 100px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-142huto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-88obtw, .framer-w2EAw .framer-8e1x3t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-1o3i4e4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-w2EAw .framer-vfr2f5, .framer-w2EAw .framer-1qc7uce { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-w2EAw .framer-ksqwu-container, .framer-w2EAw .framer-2grv3r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-w2EAw .framer-7hcr3s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-2zar5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-hulhj8 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 120px 100px 160px 100px; position: relative; width: 1px; }\",\".framer-w2EAw .framer-1lsr78e { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-zuqsog { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-w2EAw .framer-qgpdzc { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-w2EAw .framer-cyuq5d { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-w2EAw .framer-cgq61f { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2EAw .framer-18pbbrj-container { flex: 1 0 0px; height: 550px; position: relative; width: 1px; }\",\".framer-w2EAw .framer-9cclr8-container, .framer-w2EAw .framer-86ds0f-container, .framer-w2EAw .framer-9eood5-container, .framer-w2EAw .framer-to61v9-container, .framer-w2EAw .framer-1hifvv-container, .framer-w2EAw .framer-10zhut2-container { height: 550px; position: relative; width: 800px; }\",\".framer-w2EAw .framer-5kwcxa-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-w2EAw .framer-c7j3qn-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; }\",\".framer-w2EAw .framer-3gn6ml { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-w2EAw .framer-qqf3m1-container { flex: none; height: 800px; left: 126px; position: fixed; top: 46px; width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-w2EAw.framer-djnvvk, .framer-w2EAw .framer-aj8iwo, .framer-w2EAw .framer-1jrlsj4, .framer-w2EAw .framer-1g7fhjy, .framer-w2EAw .framer-142huto, .framer-w2EAw .framer-88obtw, .framer-w2EAw .framer-1o3i4e4, .framer-w2EAw .framer-8e1x3t, .framer-w2EAw .framer-7hcr3s, .framer-w2EAw .framer-2zar5x, .framer-w2EAw .framer-hulhj8, .framer-w2EAw .framer-zuqsog, .framer-w2EAw .framer-qgpdzc, .framer-w2EAw .framer-cgq61f { gap: 0px; } .framer-w2EAw.framer-djnvvk > *, .framer-w2EAw .framer-aj8iwo > *, .framer-w2EAw .framer-zuqsog > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-w2EAw.framer-djnvvk > :first-child, .framer-w2EAw .framer-aj8iwo > :first-child, .framer-w2EAw .framer-1g7fhjy > :first-child, .framer-w2EAw .framer-142huto > :first-child, .framer-w2EAw .framer-88obtw > :first-child, .framer-w2EAw .framer-8e1x3t > :first-child, .framer-w2EAw .framer-hulhj8 > :first-child, .framer-w2EAw .framer-zuqsog > :first-child { margin-top: 0px; } .framer-w2EAw.framer-djnvvk > :last-child, .framer-w2EAw .framer-aj8iwo > :last-child, .framer-w2EAw .framer-1g7fhjy > :last-child, .framer-w2EAw .framer-142huto > :last-child, .framer-w2EAw .framer-88obtw > :last-child, .framer-w2EAw .framer-8e1x3t > :last-child, .framer-w2EAw .framer-hulhj8 > :last-child, .framer-w2EAw .framer-zuqsog > :last-child { margin-bottom: 0px; } .framer-w2EAw .framer-1jrlsj4 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-w2EAw .framer-1jrlsj4 > :first-child, .framer-w2EAw .framer-1o3i4e4 > :first-child, .framer-w2EAw .framer-7hcr3s > :first-child, .framer-w2EAw .framer-2zar5x > :first-child, .framer-w2EAw .framer-qgpdzc > :first-child, .framer-w2EAw .framer-cgq61f > :first-child { margin-left: 0px; } .framer-w2EAw .framer-1jrlsj4 > :last-child, .framer-w2EAw .framer-1o3i4e4 > :last-child, .framer-w2EAw .framer-7hcr3s > :last-child, .framer-w2EAw .framer-2zar5x > :last-child, .framer-w2EAw .framer-qgpdzc > :last-child, .framer-w2EAw .framer-cgq61f > :last-child { margin-right: 0px; } .framer-w2EAw .framer-1g7fhjy > *, .framer-w2EAw .framer-142huto > *, .framer-w2EAw .framer-hulhj8 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-w2EAw .framer-88obtw > *, .framer-w2EAw .framer-8e1x3t > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-w2EAw .framer-1o3i4e4 > *, .framer-w2EAw .framer-7hcr3s > *, .framer-w2EAw .framer-2zar5x > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-w2EAw .framer-qgpdzc > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-w2EAw .framer-cgq61f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-w2EAw { background: var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-w2EAw.framer-djnvvk { width: 810px; } .framer-w2EAw .framer-1bwc0xo { height: 60vh; } .framer-w2EAw .framer-1jrlsj4 { padding: 0px 50px 50px 50px; } .framer-w2EAw .framer-hulhj8 { padding: 120px 50px 160px 50px; } .framer-w2EAw .framer-3gn6ml { z-index: 2; } .framer-w2EAw .framer-qqf3m1-container { height: 100vh; left: unset; right: 0px; top: 0px; width: 50%; z-index: 2; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-w2EAw { background: var(--token-0ef5f4c9-6e40-403c-b675-fde7ce75eb76, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-w2EAw.framer-djnvvk { width: 414px; } .framer-w2EAw .framer-1bwc0xo { height: 50vh; } .framer-w2EAw .framer-1jrlsj4 { padding: 0px 20px 32px 20px; } .framer-w2EAw .framer-1g7fhjy { padding: 96px 20px 96px 20px; } .framer-w2EAw .framer-142huto { gap: 44px; } .framer-w2EAw .framer-8e1x3t { justify-content: flex-start; } .framer-w2EAw .framer-1qc7uce { order: 0; } .framer-w2EAw .framer-2zar5x { flex-direction: column; } .framer-w2EAw .framer-hulhj8 { flex: none; gap: 48px; padding: 120px 20px 160px 20px; width: 100%; } .framer-w2EAw .framer-1lsr78e { flex-direction: column; gap: 0px; justify-content: flex-start; } .framer-w2EAw .framer-zuqsog { flex: none; width: 100%; } .framer-w2EAw .framer-18pbbrj-container { height: 700px; } .framer-w2EAw .framer-3gn6ml { z-index: 2; } .framer-w2EAw .framer-qqf3m1-container { height: 100vh; left: unset; right: 0px; top: 0px; width: 70%; z-index: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-w2EAw .framer-142huto, .framer-w2EAw .framer-2zar5x, .framer-w2EAw .framer-hulhj8, .framer-w2EAw .framer-1lsr78e { gap: 0px; } .framer-w2EAw .framer-142huto > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-w2EAw .framer-142huto > :first-child, .framer-w2EAw .framer-2zar5x > :first-child, .framer-w2EAw .framer-hulhj8 > :first-child, .framer-w2EAw .framer-1lsr78e > :first-child { margin-top: 0px; } .framer-w2EAw .framer-142huto > :last-child, .framer-w2EAw .framer-2zar5x > :last-child, .framer-w2EAw .framer-hulhj8 > :last-child, .framer-w2EAw .framer-1lsr78e > :last-child { margin-bottom: 0px; } .framer-w2EAw .framer-2zar5x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-w2EAw .framer-hulhj8 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-w2EAw .framer-1lsr78e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2654\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"f15vRWe1K\":{\"layout\":[\"fixed\",\"auto\"]},\"pzpkTZlAY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerIHquPVEEH=withCSS(Component,css,\"framer-w2EAw\");export default FramerIHquPVEEH;FramerIHquPVEEH.displayName=\"Page\";FramerIHquPVEEH.defaultProps={height:2654,width:1200};addFonts(FramerIHquPVEEH,[{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\"},{family:\"Electrolux Sans SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/T7eeErNsk6xHpjQLpm2lxMngXkg.woff2\"}]},...PDFViewerFonts,...TestimonialFonts,...SlideshowFonts,...FooterFonts,...NavigationFonts,...MenuFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIHquPVEEH\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f15vRWe1K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pzpkTZlAY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"2654\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "6+BAQGA,GAAoB,UAAU,8EAAiG,SAARC,EAA2BC,EAAM,CAAC,IAAIC,EAAqBC,EAAsBC,EAAsBC,EAAsBC,EAAsBC,EAAsBC,EAAsBC,EAAuBC,EAAuB,GAAK,CAAC,WAAAC,EAAW,KAAAC,EAAK,QAAAC,EAAQ,WAAAC,GAAW,MAAAC,EAAM,WAAAC,EAAW,aAAAC,EAAa,YAAAC,EAAY,eAAAC,CAAc,EAAElB,EAAW,CAACmB,EAAUC,CAAY,EAAEC,EAAS,EAAK,EAAQC,EAAUC,EAAO,IAAI,EAAO,CAACC,EAAcC,CAAgB,EAAEJ,EAAS,EAAK,EAAO,CAACK,EAAWC,EAAa,EAAEN,EAAS,IAAI,EAAO,CAACO,EAAcC,EAAgB,EAAER,EAAS,EAAK,EAAO,CAACS,GAAeC,EAAiB,EAAEV,EAAS,IAAI,EAAO,CAACW,EAAQC,CAAU,EAAEZ,EAASR,EAAU,EAAO,CAACqB,EAAUC,EAAY,EAAEd,EAASP,CAAK,EAAO,CAACsB,GAAYC,EAAc,EAAEhB,EAAS,IAAI,EAAQiB,EAAa5B,IAAa,SAASC,EAAKC,EAAc2B,GAAWC,GAAK,CAAC,IAAMC,EAAOnB,EAAU,QAAQ,GAAGmB,EAAO,CAAC,IAAMC,EAAQD,EAAO,WAAW,IAAI,EAAKb,EAC3hCG,GAAkBC,CAAO,GAClBH,GAAiB,EAAI,EACIW,GAAI,QAAQR,CAAO,EAAE,KAAKW,GAAM,CAAC,IAAIC,EAASD,EAAK,YAAY,CAAC,MAAMT,CAAS,CAAC,EAAEO,EAAO,MAAMG,EAAS,MAAMH,EAAO,OAAOG,EAAS,OACrK,IAAIC,GAAc,CAAC,cAAcH,EAAQ,SAASE,CAAQ,EAC1DD,EAAK,OAAOE,EAAa,EAAE,QAAQ,KAAK,IAAI,CAAChB,GAAiB,EAAK,EAAKC,KAAiB,OACzFS,GAAWC,CAAG,EAAET,GAAkB,IAAI,EAAG,CAAC,CAAE,CAAC,EAAG,CAAC,EAAQe,GAAa,MAAMN,GAAK,CAAC,IAAIO,EAAQC,EAAsCC,EAA+BC,EAAgB,IAAMC,GAAK,MAAuCX,GAAI,QAAQ,EAASY,IAASL,EAAQM,MAAU,MAAMN,IAAU,OAAO,OAAOA,EAAQ,IAAI,gBAAgB,IAAI,KAAK,CAACI,EAAI,EAAE,CAAC,KAAK,iBAAiB,CAAC,CAAC,EAAQvC,GAAQ,MAAO4B,GAAM,OAA2BU,EAAgBV,EAAI,cAAc,MAAMU,IAAkB,SAAeD,EAA+BC,EAAgB,kBAAkB,MAAMD,IAAiC,SAAeD,EAAsCC,EAA+B,UAAU,MAAMD,IAAwC,OAArU,OAAmVA,EAAsC,KAAWM,GAAYC,GAAsB3C,EAAO,EAAEyB,GAAe,CAAC,KAAKe,GAAQ,SAASE,EAAW,CAAC,CAAE,EAAQE,GAAS,CAACC,EAAEC,IAAM,CAACD,EAAE,gBAAgB,EAAE,IAAME,EAAE,SAAS,cAAc,GAAG,EAAE,GAAG,CAACA,EAAE,MAAO,MAAM,IAAI,MAAM,gDAAgD,EAAGA,EAAE,KAAKD,EAAI,KAAK,yBAAyBC,EAAE,OAAO,UAE7lC,aAAaA,IAAGA,EAAE,SAASzC,GAAgBwC,EAAI,WAAW,SAAS,MAAM,SAAS,iBAAiB,OAAOC,CAAC,EAAEA,EAAE,MAAM,EAAEA,EAAE,OAAO,CAAE,EAKxHC,GAAWH,GAAG,CAAqB,GAApBA,EAAE,gBAAgB,EAAKzB,GAAS,EAAE,CAACC,EAAWP,CAAU,EAAE,MAAO,CAAKE,GAAeK,EAAWD,EAAQ,CAAC,CAAG,EAE3H6B,GAAWJ,GAAG,CAAqB,GAApBA,EAAE,gBAAgB,EAAKzB,GAASN,EAAW,CAACO,EAAW,CAAC,EAAE,MAAO,CAAKL,GAAeK,EAAWD,EAAQ,CAAC,CAAG,EAAQ8B,GAAUL,GAAG,CAACA,EAAE,gBAAgB,EAAK,EAAAvB,EAAU,KAAeN,GAAeO,GAAaD,EAAU,EAAE,EAAG,EAAQ6B,GAAWN,GAAG,CAACA,EAAE,gBAAgB,EAAK,EAAAvB,GAAWpB,KAAmBc,GAAeO,GAAaD,EAAU,EAAE,EAAG,EAAE8B,EAAU,IAAI,CAAC,IAAMC,EAAK,SAAS,qBAAqB,MAAM,EAAE,CAAC,EAAE,GAAG3B,IAAe,QAAWnB,EAAU,CAC5d8C,EAAK,MAAM,SAAS,SAASA,EAAK,MAAM,OAAO,OAAO,IAAMC,EAAYC,GAAY,CAAC,IAAI7B,CAAY,CAAC,EAAEb,EAAiB,EAAI,EAAkDyC,GAAY,QAAQ,KAAK1B,GAAK,CAC7MD,GAAWC,CAAG,EAAEb,GAAca,EAAI,QAAQ,EAAEA,EAAI,kBAAkBN,EACjEY,GAAaN,CAAG,CAChB,EAAE4B,GAAO,CAAC,QAAQ,MAAMA,CAAK,CAAE,CAAC,EACjCF,EAAY,WAAWf,GAAM,CAAIA,EAAK,OAAQ1B,EAAiB,EAAK,EAAQA,EAAiB,EAAI,CAAG,CAAE,MAASS,EAAUpB,GAAOqB,GAAarB,CAAK,EAAGmD,EAAK,MAAM,SAAS,OAAOA,EAAK,MAAM,OAAO,MAAQ,EAAE,CAACvD,EAAWC,EAAKC,EAAQ0B,EAAaN,EAAQb,EAAUe,EAAUT,CAAgB,CAAC,EAAE,IAAM4C,GAAM,IAAIjD,EAAa,EAAK,EAAQkD,GAAK,IAAIlD,EAAa,EAAI,EAAE,OAAoBmD,EAAMC,EAAU,CAAC,SAAS,CAAcD,EAAME,EAAO,OAAO,CAAC,SAAS,CAAC,MAAM,EAAE,EAAE,QAAQ,IAAItD,EAAUkD,GAAM,EAAEC,GAAK,EAAE,MAAM,CAAC,GAAGtD,EAAa,UAAU,QAAQA,EAAa,QAAQ,gBAAgBA,EAAa,WAAW,aAAaA,EAAa,aAAa,aAAaf,EAAqBe,EAAa,UAAU,MAAMf,IAAuB,OAAO,OAAOA,EAAqB,YAAY,aAAaC,EAAsBc,EAAa,UAAU,MAAMd,IAAwB,OAAO,OAAOA,EAAsB,YAAY,gBAAgBC,EAAsBa,EAAa,UAAU,MAAMb,IAAwB,OAAO,OAAOA,EAAsB,eAAe,iBAAiBC,EAAsBY,EAAa,UAAU,MAAMZ,IAAwB,OAAO,OAAOA,EAAsB,gBAAgB,mBAAmBC,EAAsBW,EAAa,UAAU,MAAMX,IAAwB,OAAO,OAAOA,EAAsB,kBAAkB,kBAAkBC,EAAsBU,EAAa,UAAU,MAAMV,IAAwB,OAAO,OAAOA,EAAsB,iBAAiB,eAAeU,EAAa,eAAe,MAAMA,EAAa,MAAM,UAAUA,EAAa,OAAO,OAAO,UAAU,QAAQ,OAAO,WAAW,SAAS,IAAI,MAAM,SAAS,QAAQ,EAAE,aAAa,SAAS,SAAS,CAACA,EAAa,YAAyB0D,EAAKD,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQlE,EAAsBS,EAAa,WAAW,MAAMT,IAAwB,OAAO,OAAOA,EAAsB,MAAM,KAAK,SAASC,EAAuBQ,EAAa,WAAW,MAAMR,IAAyB,OAAO,OAAOA,EAAuB,MAAM,KAAK,OAAOC,EAAuBO,EAAa,WAAW,MAAMP,IAAyB,OAAO,OAAOA,EAAuB,MAAM,QAAQ,OAAO,SAAS,QAAQ,EAAE,wBAAwB,CAAC,OAAOO,EAAa,QAAQ,IAAI,CAAC,CAAC,EAAED,CAAU,CAAC,CAAC,EAAe2D,EAAKC,EAAgB,CAEzvE,QAAQ,GAGR,KAAK,OACL,eAAe,IAAI,KAAK,SAASxD,GAAWmB,IAAe,QAAwBoC,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,SAAS,QAAQ,MAAM,EAAE,OAAO,EAAE,EAAE,SAAsBH,EAAME,EAAO,IAAI,CAAC,QAAQJ,GAAM,QAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,OAAO,gBAAgBpD,EAAY,gBAAgB,QAAQ,OAAO,WAAW,SAAS,eAAe,QAAQ,EAAE,SAAS,CAAcyD,EAAKD,EAAO,IAAI,CAAC,QAAQhB,GAAGA,EAAE,gBAAgB,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,SAAS,EAAE,KAAK,SAAS,QAAQ,GAAG,UAAU,GAAG,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,WAAW,QAAQ,SAAS,UAAU,OAAO,CAAC,EAAE,SAAsBiB,EAAK,SAAS,CAAC,IAAIpD,CAAS,CAAC,CAAC,CAAC,EAAEE,GAA4B+C,EAAME,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,OAAO,MAAM,OAAO,QAAQ,OAAO,WAAW,SAAS,eAAe,QAAQ,EAAE,SAAS,CAAcC,EAAK,QAAQ,CAAC,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,6CA8BrjC,CAAC,EAAeA,EAAKD,EAAO,IAAI,CAAC,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAME,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,IAAI,OAAO,KAAK,OAAO,MAAM,OAAO,QAAQ,OAAO,eAAe,gBAAgB,WAAW,OAAO,EAAE,SAAS,CAAcF,EAAM,MAAM,CAAC,MAAM,CAAC,GAAGtD,EAAY,YAAY,UAAU,QAAQA,EAAY,YAAY,QAAQ,gBAAgBA,EAAY,YAAY,gBAAgB,aAAaA,EAAY,YAAY,aAAa,MAAMA,EAAY,YAAY,MAAM,OAAO,CAAC,EAAE,SAAS,CAACe,EAAQ,IAAIN,CAAU,CAAC,CAAC,EAAe6C,EAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,cAAc,SAAS,IAAI,OAAO,OAAO,CAAC,EAAE,SAAS,CAAcG,EAAK,MAAM,CAAC,QAAQL,GAAM,SAAsBK,EAAK,MAAM,CAAC,KAAK,SAAS,aAAa,eAAe,MAAM,CAAC,QAAQzD,EAAY,SAAS,QAAQ,gBAAgBA,EAAY,SAAS,gBAAgB,aAAaA,EAAY,SAAS,aAAa,MAAMA,EAAY,SAAS,KAAK,KAAK,OAAOA,EAAY,SAAS,KAAK,KAAK,QAAQ,OAAO,MAAMA,EAAY,SAAS,MAAM,OAAO,SAAS,EAAE,wBAAwB,CAAC,OAAOA,EAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAK,MAAM,CAAC,QAAQX,GAAW,SAAsBW,EAAK,MAAM,CAAC,KAAK,SAAS,aAAa,kBAAkB,MAAM,CAAC,QAAQzD,EAAY,aAAa,QAAQ,gBAAgBA,EAAY,aAAa,gBAAgB,aAAaA,EAAY,aAAa,aAAa,MAAMA,EAAY,aAAa,KAAK,KAAK,OAAOA,EAAY,aAAa,KAAK,KAAK,MAAMA,EAAY,aAAa,MAAM,OAAO,UAAU,QAAQ,MAAM,EAAE,wBAAwB,CAAC,OAAOA,EAAY,aAAa,WAAW,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAK,MAAM,CAAC,QAAQZ,GAAU,SAAsBY,EAAK,MAAM,CAAC,KAAK,SAAS,aAAa,iBAAiB,MAAM,CAAC,QAAQzD,EAAY,aAAa,QAAQ,gBAAgBA,EAAY,aAAa,gBAAgB,aAAaA,EAAY,aAAa,aAAa,MAAMA,EAAY,aAAa,KAAK,KAAK,OAAOA,EAAY,aAAa,KAAK,KAAK,MAAMA,EAAY,aAAa,MAAM,OAAO,UAAU,QAAQ,MAAM,EAAE,wBAAwB,CAAC,OAAOA,EAAY,aAAa,UAAU,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAK,MAAM,CAAC,QAAQjB,GAAGD,GAASC,EAAErB,EAAW,EAAE,SAAsBsC,EAAK,MAAM,CAAC,KAAK,SAAS,aAAa,kBAAkB,MAAM,CAAC,QAAQzD,EAAY,YAAY,QAAQ,gBAAgBA,EAAY,YAAY,gBAAgB,aAAaA,EAAY,YAAY,aAAa,MAAMA,EAAY,YAAY,KAAK,KAAK,OAAOA,EAAY,YAAY,KAAK,KAAK,MAAMA,EAAY,YAAY,MAAM,OAAO,UAAU,QAAQ,MAAM,EAAE,wBAAwB,CAAC,OAAOA,EAAY,YAAY,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAME,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,MAAM,OAAO,QAAQ,OAAO,eAAe,gBAAgB,WAAW,QAAQ,EAAE,SAAS,CAAcC,EAAK,MAAM,CAAC,KAAK,SAAS,aAAa,kBAAkB,QAAQd,GAAW,MAAM,CAAC,MAAM3C,EAAY,OAAO,KAAK,KAAK,OAAOA,EAAY,OAAO,KAAK,KAAK,QAAQ,OAAO,MAAMA,EAAY,OAAO,MAAM,OAAO,UAAU,QAAQA,EAAY,OAAO,QAAQ,gBAAgBA,EAAY,OAAO,gBAAgB,aAAaA,EAAY,OAAO,aAAa,OAAO,CAAC,EAAE,wBAAwB,CAAC,OAAOA,EAAY,OAAO,QAAQ,CAAC,CAAC,EAAeyD,EAAK,MAAM,CAAC,KAAK,SAAS,aAAa,cAAc,QAAQb,GAAW,MAAM,CAAC,MAAM5C,EAAY,OAAO,KAAK,KAAK,OAAOA,EAAY,OAAO,KAAK,KAAK,QAAQ,OAAO,MAAMA,EAAY,OAAO,MAAM,OAAO,UAAU,QAAQA,EAAY,OAAO,QAAQ,gBAAgBA,EAAY,OAAO,gBAAgB,aAAaA,EAAY,OAAO,aAAa,OAAO,CAAC,EAAE,wBAAwB,CAAC,OAAOA,EAAY,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAClB,EAAU,YAAY,aAAa6E,GAAoB7E,EAAU,CAAC,WAAW,CAAC,KAAK8E,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,SAAS,KAAK,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,iBAAiB,CAAC,KAAK,EAAE,OAAO7E,GAAOA,EAAM,aAAa,QAAQ,EAAE,QAAQ,CAAC,KAAK6E,EAAY,OAAO,MAAM,MAAM,aAAa,GAAG,OAAO7E,GAAOA,EAAM,aAAa,KAAK,EAAE,WAAW,CAAC,MAAM,cAAc,KAAK6E,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,aAAa,GAAG,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,aAAa,UAAU,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,gBAAgB,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,SAAS,EAAE,WAAW,CAAC,KAAKA,EAAY,MAAM,MAAM,eAAe,aAAa,SAAS,EAAE,UAAU,CAAC,MAAM,aAAa,KAAK,OAAO,SAAS,WAAW,gBAAgB,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,CAAC,kBAAkB,EAAE,YAAY,QAAQ,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,aAAa,MAAM,gBAAgB,aAAa,MAAM,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,aAAa,qBAAqB,EAAE,OAAO,CAAC,KAAKA,EAAY,UAAU,MAAM,SAAS,aAAa,kCAAkC,EAAE,eAAe,CAAC,KAAKA,EAAY,KAAK,MAAM,kBAAkB,QAAQ,CAAC,OAAO,YAAY,WAAW,cAAc,EAAE,aAAa,CAAC,OAAO,YAAY,WAAW,cAAc,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,cAAc,aAAa,GAAK,aAAa,MAAM,cAAc,IAAI,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,68BAA68B,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,EAAE,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,aAAa,MAAM,YAAY;AAAA,gJAAyJ,CAAC,EAAE,OAAO7E,EAAM,CAAC,OAAOA,EAAM,aAAa,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK6E,EAAY,OAAO,MAAM,gBAAgB,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,iBAAiB,SAAS,CAAC,UAAU,CAAC,MAAM,aAAa,KAAK,OAAO,SAAS,WAAW,gBAAgB,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,aAAa,mBAAmB,EAAE,aAAa,CAAC,KAAKA,EAAY,aAAa,MAAM,gBAAgB,aAAa,KAAK,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,iBAAiB,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,aAAa,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,SAAS,CAAC,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,uOAAuO,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,0PAA0P,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,EAAE,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,aAAa,mBAAmB,EAAE,aAAa,CAAC,KAAKA,EAAY,aAAa,MAAM,gBAAgB,aAAa,KAAK,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,iBAAiB,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,UAAU,YAAY;AAAA,gJAAyJ,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,gBAAgB,aAAa,qWAAqW,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,aAAa,uZAAuZ,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,EAAE,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,aAAa,mBAAmB,EAAE,aAAa,CAAC,KAAKA,EAAY,aAAa,MAAM,gBAAgB,aAAa,KAAK,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,iBAAiB,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,UAAU,YAAY;AAAA,gJAAyJ,CAAC,CAAC,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,2TAA2T,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,EAAE,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,aAAa,mBAAmB,EAAE,aAAa,CAAC,KAAKA,EAAY,aAAa,MAAM,gBAAgB,aAAa,KAAK,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,iBAAiB,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,UAAU,YAAY;AAAA,gJAAyJ,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,kBAAkB,SAAS,CAAC,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,gBAAgB,aAAa,qWAAqW,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,EAAE,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,aAAa,mBAAmB,EAAE,aAAa,CAAC,KAAKA,EAAY,aAAa,MAAM,gBAAgB,aAAa,KAAK,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,iBAAiB,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,UAAU,YAAY;AAAA,gJAAyJ,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,iBAAiB,CAAC,CAAC,EAAE,eAAe,CAAC,MAAM,gBAAgB,KAAKA,EAAY,OAAO,aAAa,UAAU,CAAC,CAAC,EC/D57V,IAAMC,GAAeC,EAASC,CAAS,EAAQC,GAAmCC,GAA0BC,EAAO,GAAG,EAAQC,GAAiBL,EAASM,CAAW,EAAQC,GAAeP,EAASQ,EAAS,EAAQC,GAAgBC,GAAON,EAAO,GAAG,EAAQO,GAAYX,EAASY,EAAM,EAAQC,GAAgBb,EAASc,EAAU,EAAQC,GAAUf,EAASgB,EAAI,EAAQC,GAAgBP,GAAOQ,CAAS,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWJ,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQK,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,GAAG,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAASA,EAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,EAAU,IAAI,CAAC,IAAMC,EAAUrB,EAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,EAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,CAAE,CAAC,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,aAAa,eAAe,CAAE,CAAC,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,aAAa,eAAe,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQxC,GAAY,EAAK,EAAQqD,EAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,EAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAgB,CAAC,CAAC,QAAAC,EAAQ,eAAAC,CAAc,IAAIL,EAAsB,SAASM,IAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,EAAiB,CAAC,CAAC,QAAAH,EAAQ,eAAAC,CAAc,IAAIL,EAAsB,SAASM,IAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAAQI,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,IAAC/D,GAAU,GAAiB,CAAC,YAAY,WAAW,EAAE,SAASiD,CAAW,GAAmCe,EAAsBC,GAAM,EAAQC,EAAsB,CAAa7B,GAAuBA,GAAuBA,EAAS,EAAE,OAAA8B,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAnE,EAAiB,EAAE,SAAsBoE,EAAMC,GAAY,CAAC,GAAGjC,GAA4C0B,EAAgB,SAAS,CAAcM,EAAMtF,EAAO,IAAI,CAAC,GAAGwD,EAAU,UAAUgC,GAAGvE,GAAkB,GAAGiE,EAAsB,gBAAgB7B,CAAS,EAAE,IAAIL,GAA6B6B,EAAK,MAAM,CAAC,GAAGzB,CAAK,EAAE,SAAS,CAAcgC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBA,EAAKK,GAAM,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQC,GAA0B,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAsBN,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAsBA,EAAKO,EAAkB,CAAC,WAAW1B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmB,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,iCAAiC,CAAC,CAAC,EAAE,SAAsBA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKtF,GAAmC,CAAC,QAAQsB,GAAU,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,OAAO,QAAQC,GAAW,KAAK,OAAO,UAAU,GAAK,SAAsBiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,KAAK,uBAAuB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKO,EAAkB,CAAC,WAAW1B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmB,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,iCAAiC,CAAC,CAAC,EAAE,SAAsBA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,yBAAyB,SAAsBsE,EAAKvF,EAAU,CAAC,aAAa,CAAC,WAAW,qBAAqB,OAAO,CAAC,YAAY,QAAQ,YAAY,QAAQ,YAAY,CAAC,EAAE,aAAa,OAAO,WAAW,GAAK,MAAM,eAAe,UAAU,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,KAAK,EAAE,QAAQ,oBAAoB,QAAQ,CAAC,MAAM,iBAAiB,KAAK,88BAA88B,KAAK,EAAE,EAAE,OAAO,GAAG,eAAe,MAAM,EAAE,WAAW,WAAW,eAAe,WAAW,KAAK,sEAAsE,WAAW,SAAS,QAAQ,mGAAmG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,CAAC,OAAO,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,SAAS,wOAAwO,QAAQ,oBAAoB,UAAU,2PAA2P,KAAK,EAAE,EAAE,gBAAgB,qBAAqB,SAAS,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,UAAU,4TAA4T,MAAM,qBAAqB,QAAQ,oBAAoB,KAAK,EAAE,EAAE,YAAY,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,aAAa,sWAAsW,QAAQ,oBAAoB,KAAK,EAAE,EAAE,YAAY,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,UAAU,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,KAAK,EAAE,QAAQ,mBAAmB,EAAE,aAAa,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,QAAQ,oBAAoB,KAAK,GAAG,WAAW,wZAAwZ,YAAY,qWAAqW,CAAC,EAAE,WAAW,EAAE,MAAM,IAAI,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,SAAsBsE,EAAKvF,EAAU,CAAC,aAAa,CAAC,WAAW,qBAAqB,OAAO,CAAC,YAAY,QAAQ,YAAY,QAAQ,YAAY,CAAC,EAAE,aAAa,OAAO,WAAW,GAAK,MAAM,eAAe,UAAU,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,KAAK,EAAE,QAAQ,oBAAoB,QAAQ,CAAC,MAAM,iBAAiB,KAAK,88BAA88B,KAAK,EAAE,EAAE,OAAO,GAAG,eAAe,MAAM,EAAE,WAAW,WAAW,eAAe,WAAW,KAAK,uEAAuE,WAAW,SAAS,QAAQ,mGAAmG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,CAAC,OAAO,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,SAAS,wOAAwO,QAAQ,oBAAoB,UAAU,2PAA2P,KAAK,EAAE,EAAE,gBAAgB,qBAAqB,SAAS,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,UAAU,4TAA4T,MAAM,qBAAqB,QAAQ,oBAAoB,KAAK,EAAE,EAAE,YAAY,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,aAAa,sWAAsW,QAAQ,oBAAoB,KAAK,EAAE,EAAE,YAAY,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,UAAU,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,KAAK,EAAE,QAAQ,mBAAmB,EAAE,aAAa,CAAC,gBAAgB,qBAAqB,aAAa,MAAM,MAAM,qBAAqB,QAAQ,oBAAoB,KAAK,GAAG,WAAW,wZAAwZ,YAAY,qWAAqW,CAAC,EAAE,WAAW,EAAE,MAAM,IAAI,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAK/E,GAAgB,CAAC,kBAAkB,CAAC,WAAWc,EAAW,EAAE,sBAAsB,GAAK,gBAAgBG,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB+D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAsBA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,KAAK,eAAe,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKW,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,KAAK,aAAa,IAAI;AAAA;AAAA;AAAA,EAA28B,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBA,EAAKU,EAA0B,CAAC,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,SAAsBsE,EAAKhF,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcgF,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,+YAAgY,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,UAAuBF,EAAK,SAAS,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,2WAA6W,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,gBAA6BF,EAAK,SAAS,CAAC,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,wfAAwf,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,aAA0BF,EAAK,SAAS,CAAC,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,sZAAsZ,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,WAAwBF,EAAK,SAAS,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,SAAS,qUAAqU,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,cAA2BF,EAAK,SAAS,CAAC,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,ydAAqd,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,UAAuBF,EAAK,SAAS,CAAC,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,+YAAgY,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,UAAuBF,EAAK,SAAS,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,+YAAgY,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,UAAuBF,EAAK,SAAS,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,+YAAgY,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,UAAuBF,EAAK,SAAS,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,+YAAgY,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,UAAuBF,EAAK,SAAS,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBsE,EAAKlF,EAAY,CAAC,UAAuBoF,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAK,IAAI,CAAC,SAAS,+YAAgY,CAAC,EAAeE,EAAM,IAAI,CAAC,SAAS,CAAC,UAAuBF,EAAK,SAAS,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAW1B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,IAAI,CAAC,EAAE,SAAsBmB,EAAKU,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,KAAK,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,SAAsBsE,EAAKO,EAAkB,CAAC,WAAW1B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBmB,EAAK5E,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4E,EAAKtD,GAAQ,CAAC,SAAS2C,GAAsBW,EAAKY,EAAU,CAAC,SAAsBZ,EAAKU,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBR,EAAMzE,GAAgB,CAAC,kBAAkB,CAAC,WAAWY,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,GAAG,SAAS,aAAa,GAAK,kBAAkBC,GAAmB,SAAS,CAAcyD,EAAKO,EAAkB,CAAC,WAAW1B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBmB,EAAK1E,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU8D,EAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAeW,EAAKa,EAAgB,CAAC,SAASxB,EAAQ,SAAsBW,EAAKY,EAAU,CAAC,SAA+BE,GAA0BZ,EAAYM,EAAS,CAAC,SAAS,CAAcR,EAAKpF,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIyE,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAEM,EAAY,GAAgBK,EAAKO,EAAkB,CAAC,WAAW1B,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,OAAO,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,IAAI,MAAM,OAAO,EAAE,CAAC,CAAC,EAAE,SAAsBmB,EAAKU,EAA0B,CAAC,SAAsBV,EAAKtE,EAAU,CAAC,UAAU,wCAAwC,wBAAwB,SAAS,SAAsBsE,EAAKO,EAAkB,CAAC,WAAW1B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUW,EAAiB,CAAC,QAAAH,CAAO,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUG,EAAiB,CAAC,QAAAH,CAAO,CAAC,CAAC,CAAC,EAAE,SAAsBW,EAAKxE,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,cAAc,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAK,MAAM,CAAC,UAAUI,GAAGvE,GAAkB,GAAGiE,CAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,IAAI9D,GAAS,aAAa,8HAA8H,kFAAkF,qVAAqV,kSAAkS,8TAA8T,mSAAmS,+KAA+K,6SAA6S,gRAAgR,qTAAqT,wRAAwR,4NAA4N,+IAA+I,yQAAyQ,4QAA4Q,4VAA4V,8QAA8Q,2RAA2R,wRAAwR,8FAA8F,kRAAkR,4GAA4G,uSAAuS,wGAAwG,uJAAuJ,yHAAyH,+HAA+H,+xFAA+xF,wDAAwDA,GAAS,aAAa,+fAA+f,gCAAgCA,GAAS,aAAa,8hEAA8hE,GAAe8D,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EASpqgDC,EAAgBC,GAAQvD,GAAUqD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,2BAA2B,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAGzG,GAAe,GAAGM,GAAiB,GAAGE,GAAe,GAAGI,GAAY,GAAGE,GAAgB,GAAGE,GAAU,GAAG6F,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/pE,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,yBAA2B,QAAQ,sBAAwB,IAAI,qBAAuB,OAAO,oCAAsC,4JAA0L,sBAAwB,OAAO,6BAA+B,OAAO,uBAAyB,EAAE,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["fe", "Pdfviewer", "props", "_buttonStyles_border", "_buttonStyles_border1", "_buttonStyles_border2", "_buttonStyles_border3", "_buttonStyles_border4", "_buttonStyles_border5", "_buttonStyles_pdfIcon", "_buttonStyles_pdfIcon1", "_buttonStyles_pdfIcon2", "fileChoose", "file", "fileURL", "pageNumber", "scale", "buttonText", "buttonStyles", "modalStyles", "customFileName", "modalOpen", "setModalOpen", "ye", "canvasRef", "pe", "loadingScreen", "setLoadingScreen", "totalPages", "setTotalPages", "pageRendering", "setPageRendering", "pageNumPending", "setpageNumPending", "pageNum", "setpageNum", "pageScale", "setPageScale", "downloadURL", "setdownloadURL", "selectedFile", "renderPage", "pdf", "canvas", "context", "page", "viewport", "renderContext", "downloadData", "_window", "_pdf__transport__networkStream_source", "_pdf__transport__networkStream", "_pdf__transport", "data", "blobUrl", "window", "pdfFileName", "Ne", "download", "e", "url", "a", "onPrevPage", "onNextPage", "pdfZoomIn", "pdfZoomOut", "ue", "body", "loadingTask", "Le", "error", "close", "open", "u", "l", "motion", "p", "AnimatePresence", "addPropertyControls", "ControlType", "PDFViewerFonts", "getFonts", "Pdfviewer", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TestimonialFonts", "YsNyAi6kX_default", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "FooterFonts", "i0f9bZau6_default", "NavigationFonts", "zJ3F2MORX_default", "MenuFonts", "rzCKlDgXL_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "transition2", "animation5", "transformTemplate1", "_", "t", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "uG59W276Fwelu7j", "overlay", "paginationInfo", "args", "OxwZZe58i1wvko5h", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "PropertyOverrides2", "x", "RichText2", "ComponentViewportProvider", "SVG", "l", "AnimatePresence", "Ga", "css", "FramerIHquPVEEH", "withCSS", "IHquPVEEH_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
