{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/OdxRbM1XzVG8JLJUUJ2X/XLMG8axxy9bizTpyDK5n/m4ydxoPHZ.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import PatientStories from\"https://framerusercontent.com/modules/YFmfzawFiZfn98KNwirO/srKYsmbtHz4yaGABD2i0/fEcsJRIig.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/BLvCKZyUbiO3eQymucuy/MQsHN0mtpjrtctRsP20n/usZw0WMMX.js\";const SlideshowFonts=getFonts(Slideshow);const SlideshowControls=getPropertyControls(Slideshow);const cycleOrder=[\"VnSZYv9l4\",\"Kv0e956RL\",\"cDRK03rYT\",\"UkOfyrQll\"];const serializationHash=\"framer-SZuQh\";const variantClassNames={cDRK03rYT:\"framer-v-v1pqus\",Kv0e956RL:\"framer-v-7zxiei\",UkOfyrQll:\"framer-v-1phs9b6\",VnSZYv9l4:\"framer-v-1nrv7xk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-10};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"FDuW97WYP\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"FDuW97WYP\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"UOs5j_rq_\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"UOs5j_rq_\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"UOs5j_rq_\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- L\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query2=prequery=>prequery({from:{alias:\"Sumo8osaX\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Sumo8osaX\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"Sumo8osaX\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- M\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query3=prequery=>prequery({from:{alias:\"cUXTtAxmJ\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"cUXTtAxmJ\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"cUXTtAxmJ\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- C\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query4=prequery=>prequery({from:{alias:\"acZl6ZHr6\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"acZl6ZHr6\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"acZl6ZHr6\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- Mic\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query5=prequery=>prequery({from:{alias:\"ZMDEAZsH5\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ZMDEAZsH5\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"ZMDEAZsH5\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- judy\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query6=prequery=>prequery({from:{alias:\"HgOVwzdHp\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"HgOVwzdHp\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"HgOVwzdHp\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- kathy\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query7=prequery=>prequery({from:{alias:\"Asgejq4kH\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Asgejq4kH\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"Asgejq4kH\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- charli\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query8=prequery=>prequery({from:{alias:\"AiIcYyFXY\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"AiIcYyFXY\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"AiIcYyFXY\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- nan\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const query9=prequery=>prequery({from:{alias:\"XC5dXyAsH\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"XC5dXyAsH\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"XC5dXyAsH\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- rober\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Bottom:\"bottom\",Left:\"left\",Right:\"right\",Top:\"top\"};const humanReadableVariantMap={Default:\"VnSZYv9l4\",Dots:\"Kv0e956RL\",Fade:\"UkOfyrQll\",Scale:\"cDRK03rYT\"};const getProps=({autoPlay,direction,gap,height,id,radius,startImage,width,...props})=>{return{...props,d87Z7AFaJ:startImage??props.d87Z7AFaJ??1,EnZrCLlYu:autoPlay??props.EnZrCLlYu??true,h7EWw5_YT:humanReadableEnumMap[direction]??direction??props.h7EWw5_YT??\"left\",OkK3C1FUw:gap??props.OkK3C1FUw??10,OP8Fp9jEZ:radius??props.OP8Fp9jEZ??\"10px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"VnSZYv9l4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,h7EWw5_YT,d87Z7AFaJ,EnZrCLlYu,OkK3C1FUw,OP8Fp9jEZ,IwzBySJ9oFDuW97WYP,OawFaLbl9FDuW97WYP,vKKROtRkLFDuW97WYP,x8nLgoyADFDuW97WYP,idFDuW97WYP,IwzBySJ9oUOs5j_rq_,OawFaLbl9UOs5j_rq_,vKKROtRkLUOs5j_rq_,x8nLgoyADUOs5j_rq_,idUOs5j_rq_,IwzBySJ9oSumo8osaX,OawFaLbl9Sumo8osaX,vKKROtRkLSumo8osaX,x8nLgoyADSumo8osaX,idSumo8osaX,IwzBySJ9ocUXTtAxmJ,OawFaLbl9cUXTtAxmJ,vKKROtRkLcUXTtAxmJ,x8nLgoyADcUXTtAxmJ,idcUXTtAxmJ,IwzBySJ9oacZl6ZHr6,OawFaLbl9acZl6ZHr6,vKKROtRkLacZl6ZHr6,x8nLgoyADacZl6ZHr6,idacZl6ZHr6,IwzBySJ9oZMDEAZsH5,OawFaLbl9ZMDEAZsH5,vKKROtRkLZMDEAZsH5,x8nLgoyADZMDEAZsH5,idZMDEAZsH5,IwzBySJ9oHgOVwzdHp,OawFaLbl9HgOVwzdHp,vKKROtRkLHgOVwzdHp,x8nLgoyADHgOVwzdHp,idHgOVwzdHp,IwzBySJ9oAsgejq4kH,OawFaLbl9Asgejq4kH,vKKROtRkLAsgejq4kH,x8nLgoyADAsgejq4kH,idAsgejq4kH,IwzBySJ9oAiIcYyFXY,OawFaLbl9AiIcYyFXY,vKKROtRkLAiIcYyFXY,x8nLgoyADAiIcYyFXY,idAiIcYyFXY,IwzBySJ9oXC5dXyAsH,OawFaLbl9XC5dXyAsH,vKKROtRkLXC5dXyAsH,x8nLgoyADXC5dXyAsH,idXC5dXyAsH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VnSZYv9l4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nrv7xk\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"VnSZYv9l4\",ref:refBinding,style:{...style},...addPropertyOverrides({cDRK03rYT:{\"data-framer-name\":\"Scale\"},Kv0e956RL:{\"data-framer-name\":\"Dots\"},UkOfyrQll:{\"data-framer-name\":\"Fade\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ckqyfu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mAYRI3Mwl-container\",nodeId:\"mAYRI3Mwl\",rendersWithMotion:true,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-6ce7e7c0-24ea-43ec-b60a-d28a5af14ab8, rgb(30, 32, 36))\",arrowGap:10,arrowPadding:-10,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:EnZrCLlYu,borderRadius:0,direction:h7EWw5_YT,dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:2e3,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:OkK3C1FUw,height:\"100%\",id:\"mAYRI3Mwl\",intervalControl:2,itemAmount:1,layoutId:\"mAYRI3Mwl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-d62ffd6d-0365-4204-85b2-674429fa3b78, rgb(230, 231, 232))\",dotsBlur:0,dotsFill:\"var(--token-fae910b1-58dd-4ef5-8c3c-a28d85da034c, rgb(127, 131, 138))\",dotsGap:6,dotsInset:-40,dotSize:6,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"beth-was-very-happy-with-the-help-she-received-from-our-team\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"kSIps6ygf\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"WpXAF7ePU\",scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:400,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-fkjpz7 framer-8wbip8\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"WpXAF7ePU\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-opdrfm\",layoutDependency:layoutDependency,layoutId:\"FDuW97WYP\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FDuW97WYP\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"FDuW97WYP\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"FDuW97WYP\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idFDuW97WYP,IwzBySJ9o:IwzBySJ9oFDuW97WYP,OawFaLbl9:OawFaLbl9FDuW97WYP,vKKROtRkL:vKKROtRkLFDuW97WYP,x8nLgoyAD:x8nLgoyADFDuW97WYP},index)=>{OawFaLbl9FDuW97WYP??=\"\";vKKROtRkLFDuW97WYP??=\"\";x8nLgoyADFDuW97WYP??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FDuW97WYP-${idFDuW97WYP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADFDuW97WYP},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ece3i2\",layoutDependency:layoutDependency,layoutId:\"Pr62wb_I5\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oFDuW97WYP)},className:\"framer-tzfdq3\",layoutDependency:layoutDependency,layoutId:\"RE7cVGThl\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvx92s\",layoutDependency:layoutDependency,layoutId:\"DfA_Vh9dW\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fjdxse\",layoutDependency:layoutDependency,layoutId:\"kp7WA2tXY\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-nnln3a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"shzDXgvK3\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9FDuW97WYP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-1ggvpss\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"iv7U2i_zM\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLFDuW97WYP,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idFDuW97WYP);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"after-lesley-s-premature-hearing-loss-she-quickly-took-action\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"CJjNQUQu2\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"tjMDmOUVN\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:387.5,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-uoclmj framer-8wbip8\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"tjMDmOUVN\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ts178u\",layoutDependency:layoutDependency,layoutId:\"UOs5j_rq_\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UOs5j_rq_\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"UOs5j_rq_\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"UOs5j_rq_\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"UOs5j_rq_\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- L\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idUOs5j_rq_,IwzBySJ9o:IwzBySJ9oUOs5j_rq_,OawFaLbl9:OawFaLbl9UOs5j_rq_,vKKROtRkL:vKKROtRkLUOs5j_rq_,x8nLgoyAD:x8nLgoyADUOs5j_rq_},index1)=>{OawFaLbl9UOs5j_rq_??=\"\";vKKROtRkLUOs5j_rq_??=\"\";x8nLgoyADUOs5j_rq_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UOs5j_rq_-${idUOs5j_rq_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADUOs5j_rq_},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13oy8vr\",layoutDependency:layoutDependency,layoutId:\"Vr14JQP_G\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oUOs5j_rq_)},className:\"framer-er850v\",layoutDependency:layoutDependency,layoutId:\"LRdUjAyLP\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ymi7qc\",layoutDependency:layoutDependency,layoutId:\"hjTAyz8Ty\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-32trbb\",layoutDependency:layoutDependency,layoutId:\"WTWNpJGL1\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-1r7fch0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BXloFCdsQ\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9UOs5j_rq_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-p583ne\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"hEenvnWrp\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLUOs5j_rq_,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idUOs5j_rq_);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"martin-now-has-confidence-in-his-hearing\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"TFZkBaXM6\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"KxrPPyKhQ\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:387.5,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-1a55nr7 framer-8wbip8\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"KxrPPyKhQ\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-frdfds\",layoutDependency:layoutDependency,layoutId:\"Sumo8osaX\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Sumo8osaX\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Sumo8osaX\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"Sumo8osaX\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"Sumo8osaX\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- M\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idSumo8osaX,IwzBySJ9o:IwzBySJ9oSumo8osaX,OawFaLbl9:OawFaLbl9Sumo8osaX,vKKROtRkL:vKKROtRkLSumo8osaX,x8nLgoyAD:x8nLgoyADSumo8osaX},index2)=>{OawFaLbl9Sumo8osaX??=\"\";vKKROtRkLSumo8osaX??=\"\";x8nLgoyADSumo8osaX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Sumo8osaX-${idSumo8osaX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADSumo8osaX},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18n5da1\",layoutDependency:layoutDependency,layoutId:\"r7GGCAAf9\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oSumo8osaX)},className:\"framer-1602712\",layoutDependency:layoutDependency,layoutId:\"C57ruWUP_\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iatipy\",layoutDependency:layoutDependency,layoutId:\"vD41gcwuh\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-art599\",layoutDependency:layoutDependency,layoutId:\"rdUuYdUXl\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-1hzj7zt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u7RedUH4M\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9Sumo8osaX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-3pvemp\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"FY8aCmHEd\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLSumo8osaX,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idSumo8osaX);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"here-s-how-charlotte-broke-old-patterns\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"Fan8QMELg\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"KoxCtW96Y\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:387.5,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-1lu8an8 framer-8wbip8\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"KoxCtW96Y\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1op79z3\",layoutDependency:layoutDependency,layoutId:\"cUXTtAxmJ\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cUXTtAxmJ\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"cUXTtAxmJ\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"cUXTtAxmJ\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"cUXTtAxmJ\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- C\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idcUXTtAxmJ,IwzBySJ9o:IwzBySJ9ocUXTtAxmJ,OawFaLbl9:OawFaLbl9cUXTtAxmJ,vKKROtRkL:vKKROtRkLcUXTtAxmJ,x8nLgoyAD:x8nLgoyADcUXTtAxmJ},index3)=>{OawFaLbl9cUXTtAxmJ??=\"\";vKKROtRkLcUXTtAxmJ??=\"\";x8nLgoyADcUXTtAxmJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cUXTtAxmJ-${idcUXTtAxmJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADcUXTtAxmJ},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wamfjo\",layoutDependency:layoutDependency,layoutId:\"b1kG2FIOs\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9ocUXTtAxmJ)},className:\"framer-2koqay\",layoutDependency:layoutDependency,layoutId:\"Wt_9A_yK3\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7z3r8n\",layoutDependency:layoutDependency,layoutId:\"qS_vzZICR\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sv2rij\",layoutDependency:layoutDependency,layoutId:\"c_XzEPpbO\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-c29sd2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lTL5dAQwo\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9cUXTtAxmJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-xyztq\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"u58wgp5yo\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLcUXTtAxmJ,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idcUXTtAxmJ);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"michael-s-top-notch-hearing-advice\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"evdnVe_U_\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"Gi59anise\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:400,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-4za2sn framer-8wbip8\",\"data-framer-name\":\"Image 5\",layoutDependency:layoutDependency,layoutId:\"Gi59anise\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iv34h7\",layoutDependency:layoutDependency,layoutId:\"acZl6ZHr6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"acZl6ZHr6\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"acZl6ZHr6\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"acZl6ZHr6\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"acZl6ZHr6\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- Mic\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idacZl6ZHr6,IwzBySJ9o:IwzBySJ9oacZl6ZHr6,OawFaLbl9:OawFaLbl9acZl6ZHr6,vKKROtRkL:vKKROtRkLacZl6ZHr6,x8nLgoyAD:x8nLgoyADacZl6ZHr6},index4)=>{OawFaLbl9acZl6ZHr6??=\"\";vKKROtRkLacZl6ZHr6??=\"\";x8nLgoyADacZl6ZHr6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`acZl6ZHr6-${idacZl6ZHr6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADacZl6ZHr6},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r9myrl\",layoutDependency:layoutDependency,layoutId:\"lLC3CFyc1\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oacZl6ZHr6)},className:\"framer-fyw0ce\",layoutDependency:layoutDependency,layoutId:\"rnphcgeXu\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k300qn\",layoutDependency:layoutDependency,layoutId:\"VZrv1pG6Y\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jaws4w\",layoutDependency:layoutDependency,layoutId:\"fZA9xqD5B\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-zwfqw8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lEEFWgYUO\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9acZl6ZHr6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-8tvtqn\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"ltQ2zr6oc\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLacZl6ZHr6,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idacZl6ZHr6);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"judy-had-nothing-to-fear\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"p7_R14BSv\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"KcFg1cfNA\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:400,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-132rxwu framer-8wbip8\",\"data-framer-name\":\"Image 6\",layoutDependency:layoutDependency,layoutId:\"KcFg1cfNA\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14xvbt8\",layoutDependency:layoutDependency,layoutId:\"ZMDEAZsH5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZMDEAZsH5\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ZMDEAZsH5\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"ZMDEAZsH5\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"ZMDEAZsH5\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- judy\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idZMDEAZsH5,IwzBySJ9o:IwzBySJ9oZMDEAZsH5,OawFaLbl9:OawFaLbl9ZMDEAZsH5,vKKROtRkL:vKKROtRkLZMDEAZsH5,x8nLgoyAD:x8nLgoyADZMDEAZsH5},index5)=>{OawFaLbl9ZMDEAZsH5??=\"\";vKKROtRkLZMDEAZsH5??=\"\";x8nLgoyADZMDEAZsH5??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZMDEAZsH5-${idZMDEAZsH5}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADZMDEAZsH5},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5162w4\",layoutDependency:layoutDependency,layoutId:\"U3Wi0HslK\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oZMDEAZsH5)},className:\"framer-1fd7tji\",layoutDependency:layoutDependency,layoutId:\"CPUywvA_X\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1045bfi\",layoutDependency:layoutDependency,layoutId:\"Yv_PEzt6g\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-syubsu\",layoutDependency:layoutDependency,layoutId:\"DF116hPLK\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-1vx6hsc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o943aBgkl\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9ZMDEAZsH5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-1st07fq\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"T6yrFIQss\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLZMDEAZsH5,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idZMDEAZsH5);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"kathy-s-evolution-with-hearing-aids\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"DaWKuZ512\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"YhJxVdS27\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:387.5,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-1x8v7a0 framer-8wbip8\",\"data-framer-name\":\"Image 7\",layoutDependency:layoutDependency,layoutId:\"YhJxVdS27\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eiitta\",layoutDependency:layoutDependency,layoutId:\"HgOVwzdHp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HgOVwzdHp\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"HgOVwzdHp\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"HgOVwzdHp\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"HgOVwzdHp\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- kathy\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({id:idHgOVwzdHp,IwzBySJ9o:IwzBySJ9oHgOVwzdHp,OawFaLbl9:OawFaLbl9HgOVwzdHp,vKKROtRkL:vKKROtRkLHgOVwzdHp,x8nLgoyAD:x8nLgoyADHgOVwzdHp},index6)=>{OawFaLbl9HgOVwzdHp??=\"\";vKKROtRkLHgOVwzdHp??=\"\";x8nLgoyADHgOVwzdHp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HgOVwzdHp-${idHgOVwzdHp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADHgOVwzdHp},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u2swii\",layoutDependency:layoutDependency,layoutId:\"Jn2ziZXPm\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oHgOVwzdHp)},className:\"framer-78bpjg\",layoutDependency:layoutDependency,layoutId:\"G2N4mzoBL\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qnsajy\",layoutDependency:layoutDependency,layoutId:\"PWXsFG1vR\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xyh4su\",layoutDependency:layoutDependency,layoutId:\"Du7YscUAU\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-1kwsub4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H3NAlxzG7\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9HgOVwzdHp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-1e5gxm0\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"D6fXGG64x\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLHgOVwzdHp,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idHgOVwzdHp);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"charlie-s-sound-advice-for-anyone-considering-hearing-aids\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"NVU8uKqks\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"HwjCd3NLy\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:387.5,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-1ysvx2m framer-8wbip8\",\"data-framer-name\":\"Image 8\",layoutDependency:layoutDependency,layoutId:\"HwjCd3NLy\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6iclmm\",layoutDependency:layoutDependency,layoutId:\"Asgejq4kH\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Asgejq4kH\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Asgejq4kH\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"Asgejq4kH\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"Asgejq4kH\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- charli\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({id:idAsgejq4kH,IwzBySJ9o:IwzBySJ9oAsgejq4kH,OawFaLbl9:OawFaLbl9Asgejq4kH,vKKROtRkL:vKKROtRkLAsgejq4kH,x8nLgoyAD:x8nLgoyADAsgejq4kH},index7)=>{OawFaLbl9Asgejq4kH??=\"\";vKKROtRkLAsgejq4kH??=\"\";x8nLgoyADAsgejq4kH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Asgejq4kH-${idAsgejq4kH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADAsgejq4kH},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lajd1m\",layoutDependency:layoutDependency,layoutId:\"SDM_kM_1Y\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oAsgejq4kH)},className:\"framer-9j20xn\",layoutDependency:layoutDependency,layoutId:\"yCOum6TmP\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y7zdim\",layoutDependency:layoutDependency,layoutId:\"Pi3flfUf1\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lylet7\",layoutDependency:layoutDependency,layoutId:\"Lj1ZnHX7d\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-fqxjo0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AA8EYPSL6\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9Asgejq4kH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-1ed26ay\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"jB70prnam\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLAsgejq4kH,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idAsgejq4kH);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"how-nancy-is-happier-than-ever-with-her-new-hearing-aids\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"eOt4P4thR\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"zfsoryRJk\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:387.5,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-sl36s0 framer-8wbip8\",\"data-framer-name\":\"Image 9\",layoutDependency:layoutDependency,layoutId:\"zfsoryRJk\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-knyb5b\",layoutDependency:layoutDependency,layoutId:\"AiIcYyFXY\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AiIcYyFXY\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"AiIcYyFXY\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"AiIcYyFXY\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"AiIcYyFXY\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- nan\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({id:idAiIcYyFXY,IwzBySJ9o:IwzBySJ9oAiIcYyFXY,OawFaLbl9:OawFaLbl9AiIcYyFXY,vKKROtRkL:vKKROtRkLAiIcYyFXY,x8nLgoyAD:x8nLgoyADAiIcYyFXY},index8)=>{OawFaLbl9AiIcYyFXY??=\"\";vKKROtRkLAiIcYyFXY??=\"\";x8nLgoyADAiIcYyFXY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AiIcYyFXY-${idAiIcYyFXY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADAiIcYyFXY},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ukv42x\",layoutDependency:layoutDependency,layoutId:\"t5DMs4gTp\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oAiIcYyFXY)},className:\"framer-oshly3\",layoutDependency:layoutDependency,layoutId:\"PcCWmIy96\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18131f6\",layoutDependency:layoutDependency,layoutId:\"OV6TaWoLd\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n4qr1z\",layoutDependency:layoutDependency,layoutId:\"LBGxNkgsh\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-su9fse\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KXt1pIUo6\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9AiIcYyFXY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-10lkw1s\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"YU5WHS0Hm\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLAiIcYyFXY,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idAiIcYyFXY);})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{x8nLgoyAD:\"you-will-be-very-satisfied-with-their-treatment\"},unresolvedPathSlugs:{x8nLgoyAD:{collectionId:\"fEcsJRIig\",collectionItemId:\"K5lgiNqJr\"}},webPageId:\"I1oaMUeG5\"},motionChild:true,nodeId:\"BB34_nG50\",openInNewTab:false,scopeId:\"m4ydxoPHZ\",children:/*#__PURE__*/_jsx(motion.a,{background:{alt:\"\",intrinsicHeight:400,intrinsicWidth:320,positionX:\"center\",positionY:\"center\"},className:\"framer-1kvuw0n framer-8wbip8\",\"data-framer-name\":\"Image 10\",layoutDependency:layoutDependency,layoutId:\"BB34_nG50\",style:{borderBottomLeftRadius:radiusForCorner(OP8Fp9jEZ,3),borderBottomRightRadius:radiusForCorner(OP8Fp9jEZ,2),borderTopLeftRadius:radiusForCorner(OP8Fp9jEZ,0),borderTopRightRadius:radiusForCorner(OP8Fp9jEZ,1)},whileHover:animation,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b49gyg\",layoutDependency:layoutDependency,layoutId:\"XC5dXyAsH\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XC5dXyAsH\",data:PatientStories,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"XC5dXyAsH\",name:\"IwzBySJ9o\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"OawFaLbl9\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"vKKROtRkL\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"x8nLgoyAD\",type:\"Identifier\"},{collection:\"XC5dXyAsH\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"XC5dXyAsH\",name:\"vKKROtRkL\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"- rober\"}],functionName:\"STARTS_WITH\",type:\"FunctionCall\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({id:idXC5dXyAsH,IwzBySJ9o:IwzBySJ9oXC5dXyAsH,OawFaLbl9:OawFaLbl9XC5dXyAsH,vKKROtRkL:vKKROtRkLXC5dXyAsH,x8nLgoyAD:x8nLgoyADXC5dXyAsH},index9)=>{OawFaLbl9XC5dXyAsH??=\"\";vKKROtRkLXC5dXyAsH??=\"\";x8nLgoyADXC5dXyAsH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XC5dXyAsH-${idXC5dXyAsH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{x8nLgoyAD:x8nLgoyADXC5dXyAsH},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fp3dqm\",layoutDependency:layoutDependency,layoutId:\"mFa_hwOPJ\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"300px\",...toResponsiveImage(IwzBySJ9oXC5dXyAsH)},className:\"framer-187isep\",layoutDependency:layoutDependency,layoutId:\"nn425lhH1\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10f1uay\",layoutDependency:layoutDependency,layoutId:\"I3yKktYLH\",style:{background:\"linear-gradient(180deg, rgba(37, 146, 172, 0.5) 0%, rgba(210, 111, 103, 0.5) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qqe090\",layoutDependency:layoutDependency,layoutId:\"kDEIgb_IZ\",style:{backgroundColor:\"rgba(23, 23, 23, 0.2)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1wch752\",\"data-styles-preset\":\"usZw0WMMX\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\"},children:\"Beth Was Very Happy with The Help She Received from Our Team\"})}),className:\"framer-jzxy85\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ponoj1HhY\",style:{\"--extracted-1of0zx5\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OawFaLbl9XC5dXyAsH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7T29vaCBCYWJ5LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oooh Baby\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"- Beth T.\"})}),className:\"framer-1t1l5ou\",fonts:[\"GF;Oooh Baby-regular\"],layoutDependency:layoutDependency,layoutId:\"tMRF0oR1N\",style:{\"--extracted-a0htzi\":\"var(--token-002b757c-50b8-4ee4-b83b-ad8dfe257345, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vKKROtRkLXC5dXyAsH,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idXC5dXyAsH);})})})})})})})],startFrom:d87Z7AFaJ,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({cDRK03rYT:{effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:2e3,effectsRotate:0,effectsScale:.9,playOffscreen:false}},Kv0e956RL:{arrowOptions:{arrowFill:\"rgba(38, 144, 171, 0.68)\",arrowGap:10,arrowPadding:-10,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgb(255, 255, 255)\",dotsBlur:0,dotsFill:\"var(--token-fae910b1-58dd-4ef5-8c3c-a28d85da034c, rgb(127, 131, 138))\",dotsGap:5,dotsInset:-40,dotSize:6,dotsOpacity:.4,dotsPadding:6,dotsRadius:50,showProgressDots:true}},UkOfyrQll:{effectsOptions:{effectsHover:true,effectsOpacity:.5,effectsPerspective:2e3,effectsRotate:30,effectsScale:.9,playOffscreen:false}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SZuQh.framer-8wbip8, .framer-SZuQh .framer-8wbip8 { display: block; }\",\".framer-SZuQh.framer-1nrv7xk { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 360px; }\",\".framer-SZuQh .framer-ckqyfu-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-SZuQh .framer-fkjpz7, .framer-SZuQh .framer-uoclmj, .framer-SZuQh .framer-1a55nr7, .framer-SZuQh .framer-1lu8an8, .framer-SZuQh .framer-4za2sn, .framer-SZuQh .framer-132rxwu, .framer-SZuQh .framer-1x8v7a0, .framer-SZuQh .framer-1ysvx2m, .framer-SZuQh .framer-sl36s0, .framer-SZuQh .framer-1kvuw0n { align-content: center; align-items: center; aspect-ratio: 0.75 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 300px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SZuQh .framer-opdrfm, .framer-SZuQh .framer-1ts178u, .framer-SZuQh .framer-frdfds, .framer-SZuQh .framer-1op79z3, .framer-SZuQh .framer-1iv34h7, .framer-SZuQh .framer-14xvbt8, .framer-SZuQh .framer-1eiitta, .framer-SZuQh .framer-6iclmm, .framer-SZuQh .framer-knyb5b, .framer-SZuQh .framer-1b49gyg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-SZuQh .framer-ece3i2, .framer-SZuQh .framer-13oy8vr, .framer-SZuQh .framer-18n5da1, .framer-SZuQh .framer-wamfjo, .framer-SZuQh .framer-r9myrl, .framer-SZuQh .framer-5162w4, .framer-SZuQh .framer-1u2swii, .framer-SZuQh .framer-1lajd1m, .framer-SZuQh .framer-ukv42x, .framer-SZuQh .framer-fp3dqm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-SZuQh .framer-tzfdq3, .framer-SZuQh .framer-er850v, .framer-SZuQh .framer-1602712, .framer-SZuQh .framer-2koqay, .framer-SZuQh .framer-fyw0ce, .framer-SZuQh .framer-1fd7tji, .framer-SZuQh .framer-78bpjg, .framer-SZuQh .framer-9j20xn, .framer-SZuQh .framer-oshly3, .framer-SZuQh .framer-187isep { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-SZuQh .framer-lvx92s, .framer-SZuQh .framer-1ymi7qc, .framer-SZuQh .framer-iatipy, .framer-SZuQh .framer-7z3r8n, .framer-SZuQh .framer-k300qn, .framer-SZuQh .framer-1045bfi, .framer-SZuQh .framer-1qnsajy, .framer-SZuQh .framer-y7zdim, .framer-SZuQh .framer-18131f6, .framer-SZuQh .framer-10f1uay { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SZuQh .framer-fjdxse, .framer-SZuQh .framer-32trbb, .framer-SZuQh .framer-art599, .framer-SZuQh .framer-sv2rij, .framer-SZuQh .framer-jaws4w, .framer-SZuQh .framer-syubsu, .framer-SZuQh .framer-1xyh4su, .framer-SZuQh .framer-lylet7, .framer-SZuQh .framer-1n4qr1z, .framer-SZuQh .framer-qqe090 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-end; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-SZuQh .framer-nnln3a, .framer-SZuQh .framer-1r7fch0, .framer-SZuQh .framer-1hzj7zt, .framer-SZuQh .framer-c29sd2, .framer-SZuQh .framer-zwfqw8, .framer-SZuQh .framer-1vx6hsc, .framer-SZuQh .framer-1kwsub4, .framer-SZuQh .framer-fqxjo0, .framer-SZuQh .framer-su9fse, .framer-SZuQh .framer-jzxy85 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SZuQh .framer-1ggvpss, .framer-SZuQh .framer-p583ne, .framer-SZuQh .framer-3pvemp, .framer-SZuQh .framer-xyztq, .framer-SZuQh .framer-8tvtqn, .framer-SZuQh .framer-1st07fq, .framer-SZuQh .framer-1e5gxm0, .framer-SZuQh .framer-1ed26ay, .framer-SZuQh .framer-10lkw1s, .framer-SZuQh .framer-1t1l5ou { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SZuQh.framer-1nrv7xk, .framer-SZuQh .framer-fkjpz7, .framer-SZuQh .framer-opdrfm, .framer-SZuQh .framer-ece3i2, .framer-SZuQh .framer-tzfdq3, .framer-SZuQh .framer-lvx92s, .framer-SZuQh .framer-fjdxse, .framer-SZuQh .framer-uoclmj, .framer-SZuQh .framer-1ts178u, .framer-SZuQh .framer-13oy8vr, .framer-SZuQh .framer-er850v, .framer-SZuQh .framer-1ymi7qc, .framer-SZuQh .framer-32trbb, .framer-SZuQh .framer-1a55nr7, .framer-SZuQh .framer-frdfds, .framer-SZuQh .framer-18n5da1, .framer-SZuQh .framer-1602712, .framer-SZuQh .framer-iatipy, .framer-SZuQh .framer-art599, .framer-SZuQh .framer-1lu8an8, .framer-SZuQh .framer-1op79z3, .framer-SZuQh .framer-wamfjo, .framer-SZuQh .framer-2koqay, .framer-SZuQh .framer-7z3r8n, .framer-SZuQh .framer-sv2rij, .framer-SZuQh .framer-4za2sn, .framer-SZuQh .framer-1iv34h7, .framer-SZuQh .framer-r9myrl, .framer-SZuQh .framer-fyw0ce, .framer-SZuQh .framer-k300qn, .framer-SZuQh .framer-jaws4w, .framer-SZuQh .framer-132rxwu, .framer-SZuQh .framer-14xvbt8, .framer-SZuQh .framer-5162w4, .framer-SZuQh .framer-1fd7tji, .framer-SZuQh .framer-1045bfi, .framer-SZuQh .framer-syubsu, .framer-SZuQh .framer-1x8v7a0, .framer-SZuQh .framer-1eiitta, .framer-SZuQh .framer-1u2swii, .framer-SZuQh .framer-78bpjg, .framer-SZuQh .framer-1qnsajy, .framer-SZuQh .framer-1xyh4su, .framer-SZuQh .framer-1ysvx2m, .framer-SZuQh .framer-6iclmm, .framer-SZuQh .framer-1lajd1m, .framer-SZuQh .framer-9j20xn, .framer-SZuQh .framer-y7zdim, .framer-SZuQh .framer-lylet7, .framer-SZuQh .framer-sl36s0, .framer-SZuQh .framer-knyb5b, .framer-SZuQh .framer-ukv42x, .framer-SZuQh .framer-oshly3, .framer-SZuQh .framer-18131f6, .framer-SZuQh .framer-1n4qr1z, .framer-SZuQh .framer-1kvuw0n, .framer-SZuQh .framer-1b49gyg, .framer-SZuQh .framer-fp3dqm, .framer-SZuQh .framer-187isep, .framer-SZuQh .framer-10f1uay, .framer-SZuQh .framer-qqe090 { gap: 0px; } .framer-SZuQh.framer-1nrv7xk > *, .framer-SZuQh .framer-fkjpz7 > *, .framer-SZuQh .framer-tzfdq3 > *, .framer-SZuQh .framer-lvx92s > *, .framer-SZuQh .framer-fjdxse > *, .framer-SZuQh .framer-uoclmj > *, .framer-SZuQh .framer-er850v > *, .framer-SZuQh .framer-1ymi7qc > *, .framer-SZuQh .framer-32trbb > *, .framer-SZuQh .framer-1a55nr7 > *, .framer-SZuQh .framer-1602712 > *, .framer-SZuQh .framer-iatipy > *, .framer-SZuQh .framer-art599 > *, .framer-SZuQh .framer-1lu8an8 > *, .framer-SZuQh .framer-2koqay > *, .framer-SZuQh .framer-7z3r8n > *, .framer-SZuQh .framer-sv2rij > *, .framer-SZuQh .framer-4za2sn > *, .framer-SZuQh .framer-fyw0ce > *, .framer-SZuQh .framer-k300qn > *, .framer-SZuQh .framer-jaws4w > *, .framer-SZuQh .framer-132rxwu > *, .framer-SZuQh .framer-1fd7tji > *, .framer-SZuQh .framer-1045bfi > *, .framer-SZuQh .framer-syubsu > *, .framer-SZuQh .framer-1x8v7a0 > *, .framer-SZuQh .framer-78bpjg > *, .framer-SZuQh .framer-1qnsajy > *, .framer-SZuQh .framer-1xyh4su > *, .framer-SZuQh .framer-1ysvx2m > *, .framer-SZuQh .framer-9j20xn > *, .framer-SZuQh .framer-y7zdim > *, .framer-SZuQh .framer-lylet7 > *, .framer-SZuQh .framer-sl36s0 > *, .framer-SZuQh .framer-oshly3 > *, .framer-SZuQh .framer-18131f6 > *, .framer-SZuQh .framer-1n4qr1z > *, .framer-SZuQh .framer-1kvuw0n > *, .framer-SZuQh .framer-187isep > *, .framer-SZuQh .framer-10f1uay > *, .framer-SZuQh .framer-qqe090 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SZuQh.framer-1nrv7xk > :first-child, .framer-SZuQh .framer-fkjpz7 > :first-child, .framer-SZuQh .framer-opdrfm > :first-child, .framer-SZuQh .framer-tzfdq3 > :first-child, .framer-SZuQh .framer-lvx92s > :first-child, .framer-SZuQh .framer-fjdxse > :first-child, .framer-SZuQh .framer-uoclmj > :first-child, .framer-SZuQh .framer-1ts178u > :first-child, .framer-SZuQh .framer-er850v > :first-child, .framer-SZuQh .framer-1ymi7qc > :first-child, .framer-SZuQh .framer-32trbb > :first-child, .framer-SZuQh .framer-1a55nr7 > :first-child, .framer-SZuQh .framer-frdfds > :first-child, .framer-SZuQh .framer-1602712 > :first-child, .framer-SZuQh .framer-iatipy > :first-child, .framer-SZuQh .framer-art599 > :first-child, .framer-SZuQh .framer-1lu8an8 > :first-child, .framer-SZuQh .framer-1op79z3 > :first-child, .framer-SZuQh .framer-2koqay > :first-child, .framer-SZuQh .framer-7z3r8n > :first-child, .framer-SZuQh .framer-sv2rij > :first-child, .framer-SZuQh .framer-4za2sn > :first-child, .framer-SZuQh .framer-1iv34h7 > :first-child, .framer-SZuQh .framer-fyw0ce > :first-child, .framer-SZuQh .framer-k300qn > :first-child, .framer-SZuQh .framer-jaws4w > :first-child, .framer-SZuQh .framer-132rxwu > :first-child, .framer-SZuQh .framer-14xvbt8 > :first-child, .framer-SZuQh .framer-1fd7tji > :first-child, .framer-SZuQh .framer-1045bfi > :first-child, .framer-SZuQh .framer-syubsu > :first-child, .framer-SZuQh .framer-1x8v7a0 > :first-child, .framer-SZuQh .framer-1eiitta > :first-child, .framer-SZuQh .framer-78bpjg > :first-child, .framer-SZuQh .framer-1qnsajy > :first-child, .framer-SZuQh .framer-1xyh4su > :first-child, .framer-SZuQh .framer-1ysvx2m > :first-child, .framer-SZuQh .framer-6iclmm > :first-child, .framer-SZuQh .framer-9j20xn > :first-child, .framer-SZuQh .framer-y7zdim > :first-child, .framer-SZuQh .framer-lylet7 > :first-child, .framer-SZuQh .framer-sl36s0 > :first-child, .framer-SZuQh .framer-knyb5b > :first-child, .framer-SZuQh .framer-oshly3 > :first-child, .framer-SZuQh .framer-18131f6 > :first-child, .framer-SZuQh .framer-1n4qr1z > :first-child, .framer-SZuQh .framer-1kvuw0n > :first-child, .framer-SZuQh .framer-1b49gyg > :first-child, .framer-SZuQh .framer-187isep > :first-child, .framer-SZuQh .framer-10f1uay > :first-child, .framer-SZuQh .framer-qqe090 > :first-child { margin-top: 0px; } .framer-SZuQh.framer-1nrv7xk > :last-child, .framer-SZuQh .framer-fkjpz7 > :last-child, .framer-SZuQh .framer-opdrfm > :last-child, .framer-SZuQh .framer-tzfdq3 > :last-child, .framer-SZuQh .framer-lvx92s > :last-child, .framer-SZuQh .framer-fjdxse > :last-child, .framer-SZuQh .framer-uoclmj > :last-child, .framer-SZuQh .framer-1ts178u > :last-child, .framer-SZuQh .framer-er850v > :last-child, .framer-SZuQh .framer-1ymi7qc > :last-child, .framer-SZuQh .framer-32trbb > :last-child, .framer-SZuQh .framer-1a55nr7 > :last-child, .framer-SZuQh .framer-frdfds > :last-child, .framer-SZuQh .framer-1602712 > :last-child, .framer-SZuQh .framer-iatipy > :last-child, .framer-SZuQh .framer-art599 > :last-child, .framer-SZuQh .framer-1lu8an8 > :last-child, .framer-SZuQh .framer-1op79z3 > :last-child, .framer-SZuQh .framer-2koqay > :last-child, .framer-SZuQh .framer-7z3r8n > :last-child, .framer-SZuQh .framer-sv2rij > :last-child, .framer-SZuQh .framer-4za2sn > :last-child, .framer-SZuQh .framer-1iv34h7 > :last-child, .framer-SZuQh .framer-fyw0ce > :last-child, .framer-SZuQh .framer-k300qn > :last-child, .framer-SZuQh .framer-jaws4w > :last-child, .framer-SZuQh .framer-132rxwu > :last-child, .framer-SZuQh .framer-14xvbt8 > :last-child, .framer-SZuQh .framer-1fd7tji > :last-child, .framer-SZuQh .framer-1045bfi > :last-child, .framer-SZuQh .framer-syubsu > :last-child, .framer-SZuQh .framer-1x8v7a0 > :last-child, .framer-SZuQh .framer-1eiitta > :last-child, .framer-SZuQh .framer-78bpjg > :last-child, .framer-SZuQh .framer-1qnsajy > :last-child, .framer-SZuQh .framer-1xyh4su > :last-child, .framer-SZuQh .framer-1ysvx2m > :last-child, .framer-SZuQh .framer-6iclmm > :last-child, .framer-SZuQh .framer-9j20xn > :last-child, .framer-SZuQh .framer-y7zdim > :last-child, .framer-SZuQh .framer-lylet7 > :last-child, .framer-SZuQh .framer-sl36s0 > :last-child, .framer-SZuQh .framer-knyb5b > :last-child, .framer-SZuQh .framer-oshly3 > :last-child, .framer-SZuQh .framer-18131f6 > :last-child, .framer-SZuQh .framer-1n4qr1z > :last-child, .framer-SZuQh .framer-1kvuw0n > :last-child, .framer-SZuQh .framer-1b49gyg > :last-child, .framer-SZuQh .framer-187isep > :last-child, .framer-SZuQh .framer-10f1uay > :last-child, .framer-SZuQh .framer-qqe090 > :last-child { margin-bottom: 0px; } .framer-SZuQh .framer-opdrfm > *, .framer-SZuQh .framer-1ts178u > *, .framer-SZuQh .framer-frdfds > *, .framer-SZuQh .framer-1op79z3 > *, .framer-SZuQh .framer-1iv34h7 > *, .framer-SZuQh .framer-14xvbt8 > *, .framer-SZuQh .framer-1eiitta > *, .framer-SZuQh .framer-6iclmm > *, .framer-SZuQh .framer-knyb5b > *, .framer-SZuQh .framer-1b49gyg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SZuQh .framer-ece3i2 > *, .framer-SZuQh .framer-13oy8vr > *, .framer-SZuQh .framer-18n5da1 > *, .framer-SZuQh .framer-wamfjo > *, .framer-SZuQh .framer-r9myrl > *, .framer-SZuQh .framer-5162w4 > *, .framer-SZuQh .framer-1u2swii > *, .framer-SZuQh .framer-1lajd1m > *, .framer-SZuQh .framer-ukv42x > *, .framer-SZuQh .framer-fp3dqm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SZuQh .framer-ece3i2 > :first-child, .framer-SZuQh .framer-13oy8vr > :first-child, .framer-SZuQh .framer-18n5da1 > :first-child, .framer-SZuQh .framer-wamfjo > :first-child, .framer-SZuQh .framer-r9myrl > :first-child, .framer-SZuQh .framer-5162w4 > :first-child, .framer-SZuQh .framer-1u2swii > :first-child, .framer-SZuQh .framer-1lajd1m > :first-child, .framer-SZuQh .framer-ukv42x > :first-child, .framer-SZuQh .framer-fp3dqm > :first-child { margin-left: 0px; } .framer-SZuQh .framer-ece3i2 > :last-child, .framer-SZuQh .framer-13oy8vr > :last-child, .framer-SZuQh .framer-18n5da1 > :last-child, .framer-SZuQh .framer-wamfjo > :last-child, .framer-SZuQh .framer-r9myrl > :last-child, .framer-SZuQh .framer-5162w4 > :last-child, .framer-SZuQh .framer-1u2swii > :last-child, .framer-SZuQh .framer-1lajd1m > :last-child, .framer-SZuQh .framer-ukv42x > :last-child, .framer-SZuQh .framer-fp3dqm > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kv0e956RL\":{\"layout\":[\"fixed\",\"fixed\"]},\"cDRK03rYT\":{\"layout\":[\"fixed\",\"fixed\"]},\"UkOfyrQll\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"h7EWw5_YT\":\"direction\",\"d87Z7AFaJ\":\"startImage\",\"EnZrCLlYu\":\"autoPlay\",\"OkK3C1FUw\":\"gap\",\"OP8Fp9jEZ\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerm4ydxoPHZ=withCSS(Component,css,\"framer-SZuQh\");export default Framerm4ydxoPHZ;Framerm4ydxoPHZ.displayName=\"Interactive/Carousel 1\";Framerm4ydxoPHZ.defaultProps={height:500,width:360};addPropertyControls(Framerm4ydxoPHZ,{variant:{options:[\"VnSZYv9l4\",\"Kv0e956RL\",\"cDRK03rYT\",\"UkOfyrQll\"],optionTitles:[\"Default\",\"Dots\",\"Scale\",\"Fade\"],title:\"Variant\",type:ControlType.Enum},h7EWw5_YT:SlideshowControls?.[\"direction\"]&&{...SlideshowControls[\"direction\"],defaultValue:\"left\",description:undefined,hidden:undefined,title:\"Direction\"},d87Z7AFaJ:{defaultValue:1,displayStepper:true,max:10,min:0,title:\"Start Image\",type:ControlType.Number},EnZrCLlYu:{defaultValue:true,title:\"Auto Play\",type:ControlType.Boolean},OkK3C1FUw:{defaultValue:10,min:0,title:\"Gap\",type:ControlType.Number},OP8Fp9jEZ:{defaultValue:\"10px\",title:\"Radius\",type:ControlType.BorderRadius}});addFonts(Framerm4ydxoPHZ,[{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:\"Oooh Baby\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ooohbaby/v4/2sDcZGJWgJTT2Jf76xQDam-4C7wFZQ.woff2\",weight:\"400\"}]},...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm4ydxoPHZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"500\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"360\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"h7EWw5_YT\\\":\\\"direction\\\",\\\"d87Z7AFaJ\\\":\\\"startImage\\\",\\\"EnZrCLlYu\\\":\\\"autoPlay\\\",\\\"OkK3C1FUw\\\":\\\"gap\\\",\\\"OP8Fp9jEZ\\\":\\\"radius\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kv0e956RL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cDRK03rYT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UkOfyrQll\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m4ydxoPHZ.map"],
  "mappings": "ymBAA6C,IAAMA,GAAU,IAAI,OAAO,UAAW,SAAgB,SAASC,IAAmB,CAAC,GAAG,CAACD,GAAU,EAAE,OAAO,GAAK,CAACE,EAAUC,CAAY,EAAEC,EAAS,CAAC,SAAS,MAAM,EAAE,UAAU,IAAI,CAAC,IAAMC,EAAmB,IAAIF,EAAa,CAAC,SAAS,MAAM,EAAE,gBAAS,iBAAiB,mBAAmBE,EAAmB,EAAK,EAAQ,IAAI,CAAC,SAAS,oBAAoB,mBAAmBA,CAAkB,CAAE,CAAE,EAAE,CAAC,CAAC,EAASH,CAAU,CCAoE,SAASI,GAAiBC,EAAQC,EAAW,CAAC,IAAIC,EAAyBC,EAAmB,IAAI,QAAQ,CAACC,EAAQC,IAAS,CAACH,EAAmBE,EAAQH,EAAW,OAAO,iBAAiB,QAAQ,IAAII,CAAM,EAC3tB,IAAMC,EAAQN,EAAQ,QAAWM,GAAQF,EAAQE,CAAO,CAAE,CAAC,EAAE,MAAM,IAAI,CAAC,CAAC,EACrEA,EAAQN,EAAQ,QAAQ,cAAO,eAAeA,EAAQ,UAAU,CAAC,KAAK,CAAC,OAAOM,CAAQ,EAAE,IAAIC,EAAK,CAAc,GAAbD,EAAQC,EAAQA,IAAO,KAAK,CAClIN,EAAW,MAAM,EAAE,MAAO,CAACC,EAAmBK,CAAI,CAAE,EAAE,aAAa,EAAI,CAAC,EAASJ,CAAmB,CAEpG,IAAMK,GAAU,KAaE,SAARC,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,CAAC,EAAE,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,GAAe,WAAAC,GAAW,aAAAC,EAAa,cAAAC,GAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,GAAgB,kBAAAC,GAAkB,aAAAC,GAAa,aAAAC,GAAa,gBAAAC,EAAgB,MAAAC,EAAK,EAAEtB,EAAW,CAAC,eAAAuB,GAAe,aAAAC,GAAa,cAAAC,GAAc,mBAAAC,GAAmB,aAAAC,GAAa,cAAAC,EAAa,EAAExB,EAAoB,CAAC,YAAAyB,EAAY,SAAAC,GAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEjB,EAAiB,CAAC,kBAAAkB,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,EAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE7B,GAAkB,CAAC,iBAAA8B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAEtC,EAAsBuC,GAAalD,GAAe,GAAGC,EAAU,MAAMC,CAAY,MAAMC,EAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAEl8BoD,EAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,EAAc9D,EAAM,OAAO,OAAO,EAAQ+D,GAAYC,GAAS,MAAMF,CAAa,EAAE,EAAQG,EAAa/D,IAAY,QAAQA,IAAY,QAAcgE,GAAWhE,IAAY,SAASA,IAAY,SAElM,GAAG,CAAC6D,GAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,GAAUC,GAAO,IAAI,EAAQC,GAAYC,GAAQ,IAAYd,EAAc,IAAIe,IAAQ,CAAC,QAAQ,IAAI,EAAE,EAAI,CAACf,CAAa,CAAC,EAAQgB,GAAWJ,GAAO,MAAS,EAAO,CAACK,EAAKC,EAAO,EAAEC,EAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,KAAK,eAAe,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,EAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,EAAS7E,CAAe,EAA+B,CAACkF,GAAYC,EAAc,EAAEN,EAAS,EAAK,EAA8B,CAACO,EAAWC,EAAa,EAAER,EAAS,EAAK,EAExjBS,GAAc,CAAC,EAAMC,EAAY,EAAK/B,IAAU+B,EAAY,GAEhE,IAAMC,EAAQC,GAAY,IAAI,CAAC,IAAMC,EAAWnB,GAAY,CAAC,EAAE,QAAcoB,EAAUpB,GAAYb,EAAc,OAAO,CAAC,EAAE,QAAQ,GAAGC,IAAaU,GAAU,QAAQ,CAAC,IAAMuB,EAAa/B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBwB,EAAMH,EAAW7B,EAAa6B,EAAW,WAAWA,EAAW,UAAU,EAAiII,IAArHH,EAAU9B,EAAa8B,EAAU,WAAWA,EAAU,YAAYA,EAAU,UAAUA,EAAU,aAAa,GAA2BE,EAAM1F,EAAU4F,GAASL,EAAW7B,EAAa6B,EAAW,YAAYA,EAAW,aAAa,EAAQM,GAAUN,EAAWA,EAAW,YAAY,EAAQO,GAAWP,EAAWA,EAAW,aAAa,EAAQQ,GAAerC,EAAa,KAAK,IAAI,SAAS,gBAAgB,aAAa,EAAEsC,GAAO,YAAY,EAAE9B,GAAU,QAAQ,WAAW,EAAE,KAAK,IAAI,SAAS,gBAAgB,cAAc,EAAE8B,GAAO,aAAa,EAAE9B,GAAU,QAAQ,YAAY,EAAE+B,EAAgB,IAAIxB,GAAQ,CAAC,OAAOgB,EAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,GAAW,eAAAC,EAAc,CAAC,CAAC,CAAE,CAAC,EAAE,CAACvC,EAAW,CAAC,EAAQ0C,EAAgBZ,GAAY,SAAS,CAAC,IAAMvG,EAAW,IAAI,gBAGxmCwG,EAAWnB,GAAY,CAAC,EAAQoB,EAAUpB,GAAYb,EAAc,OAAO,CAAC,EAAE,GAAG,CAACF,IAAW,CAACkC,EAAW,SAAS,CAACC,EAAU,SAAS,GAAG,CAAC,MAAM,QAAQ,IAAI,CAAC3G,GAAiB0G,EAAWxG,CAAU,EAAEF,GAAiB2G,EAAUzG,CAAU,CAAC,CAAC,CAAE,MAAM,CAACA,EAAW,MAAM,CAAE,CAACoH,GAAM,KAAKd,CAAO,CAAE,EAAE,CAACA,CAAO,CAAC,EAGlTe,GAAgB,IAAI,CAAI5C,IAAY0C,EAAgB,CAAE,EAAE,CAAC1C,GAAYjD,CAAU,CAAC,EAGhF,IAAM8F,EAAclC,GAAO,EAAI,EAAE,GAAU,IAAYmC,GAAOpC,GAAU,QAAQ,CAAC,CAAC,YAAAqC,CAAW,IAAI,CAAI,CAACF,EAAc,UAAUE,EAAY,OAAOA,EAAY,UAASL,EAAgB,EAAED,EAAgB,IAAIf,GAAc,EAAI,CAAC,GAAGmB,EAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAE,GAAU,IAAI,CAAC,GAAGpB,EAAW,CAAC,IAAMuB,EAAM,WAAW,IAAIP,EAAgB,IAAIf,GAAc,EAAK,CAAC,EAAE,GAAG,EAAE,MAAM,IAAI,aAAasB,CAAK,CAAE,CAAC,EAAE,CAACvB,CAAU,CAAC,EAE5Z,IAAMwB,EAAWlD,GAAe,OAAamD,EAAarD,EAAS,EAAEmB,GAAM,SAAemC,EAAYnC,GAAM,KAAKxE,EAAU4G,EAAWlH,EAAUiH,EAAiB,CAACE,EAAYC,EAAc,EAAEpC,EAAShF,EAAU+G,CAAU,EAAO,CAACM,GAAWC,EAAa,EAAEtC,EAAS,EAAK,EAAyGuC,GAAc9C,GAAO,IAAI,EAAQ+C,GAASC,GAAUF,EAAa,EAAQG,GAAUC,GAAkB,GAAGH,GAAeI,GAAO3D,GAAW,EAAE,GAA+C4D,GAAKC,GAAed,CAAY,EAAuEe,GAAe/D,EAAa,CAAChE,GAAW8E,GAAM,UAAUxE,GAAK,CAACN,GAAW8E,GAAM,WAAWxE,GAAsD0H,GAAY,IAAIJ,GAAOT,EAAYF,EAAwIgB,GAActE,EAA8H,EAArHuE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,EAAQC,GAAK,CAACrB,EAAa,CAACA,EAAa,EAAEmB,CAAK,EAAE,OAAO,MAAMC,CAAO,EAAE,EAAEA,CAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEtB,EAAWI,CAAW,EAAQoB,GAAqBF,GAAK,EAAE,CAACtB,EAAWI,CAAW,EAAqHT,GAAgB,IAAI,CAAI5B,GAAM,WAAW,MAG94C,CAAC6B,EAAc,SAASpB,GAAYsC,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAAClD,EAAKkC,EAAaY,GAAOV,EAAWC,EAAYF,EAAY1B,CAAU,CAAC,EAG3G,IAAMiD,GAAY,IAAI,CAAI7E,GAAU,CAACG,IAAa,CAACgB,EAAK,QAAQuC,KAAqBQ,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAEhH,EAAiB,EAAMb,GAAiBgF,KAAoBzD,IAAegG,MAAY7C,GAAW,QAAQ,WAAW,IAAI,CAAC0B,EAAgB,IAAIa,GAAesB,GAAMA,EAAK,CAAC,CAAC,EAAEF,GAAY,CAAE,EAAEzH,GAAgB,GAAG,GAAG,EAAuC4H,GAAS,CAACC,EAAMC,EAAW,KAAQ,CAAK5E,GAA+H4E,EAAWtC,EAAgB,IAAIa,GAAesB,GAAMA,EAAKE,CAAK,CAAC,EAAOxB,GAAesB,GAAMA,EAAKE,CAAK,EAArNC,EAAWtC,EAAgB,IAAIa,GAAesB,GAAMA,EAAKE,CAAK,CAAC,EAAOxB,GAAesB,GAAMA,EAAKE,CAAK,CAAmH,EAAQE,GAAQlE,GAAO,CAAC,IAAMmE,EAAmBV,GAAK,EAAEtB,EAAWI,CAAW,EAAQ6B,EAAyBX,GAAK,EAAE,CAACtB,EAAWI,CAAW,EAAQ8B,EAAKrE,EAAMmE,EAAyBG,GAAatE,EAAM,KAAK,IAAIoE,CAAwB,EAAM/E,GAAuEsC,EAAgB,IAAIa,GAAesB,IAAMA,GAAKQ,EAAY,CAAC,EAAtH3C,EAAgB,IAAIa,GAAesB,IAAMA,GAAKO,CAAI,CAAC,CAAsE,EAEtjCE,GAAgB,IAAI,CAAC5C,EAAgB,IAAIe,GAAc,EAAI,CAAC,CAAE,EAAQ8B,GAAc,CAACC,EAAM,CAAC,OAAAC,EAAO,SAAAC,CAAQ,IAAI,CAAChD,EAAgB,IAAIe,GAAc,EAAK,CAAC,EAAE,IAAMkC,EAAWxF,EAAasF,EAAO,EAAEA,EAAO,EAAQG,GAAkB,IACxOC,GAAa1F,EAAauF,EAAS,EAAEA,EAAS,EAAQI,GAAaH,EAAW,CAAC1E,EAAK,KAAK,EAAQ8E,GAAaJ,EAAW1E,EAAK,KAAK,EAA6D+E,GAAiB,KAAK,IAAIL,CAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiB/E,EAAK,IAAI,EAAqFiF,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBd,GAAS,CAACoB,GAAiB,EAAI,EAAWL,GAAa,CAACD,GAAmBd,GAASoB,GAAiB,EAAI,GAA2EJ,IAAchB,GAASmB,GAAU,EAAI,EAAMF,IAAcjB,GAAS,CAACmB,GAAU,EAAI,EAAI,EAAgE,GAAU,IAAI,CAAC,GAAG,GAACpC,IAAWnC,GAAkB,OAAAiD,GAAY,EAAQ,IAAI3D,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAciC,GAAUnC,CAAU,CAAC,EAA8D,IAAIyE,GAAa,EAE9hCC,GAAiB,QAAQ,IAAIpJ,CAAU,OAAOP,CAAG,QAAQA,EAAIO,CAAU,MAI/E,QAAQ+D,EAAM,EAAEA,EAAMc,EAAYd,IAASa,GAAcA,GAAc,OAAO1B,GAAS,IAAIF,EAAc,CAACqG,EAAMC,IAAa,CAAC,IAAIC,EAAI,OAAGD,IAAa,IAAGC,EAAI1F,GAAY,CAAC,GAAMyF,IAAatG,EAAc,OAAO,IAAGuG,EAAI1F,GAAY,CAAC,GAAuBN,EAAKiG,GAAM,CAAC,IAAI3F,GAAYyF,CAAU,EAAE,SAASvF,EAAMuF,EAAW,KAAK,MAAMvF,EAAM,MAAMZ,GAAanD,EAAW,EAAEoJ,GAAwB,OAAO,OAAQjG,EAAkD,OAArCnD,EAAW,EAAEoJ,GAAiB,OAAc,KAAKnF,EAAK,MAAMoF,EAAM,YAAYrG,GAAe,OAAO,aAAaoE,GAAa,aAAa+B,KAAe,IAAI1J,EAAI,SAASqD,EAAS,aAAaK,EAAa,eAAe3C,GAAe,aAAaC,GAAa,cAAcC,GAAc,SAASqD,EAAMuF,CAAU,EAAEvF,EAAMuF,EAAW,IAAI,CAAE,CAAC,CAAC,EAE1vB,IAAMG,GAActG,EAAa,WAAW,YAAkBuG,GAAe1I,GAAU,EAAQ2I,GAAa,IAAI3I,GAAU,EAAQ4I,GAAeC,GAAM5I,GAAU,EAAEyI,EAAc,EAAQI,GAAa,IAAI7I,GAAgB8I,GAAS,mBAAmBN,EAAa,mBAAmBvI,EAAS,KAAK0I,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBzI,EAAS,KAAK4I,EAAY,KAElaE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG/H,GAAiB,CAAC,QAAQ,EAAE,EAAE,EAAEc,GAAe,OAAO,IAAKgH,GAAK,KAAkBzG,EAAK2G,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMhI,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY4H,GAAiB,gBAAgB1H,GAAkB,QAAQC,GAAY,QAAQ,IAAIsF,GAAQ,CAAC,EAAE,aAAaR,GAAa,qBAAqBC,GAAqB,MAAMxB,EAAW,MAAM,EAAE,IAAI3D,GAAQ,QAAQD,GAAY,aAAaa,EAAa,WAAWC,EAAU,EAAE,CAAC,CAAC,EAAMR,GAAS,IAAGqH,GAAc,eAAeA,GAAc,qBAAqB,QAAQrH,EAAQ,MAAO,CAAC,IAAMyH,GAAU9K,EAAY,CAAC,KAAK4D,EAAa,IAAI,IAAI,YAAYmF,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAEvB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQsD,GAAY3I,IAAgB,YAAYA,IAAgB,WAAWA,IAAgB,YAAkB4I,GAAe5I,IAAgB,eAAeA,IAAgB,cAAcA,IAAgB,eAAqB6I,GAAa7I,IAAgB,YAAYA,IAAgB,cAAoB8I,GAAc9I,IAAgB,aAAaA,IAAgB,eAAqB+I,GAAY/I,IAAgB,WAAWA,IAAgB,cAAcA,IAAgB,OAAO,OAAoB0B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGsH,GAAe,QAAQ9H,GAAa,gBAAgB/B,EAAYiJ,GAAS,OAAU,UAAUjJ,EAAYiJ,GAAS,OAAU,QAAQ9F,GAAM,OAAO,KAAK,EAAElF,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAACsF,GAAc,EAAI,EAAMzD,IAAa2D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMzD,IAAa2D,GAAqB,EAAI,CAAE,EAAE,YAAYiE,GAAO,CACloDA,EAAM,eAAe,EAAE9C,EAAgB,IAAIjB,GAAe,EAAI,CAAC,CAAE,EAAE,UAAU,IAAIiB,EAAgB,IAAIjB,GAAe,EAAK,CAAC,EAAE,IAAIiC,GAAc,SAAS,CAAcnD,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASxC,GAAS,UAAU,SAAS,aAAaV,GAAa,WAAW,OAAO,YAAYyC,EAAS,OAAOnC,EAAkB,EAAE,SAAsB4C,EAAKqH,EAAO,GAAG,CAAC,IAAIjH,GAAU,GAAG0G,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIlL,EAAI,WAAWD,EAAU,EAAE2D,EAAaL,EAASoE,GAAeE,GAAa,EAAE,EAAGjE,EAAkD,EAArCL,EAASoE,GAAeE,GAAe,cAAcjE,EAAa,MAAM,SAAS,eAAezC,KAAgB,GAAG,CAACoC,EAAS,cAAc,OAAU,OAAOvD,EAAYiF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGjE,EAAK,EAAE,SAASqE,EAAa,CAAC,CAAC,CAAC,EAAevB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGwH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcxH,EAAMuH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAczH,EAAa,MAAM,SAAS,eAAe1B,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB3C,GAAU,EAAE,WAAW,SAAS,MAAM6C,GAAa,IAAIH,GAAiBG,GAAa0I,GAAYxI,GAAgB,QAAQ,KAAKL,GAAiBG,GAAa4I,GAAavI,GAAiByI,GAAY,EAAE,QAAQ,MAAMjJ,GAAiBG,GAAa6I,GAAc1I,GAAkB2I,GAAY,EAAE,QAAQ,OAAOjJ,GAAiBG,GAAa2I,GAAevI,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ0C,GAAW,EAAErF,EAAS,EAAE,WAAWoB,GAAkB,SAAS,CAAcoD,EAAKqH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB9I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI2G,GAAS,GAAG,EAAI,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBvE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAegC,EAAKqH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB9I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI2G,GAAS,EAAE,EAAI,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBvE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwI,GAAK,OAAO,EAAezG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGuH,GAAmB,KAAK3H,EAAa,MAAMf,GAAU,IAAKe,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAaf,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAGwH,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBhL,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,GAAK,cAAc,EAAK,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyB+L,GAAoB/L,EAAU,CAAC,MAAM,CAAC,KAAKgM,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAahM,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAKgM,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAO/L,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAK+L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAahM,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAKgM,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAahM,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAKgM,EAAY,OAAO,MAAM,QAAQ,aAAahM,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAKgM,EAAY,OAAO,MAAM,cAAc,aAAahM,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAKgM,EAAY,OAAO,MAAM,SAAS,aAAahM,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAKgM,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAahM,EAAU,aAAa,eAAe,YAAY,EAAE,cAAc,CAAC,KAAKgM,EAAY,QAAQ,MAAM,YAAY,aAAa,OAAO,cAAc,QAAQ,aAAahM,EAAU,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKgM,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAahM,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAKgM,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAahM,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAKgM,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAO/L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAK+L,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO/L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK+L,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO/L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK+L,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO/L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAK+L,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAahM,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAKgM,EAAY,MAAM,MAAM,OAAO,OAAO/L,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKgM,EAAY,MAAM,MAAM,WAAW,OAAO/L,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK+L,EAAY,MAAM,MAAM,OAAO,OAAO/L,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK+L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAahM,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK+L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO/L,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAK+L,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAO/L,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAK+L,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAahM,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAK+L,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAO/L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAK+L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAK+L,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAK+L,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAK+L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAK+L,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAK+L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAK+L,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK+L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK+L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK+L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK+L,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK+L,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK+L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK+L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK+L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK+L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO/L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAM0L,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8BrH,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAA4B0G,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDhB,GAAM,CAACoB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B3B,GAAmB4B,GAAW,SAAmBnM,EAAMsK,EAAI,CAAC,GAAK,CAAC,SAAA8B,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAAlC,EAAM,KAAApF,EAAK,IAAAxE,EAAI,aAAA2H,EAAa,YAAAoE,GAAY,aAAArC,GAAa,SAAArG,EAAS,QAAA2I,GAAQ,eAAAjL,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAyC,GAAa,OAAAuI,GAAO,MAAA3H,EAAK,EAAE9E,EAExza0M,IAAa1H,GAAM,KAAKxE,GAAK0J,GAAmByC,EAAY,CAAC,CAAC3H,GAAM,KAAK,EAAEA,GAAM,OAAOA,GAAM,KAAKxE,EAAIwE,GAAM,MAAM,EAAE,IAAI4H,GAAKA,EAAIF,EAAW,EAE7IG,GAAQ,CAAChJ,GAAUuE,GAAaD,EAAawE,EAAY,CAAC,CAAClL,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQqL,GAAQ,CAACjJ,GAAUuE,GAAaD,EAAawE,EAAY,CAAClL,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQsL,GAAQ,CAAClJ,GAAUuE,GAAaD,EAAawE,EAAY,CAACpL,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQyL,GAAM,CAACnJ,GAAUuE,GAAaD,EAAawE,EAAY,CAACnL,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQyL,GAAW,CAACpJ,GAAUuE,GAAaD,EAAawE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQ/E,GAAU,CAAC/D,GAAUuE,GAAaD,EAAa+E,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE,GAAU,IAAI,CAAC,GAAI/E,GAAiB,OAAOA,GAAU,GAAG,SAASuF,GAAU,CAAC7C,EAAI,SAAS,aAAa,cAAc,CAAC6C,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMC,GAAWvJ,EAAS,UAAUuE,GAAaD,EAAa,CAACwE,EAAY,CAAC,EAAE3H,EAAK,eAAeqI,GAAIV,EAAY,CAAC,EAAEA,EAAY,CAAC,EAAE,EAAE,EAAEA,EAAY,CAAC,EAAE3H,EAAK,cAAc,EAAE,CAAC,SAAS,UAAU,QAAQ,CAAC,EAAE,OAAoBV,EAAKgJ,EAAY,CAAC,QAAQ,KAAK,SAAsBhJ,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,KAAQ,EAAa,SAAsByI,GAAanD,EAAM,CAAC,IAAIE,EAAI,IAAI8B,EAAS,QAAQ,MAAM,CAAC,GAAGhC,EAAM,OAAO,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAiC,EAAM,OAAAC,EAAO,QAAQS,GAAQ,MAAMC,GAAM,QAAQ9I,GAAa+I,GAAW,GAAG,QAAS/I,GAAwB,GAAX+I,GAAc,QAAQ/I,GAAa2I,GAAQ,EAAE,QAAS3I,GAAqB,EAAR4I,GAAU,WAAAM,EAAU,EAAE,SAAShD,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAatF,GAAM,MAAS,EAAEsF,EAAM,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASa,GAAI,CAAC,gBAAAuC,EAAgB,QAAAT,EAAQ,MAAAU,EAAM,MAAA3I,EAAM,aAAA0D,EAAa,qBAAAC,EAAqB,SAAAyC,EAAS,YAAAwC,EAAY,IAAAlN,EAAI,QAAAC,EAAQ,aAAAyD,GAAa,WAAAC,GAAW,GAAGnE,CAAK,EAAE,CAA8C,IAAI2N,GAAWnF,IAAe1D,EAAuDX,KAAYwJ,GAAW,KAAK,IAAIlF,CAAoB,IAAI3D,GAAO,IAAM8I,EAAcpN,EAAI,EAAQqN,EAAI,CAAC3J,IAAcY,EAAM,EAAE8I,EAAcnN,EAAcqN,EAAO,CAAC5J,IAAcY,IAAQ2I,EAAM,EAAEG,EAAcnN,EAAcsN,GAAM7J,IAAcY,IAAQ2I,EAAM,EAAEG,EAAcnN,EAAcuN,GAAK9J,IAAcY,EAAM,EAAE8I,EAAcnN,EAAQ,OAAoB6D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,CAAC,GAAG,KAAK,SAAS,GAAG9E,EAAM,MAAM,CAAC,GAAG0N,EAAY,QAAQ,GAAGG,CAAG,MAAME,EAAK,MAAMD,CAAM,MAAME,EAAI,IAAI,EAAE,SAAsB1J,EAAKqH,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQyC,GAAWH,EAAgBT,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,IAAMlB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECjEj1D,IAAM+C,GAAeC,GAASC,CAAS,EAAQC,GAAkBC,GAAoBF,CAAS,EAAQG,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAgB,CAACC,EAAMC,IAAc,CAAC,GAAG,OAAOD,GAAQ,UAAU,OAAO,SAASA,CAAK,EAAE,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,KAAK,GAAG,OAAOA,GAAQ,UAAU,OAAOC,GAAc,SAAS,OAAiB,IAAMC,EAASF,EAAM,MAAM,GAAG,EAAE,OAAOE,EAASD,CAAW,GAAGC,EAASD,EAAY,CAAC,GAAGC,EAAS,CAAC,CAAE,EAAQC,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,GAAG,EAAQE,EAAkBL,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAA+b,IAAMM,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAmxK,IAAME,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAqB,CAAC,OAAO,SAAS,KAAK,OAAO,MAAM,QAAQ,IAAI,KAAK,EAAQC,GAAwB,CAAC,QAAQ,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,SAAAC,EAAS,UAAAC,EAAU,IAAAC,EAAI,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,WAAAC,EAAW,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAYE,EAAM,WAAW,EAAE,UAAUR,GAAUQ,EAAM,WAAW,GAAK,UAAUX,GAAqBI,CAAS,GAAGA,GAAWO,EAAM,WAAW,OAAO,UAAUN,GAAKM,EAAM,WAAW,GAAG,UAAUH,GAAQG,EAAM,WAAW,OAAO,QAAQV,GAAwBU,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,GAAS,QAAAC,GAAQ,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,EAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAEpF,GAASS,CAAK,EAAO,CAAC,YAAA4E,GAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAjF,EAAQ,EAAEkF,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,IAAI7E,EAAW,QAAAW,GAAQ,kBAAAmE,EAAiB,CAAC,EAAQC,EAAiBtF,GAAuBD,EAAME,EAAQ,EAA4DsF,GAAkBC,GAAGC,GAAkB,GAArE,CAAazE,EAAS,CAAuE,EAAE,OAAoBhC,EAAK0G,EAAY,CAAC,GAAGzE,IAAUT,EAAgB,SAAsBxB,EAAKC,GAAS,CAAC,QAAQgB,GAAS,QAAQ,GAAM,SAAsBjB,EAAKT,GAAW,CAAC,MAAMoH,GAAY,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,GAAGwF,GAAU,GAAGI,GAAgB,UAAUU,GAAGD,GAAkB,iBAAiBvE,EAAU4D,CAAU,EAAE,mBAAmB,UAAU,iBAAiBU,EAAiB,SAAS,YAAY,IAAI/E,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG6E,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEjB,GAAYI,EAAc,EAAE,SAAsB/F,EAAK6G,GAA0B,CAAC,SAAsB7G,EAAK8G,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtG,EAAK+G,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,IAAI,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAK,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB1E,EAAU,aAAa,EAAE,UAAUF,EAAU,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,IAAI,cAAc,EAAE,aAAa,EAAE,cAAc,EAAK,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAIG,EAAU,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,wEAAwE,SAAS,EAAE,SAAS,wEAAwE,QAAQ,EAAE,UAAU,IAAI,QAAQ,EAAE,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAActC,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,8DAA8D,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,IAAI,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,8BAA8B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,IAAwBxH,EAAKyH,EAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,GAAG1E,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAE+E,KAASjF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB3C,EAAK0G,EAAY,CAAC,GAAG,aAAa9D,CAAW,GAAG,SAAsB5C,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUhF,CAAkB,EAAE,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkBrF,CAAkB,CAAC,EAAE,UAAU,gBAAgB,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAK7D,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAezC,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAK5D,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,+DAA+D,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,MAAM,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,8BAA8B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,WAAWY,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,KAAK,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAACW,EAAYC,EAAgBC,IAAyBlI,EAAKyH,EAAU,CAAC,SAASO,GAAa,IAAI,CAAC,CAAC,GAAG/E,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAEmF,KAAUrF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBhD,EAAK0G,EAAY,CAAC,GAAG,aAAazD,CAAW,GAAG,SAAsBjD,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU3E,CAAkB,EAAE,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkBhF,CAAkB,CAAC,EAAE,UAAU,gBAAgB,iBAAiByD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKxD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9C,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKvD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejD,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,0CAA0C,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,MAAM,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,+BAA+B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,KAAK,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAACe,EAAYC,EAAgBC,IAAyBtI,EAAKyH,EAAU,CAAC,SAASW,GAAa,IAAI,CAAC,CAAC,GAAG9E,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAEkF,KAAUpF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBrD,EAAK0G,EAAY,CAAC,GAAG,aAAapD,CAAW,GAAG,SAAsBtD,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUtE,CAAkB,EAAE,SAAsBrD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkB3E,CAAkB,CAAC,EAAE,UAAU,iBAAiB,iBAAiBoD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKnD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenD,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKlD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetD,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,yCAAyC,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,MAAM,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,+BAA+B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,KAAK,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAACmB,EAAYC,EAAgBC,IAAyB1I,EAAKyH,EAAU,CAAC,SAASe,GAAa,IAAI,CAAC,CAAC,GAAG7E,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAEiF,KAAUnF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB1D,EAAK0G,EAAY,CAAC,GAAG,aAAa/C,CAAW,GAAG,SAAsB3D,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUjE,CAAkB,EAAE,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkBtE,CAAkB,CAAC,EAAE,UAAU,gBAAgB,iBAAiB+C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAK9C,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexD,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAK7C,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,oCAAoC,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,IAAI,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,8BAA8B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,OAAO,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAACuB,EAAYC,EAAgBC,IAAyB9I,EAAKyH,EAAU,CAAC,SAASmB,GAAa,IAAI,CAAC,CAAC,GAAG5E,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAEgF,KAAUlF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB/D,EAAK0G,EAAY,CAAC,GAAG,aAAa1C,CAAW,GAAG,SAAsBhE,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU5D,CAAkB,EAAE,SAAsB/D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkBjE,CAAkB,CAAC,EAAE,UAAU,gBAAgB,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKzC,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7D,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKxC,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,0BAA0B,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,IAAI,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,+BAA+B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,QAAQ,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAAC2B,EAAYC,EAAgBC,IAAyBlJ,EAAKyH,EAAU,CAAC,SAASuB,GAAa,IAAI,CAAC,CAAC,GAAG3E,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAE+E,KAAUjF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBpE,EAAK0G,EAAY,CAAC,GAAG,aAAarC,CAAW,GAAG,SAAsBrE,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUvD,CAAkB,EAAE,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkB5D,CAAkB,CAAC,EAAE,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKpC,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelE,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKnC,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerE,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,qCAAqC,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,MAAM,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,+BAA+B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,SAAS,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAAC+B,EAAYC,EAAgBC,IAAyBtJ,EAAKyH,EAAU,CAAC,SAAS2B,GAAa,IAAI,CAAC,CAAC,GAAG1E,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAE8E,KAAUhF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBzE,EAAK0G,EAAY,CAAC,GAAG,aAAahC,CAAW,GAAG,SAAsB1E,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUlD,CAAkB,EAAE,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkBvD,CAAkB,CAAC,EAAE,UAAU,gBAAgB,iBAAiBgC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAK/B,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevE,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAK9B,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1E,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,4DAA4D,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,MAAM,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,+BAA+B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,UAAU,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAACmC,EAAYC,EAAgBC,IAAyB1J,EAAKyH,EAAU,CAAC,SAAS+B,GAAa,IAAI,CAAC,CAAC,GAAGzE,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAE6E,KAAU/E,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB9E,EAAK0G,EAAY,CAAC,GAAG,aAAa3B,CAAW,GAAG,SAAsB/E,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU7C,CAAkB,EAAE,SAAsB9E,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkBlD,CAAkB,CAAC,EAAE,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAK1B,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe5E,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKzB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/E,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,0DAA0D,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,MAAM,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,8BAA8B,mBAAmB,UAAU,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,OAAO,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAACuC,EAAYC,EAAgBC,IAAyB9J,EAAKyH,EAAU,CAAC,SAASmC,GAAa,IAAI,CAAC,CAAC,GAAGxE,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAE4E,KAAU9E,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBnF,EAAK0G,EAAY,CAAC,GAAG,aAAatB,CAAW,GAAG,SAAsBpF,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUxC,CAAkB,EAAE,SAAsBnF,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkB7C,CAAkB,CAAC,EAAE,UAAU,gBAAgB,iBAAiBsB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKrB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejF,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKpB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepF,EAAKgH,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,iDAAiD,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBhH,EAAKE,EAAO,EAAE,CAAC,WAAW,CAAC,IAAI,GAAG,gBAAgB,IAAI,eAAe,IAAI,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuBW,EAAgB1E,EAAU,CAAC,EAAE,wBAAwB0E,EAAgB1E,EAAU,CAAC,EAAE,oBAAoB0E,EAAgB1E,EAAU,CAAC,EAAE,qBAAqB0E,EAAgB1E,EAAU,CAAC,CAAC,EAAE,WAAW2E,EAAU,SAAsBlH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,SAAsBtG,EAAKmH,EAAmB,CAAC,SAAsBnH,EAAKoH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,EAAe,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,SAAS,CAAC,EAAE,aAAa,cAAc,KAAK,cAAc,CAAC,EAAE,SAAS,CAAC2C,EAAYC,EAAgBC,IAAyBlK,EAAKyH,EAAU,CAAC,SAASuC,GAAa,IAAI,CAAC,CAAC,GAAGvE,EAAY,UAAUJ,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,CAAkB,EAAE2E,KAAU7E,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBxF,EAAK0G,EAAY,CAAC,GAAG,aAAajB,CAAW,GAAG,SAAsBzF,EAAK2H,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUnC,CAAkB,EAAE,SAAsBxF,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAK4H,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGC,EAAkBxC,CAAkB,CAAC,EAAE,UAAU,iBAAiB,iBAAiBiB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBtG,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qFAAqF,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBwB,EAAM5H,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uBAAuB,EAAE,SAAS,CAActG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKhB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetF,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,0BAA0B,qBAAqB,OAAO,sBAAsB,iGAAiG,0BAA0B,YAAY,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,EAAE,iBAAiBoG,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAUrD,GAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,OAAO,GAAGwE,GAAqB,CAAC,UAAU,CAAC,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,IAAI,cAAc,EAAE,aAAa,GAAG,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,aAAa,CAAC,UAAU,2BAA2B,SAAS,GAAG,aAAa,IAAI,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAK,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,wEAAwE,QAAQ,EAAE,UAAU,IAAI,QAAQ,EAAE,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,EAAI,CAAC,EAAE,UAAU,CAAC,eAAe,CAAC,aAAa,GAAK,eAAe,GAAG,mBAAmB,IAAI,cAAc,GAAG,aAAa,GAAG,cAAc,EAAK,CAAC,CAAC,EAAEjB,GAAYI,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqE,GAAI,CAAC,kFAAkF,gFAAgF,+PAA+P,0GAA0G,2qBAA2qB,ohBAAohB,2gBAA2gB,ygBAAygB,8hBAA8hB,siBAAsiB,sbAAsb,mYAAmY,onTAAonT,GAAeA,EAAG,EAS7h0EC,GAAgBC,GAAQpJ,GAAUkJ,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,yBAAyBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,QAAQ,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAUC,IAAoB,WAAc,CAAC,GAAGA,GAAkB,UAAa,aAAa,OAAO,YAAY,OAAU,OAAO,OAAU,MAAM,WAAW,EAAE,UAAU,CAAC,aAAa,EAAE,eAAe,GAAK,IAAI,GAAG,IAAI,EAAE,MAAM,cAAc,KAAKD,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,YAAY,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAG,IAAI,EAAE,MAAM,MAAM,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,OAAO,MAAM,SAAS,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEE,GAASN,GAAgB,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,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,+EAA+E,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGO,GAAe,GAAGC,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "SlideshowControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "radiusForCorner", "value", "cornerIndex", "segments", "transition2", "animation", "toResponsiveImage", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "autoPlay", "direction", "gap", "height", "id", "radius", "startImage", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "h7EWw5_YT", "d87Z7AFaJ", "EnZrCLlYu", "OkK3C1FUw", "OP8Fp9jEZ", "IwzBySJ9oFDuW97WYP", "OawFaLbl9FDuW97WYP", "vKKROtRkLFDuW97WYP", "x8nLgoyADFDuW97WYP", "idFDuW97WYP", "IwzBySJ9oUOs5j_rq_", "OawFaLbl9UOs5j_rq_", "vKKROtRkLUOs5j_rq_", "x8nLgoyADUOs5j_rq_", "idUOs5j_rq_", "IwzBySJ9oSumo8osaX", "OawFaLbl9Sumo8osaX", "vKKROtRkLSumo8osaX", "x8nLgoyADSumo8osaX", "idSumo8osaX", "IwzBySJ9ocUXTtAxmJ", "OawFaLbl9cUXTtAxmJ", "vKKROtRkLcUXTtAxmJ", "x8nLgoyADcUXTtAxmJ", "idcUXTtAxmJ", "IwzBySJ9oacZl6ZHr6", "OawFaLbl9acZl6ZHr6", "vKKROtRkLacZl6ZHr6", "x8nLgoyADacZl6ZHr6", "idacZl6ZHr6", "IwzBySJ9oZMDEAZsH5", "OawFaLbl9ZMDEAZsH5", "vKKROtRkLZMDEAZsH5", "x8nLgoyADZMDEAZsH5", "idZMDEAZsH5", "IwzBySJ9oHgOVwzdHp", "OawFaLbl9HgOVwzdHp", "vKKROtRkLHgOVwzdHp", "x8nLgoyADHgOVwzdHp", "idHgOVwzdHp", "IwzBySJ9oAsgejq4kH", "OawFaLbl9Asgejq4kH", "vKKROtRkLAsgejq4kH", "x8nLgoyADAsgejq4kH", "idAsgejq4kH", "IwzBySJ9oAiIcYyFXY", "OawFaLbl9AiIcYyFXY", "vKKROtRkLAiIcYyFXY", "x8nLgoyADAiIcYyFXY", "idAiIcYyFXY", "IwzBySJ9oXC5dXyAsH", "OawFaLbl9XC5dXyAsH", "vKKROtRkLXC5dXyAsH", "x8nLgoyADXC5dXyAsH", "idXC5dXyAsH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "Link", "radiusForCorner", "animation", "ChildrenCanSuspend", "QueryData", "fEcsJRIig_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Image2", "toResponsiveImage", "u", "RichText2", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "collection8", "paginationInfo8", "loadMore8", "index8", "collection9", "paginationInfo9", "loadMore9", "index9", "css", "Framerm4ydxoPHZ", "withCSS", "m4ydxoPHZ_default", "addPropertyControls", "ControlType", "SlideshowControls", "addFonts", "SlideshowFonts", "getFontsFromSharedStyle", "fonts"]
}
