{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/0Y06x2qsHppGHhWCfPq2/dQf9AsmFyfSxkY2u2sjQ/nTDdCS2Fh-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as o,Link as r}from\"framer\";import{motion as a}from\"framer-motion\";import*as i from\"react\";import{Youtube as n}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";export const richText=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/oOAtP9Ya1E8?si=wK0jl2JqgI19XJ2Q\"})})})});export const richText1=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Original Source contains 100% natural fragrance\"})});export const richText2=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,V4hXj3IOa7tX9qGETklvfuwbKMQ.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/V4hXj3IOa7tX9qGETklvfuwbKMQ.mp4\"})});export const richText3=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Lay's has flavors for days, and now it\u2019s taking us on a delicious journey around the world! We captured the taste of three iconic global flavors, Indian Masala, Greek Wavy Tzatziki, and Korean Honey Butter, through rich patterns, graphics, and flavor cues inspired by each country. Who's ready to taste the world from the comfort of home?\"})});export const richText4=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/L6n1tZ9l45M?si=z2UkGkA640W5GcMg\"})})})});export const richText5=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Welcome to the official Australian Open TV YouTube channel. The Australian Open 2025 main draw runs from 12-26 January in Melbourne. The tournament takes place for the 113th time and is the first Grand Slam of the year. Jannik Sinner is the men\u2019s singles reigning champion and Aryna Sabalenka is the women\u2019s singles reigning champion. The tournament takes place on 25 hard courts, including Rod Laver Arena, Margaret Court Arena and John Cain Arena. Look out for highlights, press conferences, memorable moments and much more! \"})});export const richText6=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/twJy9IozNuQ?si=EDvNZ03WQm5aKdTW\"})})})});export const richText7=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Gift magic. At the Apple Store.\"})});export const richText8=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,RKrhQZNwMYI2Ln2XZHNGKN5qWOc.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/RKrhQZNwMYI2Ln2XZHNGKN5qWOc.mp4\"})});export const richText9=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Some trips are merrier in an Airbnb!\"})});export const richText10=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/CNAmCf072UM?si=C6b5dvVxoQ9aWK07\"})})})});export const richText11=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"If you\u2019re worried that hosting might be too much work, get yourself a partner. An Airbnb co-host can do the hosting for you\"})});export const richText12=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/8gBvbaylLz8?si=M8Q2GbE20qQSUr51\"})})})});export const richText13=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The Panther's Lunar New Year\"}),/*#__PURE__*/e(\"p\",{children:\"Ink flows like a winding river, a beautiful landscape unfolds, and the panther embarks on a journey into the Lunar New Year, as if by magic. #CartierCelebratesLunarNewYear\"})]});export const richText14=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,unwyWfoaa22YE15noDsaGph5ylg.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/unwyWfoaa22YE15noDsaGph5ylg.mp4\"})});export const richText15=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Forget everything you know about what an LED volume should look like - and what it can do.\"}),/*#__PURE__*/e(\"p\",{children:\"This is our Dynamic Volume System (DVS), a revolutionary approach to In-Camera Visual Effects (ICVFX) that we've developed to redefine flexibility & efficiency for Film & TV, as well as advertising, broadcast, e-sports, and more.\"}),/*#__PURE__*/e(\"p\",{children:\"For the first time, DVS allows LED volumes to dynamically reconfigure to cater to precise creative needs, through a combination of advanced motors, omni-directional wheels, and self-leveling sensors.\"}),/*#__PURE__*/e(\"p\",{children:\"The patented system is comprised of \u2018wallPods\u2019, each varying in length & curvature, which can be connected into numerous configurations. That means the same wallPods can form a range of LED shapes, or even be split into multiple smaller volumes. They can even be \u2018driven\u2019 to different stages on a studio lot, or into storage, with their capacity to navigate inclines and declines.\"})]});export const richText16=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/PcZDgQ2Aepo?si=wOkhlnMcdMxUpjWm\"})})})});export const richText17=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Get ready to live on your terms and reach legendary status at Gila River Resorts & Casinos. Indulge in exquisite fine dining, roll the dice at our thrilling table games, and revel in the resort amenities. Boasting four locations throughout the Valley, Gila River Resorts & Casinos - Wild Horse Pass, Lone Butte, Vee Quiva and Santan Mountain offer unlimited ways for you to relax, dine, and play. Take your gaming to a whole other level.\"})});export const richText18=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/vH3Rp3wky-U?si=PFgrKYXz57zvbhdL\"})})})});export const richText19=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In case you missed it, we announced a few new things at Make with Notion 2024: Forms, Automations, Layouts, Marketplace, and Mail.\"}),/*#__PURE__*/e(\"p\",{children:\"Learn more at https://notion.com/releases/2024-10-24\"})]});export const richText20=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/D8VHNb1c5IU?si=poRxE1cTsqorEr-F\"})})})});export const richText21=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Learn how MongoDB\u2019s industry-leading platform, large AI ecosystem, and multi-cloud flexibility make it easy for developers to build modern apps.\"})});export const richText22=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/N2yOENoo9CQ?si=sRO1DE0RnyA2lv7x\"})})})});export const richText23=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"It was once a dream, turned reality. The fighting spirit of Ford Mustang GT3 is an extension of the icon's rich racing heritage \u2013 ready to take full stride in the prestigious 24 Hours of Le Mans. The Legacy Continues. #BredtoRaceFP #LEMANS24 \"})});export const richText24=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/3lUlrEfyYR0?si=FvxqOhCiDTA9zjTD\"})})})});export const richText25=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Only the real ones reply real quick cause they have Tap to Pay. Only on Android.\"})});export const richText26=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/8mBngUMh0nw?si=xctovRxZhJpiSAhw\"})})})});export const richText27=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Tap into advanced AI capabilities for more customization, more time and more growth. From an AI text creator to a  built-in image generator and  instant on-brand emails\u2014Wix delivers the tools you need to get more done in less time.\"})});export const richText28=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/iVc61V4xhlw?si=g3GKO1Jf_IZSDCWo\"})})})});export const richText29=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Paris has never seen a love like this. The Olympic Games, across the BBC from 26th July. \"}),/*#__PURE__*/e(\"p\",{children:\"Watch the Summer of Sport and Music on #iPlayer \"}),/*#__PURE__*/e(\"p\",{children:\"#Paris2024 #Olympics\"})]});export const richText30=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/_TK551SXAog?si=pNO23vRMzir2vlMd\"})})})});export const richText31=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Don\u2019t name your layers. Let Figma AI do that AND\"}),/*#__PURE__*/e(\"p\",{children:\"\u2192 Make your first draft with Make Design\"}),/*#__PURE__*/e(\"p\",{children:\"\u2192 Find the exact visual you\u2019re looking for (or something similar) with Visual/Asset Search\"}),/*#__PURE__*/e(\"p\",{children:\"\u2192 Turn your designs into a working prototype with Make Prototype\"}),/*#__PURE__*/e(\"p\",{children:\"Figma is free to use. Sign up here: https://bit.ly/3msp0OV\"})]});export const richText32=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/tbwJEbJs_Go?si=9k7iZtBVL7dJtOIV\"})})})});export const richText33=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Alinta Energy - True Power\"})});export const richText34=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Pz61FQxMUKPWkaAGdOlMFPsqE.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/Pz61FQxMUKPWkaAGdOlMFPsqE.mp4\"})});export const richText35=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Team 7up joins the celebration with design language that reflects the essence of coming together as families and communities to rejoice this time of the year. \"}),/*#__PURE__*/e(\"p\",{children:\"The modern illustration of festival semiotics defining cultural rituals like women playing the Raban and enjoying on the swing and men engaging in several other community games, captures the essence of traditional and the new.\"})]});export const richText36=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/XmvZi8YvwQ8?si=1G999-RAK9BjQ684\"})})})});export const richText37=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"This is Ear. An expression of elite craftsmanship and our best ever audio experience. \"}),/*#__PURE__*/e(\"p\",{children:\"Buy now at https://nothing.tech/\"})]});export const richText38=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/4SCjXcBeW1E?si=QGdh_mdfR3sDe40P\"})})})});export const richText39=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Meet your new AI-powered video creation app for work. Google Vids is a new app that helps you easily share ideas and create rich video content. Coming soon to Gemini for Google Workspace.\"})});export const richText40=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/YouPgTPVmEw?si=2EDNfyKVLK8WMBlO\"})})})});export const richText41=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Say hello to #Atherstack 6 and a brand new #Ather app, with plenty of new smart features and a stunning new UI.\"}),/*#__PURE__*/e(\"p\",{children:\"#SoftwareUpdate #AppUpdate #UIUXDesign\"})]});export const richText42=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/L2jvzInAOtY?si=j-NtFifymidEzjom\"})})})});export const richText43=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"It has safety for your loved ones, smarts to stay connected and space to carry it all.\"}),/*#__PURE__*/e(\"p\",{children:\"Make the #AtherRizta yours at an introductory price of \u20B91,09,999 at https://www.atherenergy.com/rizta\"}),/*#__PURE__*/e(\"p\",{children:\"#Ather #FamilyScooter #NewLaunch\"})]});export const richText44=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/rAFK2ryMTXY?si=T9Oux5bfgLW-woYH\"})})})});export const richText45=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Highly energetic and foot-tapping, the title theme of \u2018Lootere\u2019 is here! Composed by Achint, the show features Vivek Gomber, Deepak Tijori, Rajat Kapoor, Chandan Roy Sanyal and Amruta Khanvilkar. Directed by Jai Mehta and created by Hansal Mehta and Shailesh R. Singh, the theme music also is the opening sequence of the show.\"}),/*#__PURE__*/e(\"p\",{children:\"#Lootere #Achint #HansalMehta #RajatKapoor #VivekGomber #DeepakTijori #JaiMehta\"}),/*#__PURE__*/t(\"p\",{children:[\"Composer: Achint\",/*#__PURE__*/e(\"br\",{}),\"Director: Jai Mehta\",/*#__PURE__*/e(\"br\",{}),\"Producer: Shailesh R. Singh\",/*#__PURE__*/e(\"br\",{}),\"Banner Studio: Karma Media And Entertainment\",/*#__PURE__*/e(\"br\",{}),\"Cast: Vivek Gomber, Deepak Tijori, Rajat Kapoor, Chandan Roy Sanyal, Amruta Khanvilkar\"]})]});export const richText46=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/w7IZBsgi4FY?si=wfyYlHOpqK0RmOav\"})})})});export const richText47=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"\u2014-\"})});export const richText48=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/crzp6gtyekk?si=BdjgzVbsZ9lb9gNG\"})})})});export const richText49=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:'Join us on an exhilarating journey through the enchanting landscapes of our 17-county community, guided by Mr. P and Buck the Beaver. Explore iconic landmarks like the pier, riverfront, and more, each revealing stories of our vibrant community. Hosted by former TVFCU Mascot, Captain Hoot, embark on a whimsical ride past Lookout Mountain, Ruby Falls, and native Tennessee Coneflowers. Indulge in sweet Georgia Peaches with Robin\\'s family, all beautifully animated by Emmy-winners Giant Ant all to a musical tune master crafted by Walter Martin. Experience the magic of Chattanooga as we float through the Tennessee River, sharing our expanded \"A Place for All of Us\" message of unity into the \"Sharing the Magic\" wonder with our entire community.'}),/*#__PURE__*/e(\"p\",{children:\"As your neighborhood credit union, we've witnessed the journey of building businesses, establishing homes, and nurturing our valley's growth together. At TVFCU, we're dedicated to 'Sharing the Magic' of belonging to our cherished Tennessee Valley community. \"}),/*#__PURE__*/e(\"p\",{children:\"We extend our helping hand through cutting-edge financial services, warm-hearted support, and valuable financial education resources for all our neighbors, to name a few.\"}),/*#__PURE__*/e(\"p\",{children:\"Discover how TVFCU shares the magic day in and day out with our fellow Tennessee Valley residents. \"}),/*#__PURE__*/e(\"p\",{children:\"TVFCU - Sharing the Magic\"})]});export const richText50=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/WdbeqSQjZI8?si=E8EeTT_h9JjMq1Ig\"})})})});export const richText51=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Circle to Search is a new way to search anything on your Android phone, without switching apps. With a simple gesture, you can select what you\u2019re curious about in a way that comes naturally to you \u2014 like circling, highlighting, scribbling or tapping \u2014 and get more information instantaneously. Learn more: https://blog.google/products/search/g...\"}),/*#__PURE__*/e(\"p\",{children:\"Available January 31, 2024 on the Pixel 8, Pixel 8 Pro and new Galaxy S24 Series \u2014 in all languages and locations where they\u2019re available.\"})]});export const richText52=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/9vbWehwaPQ4?si=M7zMYZK_6Xh07Mvo\"})})})});export const richText53=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Every dream, no matter how miraculous, begins on a microscopic scale. \"}),/*#__PURE__*/e(\"p\",{children:\"They are unseen, micro in scale, but these micro miracles have a huge impact on our daily lives, giving life to our imaginations.\"}),/*#__PURE__*/e(\"p\",{children:\"Discover the power of micro miracles with Samsung Semiconductor, where the smallest wonders make a huge impact on our world.\"}),/*#__PURE__*/e(\"p\",{children:\"Makers of micro miracles, Samsung Semiconductor.\"}),/*#__PURE__*/e(\"p\",{children:\"#SamsungSemiconductor #MicroMiracles #Samsung\"})]});export const richText54=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/iTNruQgiSJM?si=6GGKKZTWBtqtz0wQ\"})})})});export const richText55=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Welcome to the best week of your life!\"}),/*#__PURE__*/e(\"p\",{children:\"This is The Yacht Week \u2013 an adventure like no other. Explore stunning oceans and islands aboard your very own yacht \u2013 with your best mates and hundreds of other beautiful like-minded explorers in convoy. You\u2019ll have your own skipper and the freedom to map your own path for seven days through spectacular beaches, deserted islands and incredible parties.\"}),/*#__PURE__*/t(\"p\",{children:[\"Back in 2006, we were just a bunch of uni friends who wanted to go sailing and explore far and wide. Today, we\u2019re still that same bunch of friends, only now there are 70,000 of us. And our loving family just keeps getting bigger. We have forged a community from adventurous spirits, vast open waters, and a host of musicians, collaborators, sailors and revellers.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\"https://www.theyachtweek.com/\"]})]});export const richText56=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/7qMaYI1Eza8?si=n6oZO0tNzK_yvfSk\"})})})});export const richText57=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Titan Raga brings to you a stunning collection of watches by none other than Masaba Gupta. Blending pop art and Indian tribal art, these timepieces move away from traditional designs into the world of imagination and wonder. Taking inspiration from ancient architecture, the awe-inspiring designs of these watches have been crafted for the elegant woman of today.\"})});export const richText58=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Z9AVHgrvIE0?si=k3z5btCXa7rMR5Dn\"})})})});export const richText59=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"This festive season, resolve to give a meaningful gift; the gift of your time, your honesty, your patience, your understanding. Gift a better you, for a better tomorrow. \"}),/*#__PURE__*/e(\"p\",{children:\"Wish you all a fabulous 2024. \"}),/*#__PURE__*/e(\"p\",{children:\"#VGuard #BetterTomorrow #happynewyear #newyear #happy #christmas #merrychristmas\"})]});export const richText60=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/mvuH0AI8xt4?si=rnOxIMH7BbzVPBoh\"})})})});export const richText61=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"It's here, it's there, it's everywhere.\",/*#__PURE__*/e(\"br\",{}),\"We are talking about the metal that connects people from all around the world,\",/*#__PURE__*/e(\"br\",{}),\"We are talking about the metal that is infinitely recyclable,\",/*#__PURE__*/e(\"br\",{}),\"We are talking about the metal that is all around us yet often invisible.\"]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s Steel!\"}),/*#__PURE__*/t(\"p\",{children:[\"Presenting our latest campaign JSW Steel \u2018Always Around\u2019, showcasing the ubiquitous presence of JSW Steel in our everyday life.\",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(\"br\",{}),\" #JSWSteel #AlwaysAround\"]})]});export const richText62=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/7PuIq6BCUt0?si=ISj3uPIGs-33LMlU\"})})})});export const richText63=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"This Valentine\u2019s Day, we wanted to explore serendipity, how wrong addresses can sometimes lead to the right places and just how much we\u2019ve loved being a part of your incredible love stories.\"})});export const richText64=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/aTikx7ivKmg?si=KWbzGJY2alv0kXIz\"})})})});export const richText65=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Old love with young love feels. Watch the story of two empty nesters, Shailja and Pradeep, as they navigate through love, life, food, and a badminton court. #SwiggyValentinesDay\"})});export const richText66=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/b5Fh7TaTkEU?si=I7C1-Xh8Pa5VO8D-\"})})})});export const richText67=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Supercharge your ideas with Gemini. \"}),/*#__PURE__*/e(\"p\",{children:\"You can already chat with Gemini with our Pro 1.0 model in over 40 languages and more than 230 countries and territories. And now, we\u2019re bringing you two new experiences \u2014 Gemini Advanced and a mobile app \u2014 to help you easily collaborate with the best of Google AI.\"}),/*#__PURE__*/e(\"p\",{children:\"Chat with Gemini at https://gemini.google.com\"})]});export const richText68=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Cb_4_sxR3Ws?si=u6lRRTg-S5O_26xw\"})})})});export const richText69=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"Roses are red, violets are blue.\",/*#__PURE__*/e(\"br\",{}),\"Three stories of love, from Notion to you.\"]}),/*#__PURE__*/t(\"p\",{children:[\"From \u201Chey u up\u201D to meaningful dates,\",/*#__PURE__*/e(\"br\",{}),\"One li\u2019l doc changed Connie\u2019s fate.\"]})]});export const richText70=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/rJviBkh_I5w?si=7q0GaXlyydeL5ro_\"})})})});export const richText71=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"Roses are red, violets are blue.\",/*#__PURE__*/e(\"br\",{}),\"Three stories of love, from Notion to you.\"]}),/*#__PURE__*/t(\"p\",{children:[\"From filled-with-stress to full-of-joy,\",/*#__PURE__*/e(\"br\",{}),\"Elizabeth said \u201CI do\u201D to her favorite boy!\"]})]});export const richText72=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/16SK029FBX0?si=5PDDn2VIqStUw43b\"})})})});export const richText73=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"From travel destinations, to healthy recipes and even nail art \u2013 creating notes on Google Search can help others answer their most wonderfully unique questions and discover the best of the web. Notes is a new experiment in Search Labs that allows people to share their thoughts and experiences. You can try out Notes by turning on the experiment in Search Labs in the Google App.\"})});export const richText74=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/VGa1imApfdg?si=uqqGobpe548V03qU\"})})})});export const richText75=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"See what happens when the whole universe comes together in Real Magic ways to help a boy in need of uplift and a little inspiration. \"})});export const richText76=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,HRQj1eWyz9Zha5F7Bgohtz6PFw.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/HRQj1eWyz9Zha5F7Bgohtz6PFw.mp4\"})});export const richText77=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Folks have been asking what we\u2019re up to on the Design team here at Airbnb.\"}),/*#__PURE__*/e(\"p\",{children:\"A few weeks ago we announced three significant evolutions of the product with our 2023 Winter Release. Guest Favorites, Ratings & Reviews, and an all-new Listings experience that\u2019s transformed how Hosts create and manage their listings.\"}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s a great time to be here.\"}),/*#__PURE__*/e(\"p\",{children:\"This team is very, very good.\"})]});export const richText78=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/QjSBacdH4i8?si=lImPNUWT3uggNNYX\"})})})});export const richText79=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Allow us to introduce to the world, the official Batman Eyewear Collection. \"}),/*#__PURE__*/e(\"p\",{children:\"Crafted meticulously with stainless steel and TR90, in black and dark grey #frames; our frames merge durability with sophistication. The legendary #Batman logo on temples and lugs shaped like bat wings; they\u2019ll sure get you each time. \"}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019re a Batman fan, you already KNOW how cool this will look on you, don\u2019t you? \"}),/*#__PURE__*/e(\"p\",{children:\"Go on and get your hands on your ultimate Batman accessory!\"})]});export const richText80=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,rfR4sV7aLjfqOS3poNbBBGQsQ.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/rfR4sV7aLjfqOS3poNbBBGQsQ.mp4\"})});export const richText81=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Airbnb 2023 Winter Release\"})});export const richText82=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Dpz30MGXtmA?si=q2bpRFZKPTMy5NHJ\"})})})});export const richText83=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Will Savi beat the track of time, or will she fall into the void of looop?\"}),/*#__PURE__*/e(\"p\",{children:\"Watch it all unravel in Looop Lapeta, now streaming on Netflix! \"}),/*#__PURE__*/e(\"p\",{children:\"Director: Aakash Bhatia\"}),/*#__PURE__*/e(\"p\",{children:\"Animation Director: Debjyoti Saha\"})]});export const richText84=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/p3OUFMpT7B0?si=v-tKetegp77IFS5b\"})})})});export const richText85=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Everyone's grooving to the title track of Scam1992! What did you think of it?\"})});export const richText86=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/5rEZGSFgZVY?si=5JJ2_kLPXiNfky2A\"})})})});export const richText87=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The best Windows ever is getting even better, with brand new ways to make the everyday easier.  \"}),/*#__PURE__*/e(\"p\",{children:\"With nearly 200 new features, the new Windows 11 update is one of our most ambitious yet, bringing the power of Copilot and new AI powered experiences to apps like Paint, Photos, Clipchamp and more right to your Windows PC.    \"}),/*#__PURE__*/e(\"p\",{children:\"Enjoy smart, seamless ways to be more creative, productive, and connected with answers and results that are personalized for you. Getting things done is now easier than you ever thought possible. And thanks to Windows Backup, making the move to Windows 11 is also easier than ever before.  \"}),/*#__PURE__*/e(\"p\",{children:\"Feature availability and rollout timing may vary. Learn more at https://aka.ms/AAlwlsw\"})]});export const richText88=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!1,thumbnail:\"Medium Quality\",url:\"https://youtu.be/aOJLl9kjO-c?si=iHPaieQxeZJim-Yh\"})})})});export const richText89=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Every year we hop across Pandals and different Pujos with a chilled bottle of Coke in our hand. Often this bottle of Coke doubles up as a conversation starter and leads to new friendships. It accompanies us on our journey of pandal hopping and feasting throughout the festival. This film traces that cherished journey across the festival where we unlock memories and create new ones as Coke quenches the thirst to celebrate Pujo right up to the very last drop.\"})});export const richText90=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/YO6Zq2kzqJw?si=NLrxb1nfuqXw3VoM\"})})})});export const richText91=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Even Mahabali doesn't step out without bathing in Medimix. As the world prepares to welcome him for his yearly visit, his trip is disrupted. All because his favourite Medimix was nowhere to be found. Luckily, his loyal subjects save the day and everyone, from Paataal to the world, celebrates a festive Onam\"})});export const richText92=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/txJZKq37bAk?si=Ad1Z2nPccVVKJNlT\"})})})});export const richText93=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Are you team sip or team gulp? Join the fun at https://www.instagram.com/mangofrooti_freshnjuicy/\"})});export const richText94=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/IM_sExJYrAE?si=XiqHZjqKHcuG0qKU\"})})})});export const richText95=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Don't let that looming to-do list keep you from living your best life.Rely on your friendly neighbourhood app to get your chores Dun 24X7. Get smart, and just Dunzo it!\"})});export const richText96=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"video\",{autoPlay:!0,className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,f6dE86rZYjf46onkgYh6TneMno.mp4\",loop:!0,muted:!0,playsInline:!0,src:\"https://framerusercontent.com/assets/f6dE86rZYjf46onkgYh6TneMno.mp4\"})});export const richText97=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"It\u2019s raining deals with Standard Chartered India DigiSmart credit card!\"}),/*#__PURE__*/e(\"p\",{children:\"Now get deals anytime any day on fashion, food, travel, groceries and more!\"})]});export const richText98=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/wnO3qFsHB8A?si=sxz_YSG7VHZmV79C\"})})})});export const richText99=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In 2022, the mood is to embrace all that\u2019s come our way yet keep marching on. Embrace our challenges and imperfections, but not be bound by them. Let go of the myth of \u201Cnormalcy\u201D, for we desire a future that\u2019s different from the normal we leave behind. And so we step into a new day, in a state of powerfully-in-transition. \"}),/*#__PURE__*/e(\"p\",{children:\"Presenting Transcendent Pink\"}),/*#__PURE__*/e(\"p\",{children:\"Shade code - Clematis Pink N K048\"})]});export const richText100=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Bzw_LDXQuDk?si=Pryypr9h4hAwlkku\"})})})});export const richText101=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Red Hot #DARK.  \"}),/*#__PURE__*/e(\"p\",{children:\"Coz there ain't a fire without the spark \"}),/*#__PURE__*/e(\"p\",{children:\"Presenting the all-new Tata Motors #RedHotDark Edition. \"}),/*#__PURE__*/e(\"p\",{children:\"Bookings open - https://cars.tatamotors.com \"}),/*#__PURE__*/e(\"p\",{children:\"#TataSafari #TataHarrier #TataNexon #TataMotorsPassengerVehicles\"})]});export const richText102=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/c0cSWPYIyfY?si=nVenALlo-mlWo6I1\"})})})});export const richText103=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Double the Refreshment, Double the Fun! \"}),/*#__PURE__*/e(\"p\",{children:\"Tic Tac meets Sprite for the Ultimate Cool Together Experience!\"}),/*#__PURE__*/e(\"p\",{children:\"#tictac  #Sprite #CoolTogether\"})]});export const richText104=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/VuVwwsWibqs\"})})})});export const richText105=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Little Master. God of Cricket. #10dulkar is known by many names. We believe his legendary performance is a \u2018Chattaan\u2019 that\u2019s unsurmountable. Watch for yourself. \"}),/*#__PURE__*/e(\"p\",{children:\"#LegendaryPerformance #ApolloXSports #ApolloTyres #10Performance #Apol10\"})]});export const richText106=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/weBvll9wzKI?si=jKhEKiQgdDOL7pDK\"})})})});export const richText107=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The Syska HT1210 Trimmer is engineered to be a cut above the rest! It is equipped with features like- Advanced Rototech Technology, Skin Friendly Blades, up to 40 minutes of working time and more. Come experience the future of grooming!\"})});export const richText108=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/M3ThvrO5Phs?si=YsPqogYWUnykUss7\"})})})});export const richText109=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"It's head over heels with ErgoLight bags from Fastrack. The spine friendly bags are built with light and durable materials and ergonomically designed to treat your back right. #FlashYourFastrack #Fastrack #GotYourBack\"})});export const richText110=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/-4JsrXYnF9U?si=mgYAxP71IKpRRSYd\"})})})});export const richText111=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Is your city the best? Ki Dada, no debate. \"}),/*#__PURE__*/e(\"p\",{children:\"Calcutta Times brings to you this hip track filled with the unexplored and much adored, sounds and sights of Kolkata, and gives you a million reasons to flirt with your city. Pick us up everyday if you want to flirt with a new side of your city. \"}),/*#__PURE__*/e(\"p\",{children:\"So step out, explore. #Flirtwithyourcity. \"}),/*#__PURE__*/e(\"p\",{children:\"Send us pictures/ videos of you flirting with different parts of your city and stand a chance to get featured in Calcutta Times and win exclusive merchandise.  \"}),/*#__PURE__*/e(\"p\",{children:\"To check out how your city is flirting visit flirtwithyourcity.com\"})]});export const richText112=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/jGGNHu_Y4OI?si=qJA6mk3-W0lOyLT0\"})})})});export const richText113=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"-\"})});export const richText114=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/HCYLdtug8sk?si=OnenrEtN38DnV6OL\"})})})});export const richText115=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Their name, their age, who they are, the life they live - it's important we care. \"}),/*#__PURE__*/e(\"p\",{children:\"In 1989, the world came together to empower children through the Convention on the Rights of the Child. \"}),/*#__PURE__*/e(\"p\",{children:\"On this #WorldChildrensDay, what do you want #ForEveryChild? \"}),/*#__PURE__*/e(\"p\",{children:\"To know more about protecting children's rights, visit help.unicef.org/in/wcd\"})]});export const richText116=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/TElItypRXp4?si=rHJWL77xY4_LHUAm\"})})})});export const richText117=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Confused to pick the right color for your space? JSW Paints brings you  Colourvista to address all your colour related needs and inspire you to #ThinkBeautiful\"})});export const richText118=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/OKWmg1G1GIo?si=lcm9eePOTSilsYM6\"})})})});export const richText119=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Celebrating fathers who go above and beyond for our silly needs and unasked wishes. Who will always silently support and love us a little extra. \"}),/*#__PURE__*/e(\"p\",{children:\"We deliver, but you overdeliver! \"}),/*#__PURE__*/e(\"p\",{children:\"Happy Father's Day. #fathersday #father\"})]});export const richText120=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/5UZVS-_Lv8M?si=JKunpOXOsAIbfi1E\"})})})});export const richText121=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Are you ready for an epic audio adventure through the Wasteland? The Super Heroes will navigate a dangerous world filled with mutants, monsters, and more! \uD83C\uDFA7 Marvel's Wastelanders trailer is here and it's not to be missed! \"}),/*#__PURE__*/e(\"p\",{children:\"Listen to \u2018Marvel\u2019s Wastelanders, A Hindi Audible Original series\u2019, starting June 28 with the story of Star-Lord.\"})]});export const richText122=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/isiJbbCIw3s\"})})})});export const richText123=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"It is the source of all life. The force that paints the dawn and dusk in beautiful colours. A symbol that inspires us to help the world #ThinkBeautiful.\"}),/*#__PURE__*/e(\"p\",{children:\"To know more, please visit: www.jswpaints.in\"}),/*#__PURE__*/e(\"p\",{children:\"#JSWPaints\"})]});export const richText124=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/zz_vUwtKdIA?si=-KX3NHqvedV7X8hg\"})})})});export const richText125=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Ncell is now a part of Axiata Group Berhad, having presence in 10 countries across Asia and serving more than 290 million subscribers. \"}),/*#__PURE__*/e(\"p\",{children:\"Ncell. With you, always.\"})]});export const richText126=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/e-bsaPNNDWE?si=tDGspBZXvZ65muWV\"})})})});export const richText127=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Iss Swatantrata Diwas par Thums Up un haathon ko salaam karta hai jinhone desh ka naam roshan kiya. Un haathon ko, jinhone azaadi ki ladhaai ladi, sandeh karne valon ko galat saabit kiya, gold uthaaya aur desh ko antariksh ki sair karvayi. Unn haathon ko humaara salaam. \"}),/*#__PURE__*/e(\"p\",{children:\"Joh #PalatDe desh ki pehchaan voh Har Haath Toofan. \"}),/*#__PURE__*/e(\"p\",{children:\"#ThumsUp #Toofan \"}),/*#__PURE__*/e(\"p\",{children:\"#HarHaathToofan\"})]});export const richText128=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Uh9643c2P6k\"})})})});export const richText129=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Windows 11 brings you closer to what you love. Family, friends, obsessions, music, creations \u2014 Windows 11 is the one place for it all. With a fresh new feel and tools that make it easier to be efficient, it has what you need for whatever\u2019s next. \"}),/*#__PURE__*/e(\"p\",{children:\"Coming soon.\"})]});export const richText130=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/v1M4ydNlgP0\"})})})});export const richText131=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"At Webflow, we believe that the future of code will be visual. Why? Because we believe in the power of code \u2014 but in its current state, code is inaccessible to many. A wall between creators\u2019 visions and reality. We\u2019re here to break down that wall.\"}),/*#__PURE__*/t(\"p\",{children:[\"Want to learn more? Check out \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqa19FdlcwZWhQUXJVQUpRazgybE9MSzM2LWprd3xBQ3Jtc0ttMXlMNlRhOHlvNzRuZFpTYmZQQ05qdEIyZ1ZMMGY5Sl9GTDFFRVg1aTRBUGpSMVpiRUhEY212aDFMd3pGS25lN0hTcjRsRk9ENC1yQi16TThtVzdzM3F1OUpCUUdxM1VLSzYydkh0am1BR01na2tpbw&q=https%3A%2F%2Fwebflow.com%2Fno-code&v=v1M4ydNlgP0\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://webflow.com/no-code\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"NCC 2019: \",/*#__PURE__*/e(r,{href:\"https://webflow.com/blog/announcing-no-code-conf\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://webflow.com/blog/announcing-no-code-conf\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"Get started with Webflow: \",/*#__PURE__*/e(r,{href:\"https://university.webflow.com/courses/webflow-101\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://wfl.io/2r7cVUW\"})})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbHZ6QVk5NHgxYk9ySlpsdFE2QURTVjNjM1RaQXxBQ3Jtc0trcGNsczNCX1hneHZyS3RMcnIzbXRWQ3VDZWN5cmRScl8wQWRfWi1xWTZpWDYyMWUtTWVCVC1EWHFXNkh3SlRDX25MbDZfVFdWYmdqVE0yNGMyM25HTmx6STVicUM2dmlENzF3SjA1cWNOMUxpNGJpUQ&q=https%3A%2F%2Fwebflow.com%2F&v=v1M4ydNlgP0\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://webflow.com\"})}),\" \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqa05QSGZlVGZhaGRJY0RVWXNVS2IwOE9XMU5oQXxBQ3Jtc0tsYURpc21HeWp4R3RYb0RRQUktR1JxUmwwRExQNkcxdVl6UEJnN3JZQ0otWkFMdnlpNEpmWmd3VHlMWlJZeEpRYTg5TTFWWHprQlVSa1pqZWZKcUxkNXRERVlrRkhpNm1yalotaU9Bb1p2VV9YRkRqRQ&q=https%3A%2F%2Ftwitter.com%2Fwebflow&v=v1M4ydNlgP0\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://twitter.com/webflow\"})}),\" \",/*#__PURE__*/e(\"br\",{}),/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbUFZemZDZ09wUGl0TnM3amEzWDV2bzgzNkVqd3xBQ3Jtc0ttT2VmdjhtU2pqTkZpbzQ2OXNYX3lydjdXYkZ3ZEdpMDd5Yi1GUUhtNDB2R3JsSWRMbUhoUVpiYWFQZllHTlZzVmJ4RDN0UDg2eXJHUWwwTWVnaXlra0xVcGdPUWdEN05HS0hyRTFteFdoaWhxSUVuSQ&q=https%3A%2F%2Ffacebook.com%2Fwebflow&v=v1M4ydNlgP0\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://facebook.com/webflow\"})})]})]});export const richText132=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/WseL1SftLUc\"})})})});export const richText133=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Google\u2019s Password Manager uses industry-leading security to protect all of your passwords, generates unique complex passwords for you and automatically fills them on Chrome and Android next time you log in.\"})});export const richText134=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Yi1cI9nY_p4\"})})})});export const richText135=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Break out of the inbox and make the change to channels in Slack: organized spaces for everything related to a project, topic or team. Keep your team on track and move work forward faster. \"}),/*#__PURE__*/t(\"p\",{children:[\"LEARN MORE: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbmdKb2tyelhGQTc4WklOaUxiLWFzV2o1MjlqQXxBQ3Jtc0tubFB4dmthVGVEOHVGTlE2Y2UzSUpDODZvRWFrLW92NW9yUlNYUGZ0aUJhWnRqcEd3VmdJQUNtV1hFTjhaMTJ1d2hQZXk4Y2pKaDBQNWxkRE1NUUhUU0dJSDEzWGJ0QWNDR1dpaUN6dUF6M21POGlnbw&q=https%3A%2F%2Fwww.slack.com%2F&v=Yi1cI9nY_p4\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://www.slack.com\"})}),\" \"]}),/*#__PURE__*/t(\"p\",{children:[\"SUBSCRIBE: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqa2hRNC1nVlVfYjNvb01HTlV4cWdIU2w1ako3UXxBQ3Jtc0tud21EUWxmc0xJVzdrR0swRXU4TmQycXVQYVdjRjNvS1ZmVFNIMjdBdWR3b2M4OGRKdmYydjZta0RvVVkwb25qX0hYeVZLajl4UVF4VTJQdzFBM1k3RC1POHYxQ0YzLTdRd1UxUDdyUkFXd2kxS2RKdw&q=https%3A%2F%2Fbit.ly%2FSlackSubscribe&v=Yi1cI9nY_p4\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://bit.ly/SlackSubscribe\"})}),\" \"]}),/*#__PURE__*/t(\"p\",{children:[\"CONNECT WITH SLACK: \",/*#__PURE__*/e(\"br\",{}),\"Visit Slack\u2019s WEBSITE: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbnk3dkowenlQNG9mY2VWbWNJOXhOSXRoU2JZQXxBQ3Jtc0tuTGRUblBxLXBIV295OXdyNGRsVXlJbkZkbURIeFI4NU9CQ19OMHJUX0ZyRjZSZ2FWZU5QaXpiOVFTMlZuMG4wTlNuR2FzOHQteTFsUzBjYkg0VmVQQjdpYzVjWGhsNjNlNG9FX3FRQ1lrdk8wUTVlYw&q=https%3A%2F%2Fslack.com%2F&v=Yi1cI9nY_p4\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://slack.com/\"})}),\" \",/*#__PURE__*/e(\"br\",{}),\"Like Slack on FACEBOOK: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbi1oUG5haG8wVVYtenlVYVJrRTJBMXNiLVY1Z3xBQ3Jtc0tsVW9tbTBkVmFfZVJlSEEybVRGUzZCMTV1cHpzMmNYM0hhZFZXalVhRGhoNUdCMWpDYVN4SjUtX1FYMnh3YTJZc2hEaVQzVEFMWVpmQ1JSZTBzcm1Kek01ZDJ5bHJmdzMxU0dmNzR1RmZ5UzhVVmVaQQ&q=https%3A%2F%2Fwww.facebook.com%2Fslackhq&v=Yi1cI9nY_p4\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://www.facebook.com/slackhq\"})}),\" \",/*#__PURE__*/e(\"br\",{}),\"Follow Slack on TWITTER: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbVdXVUdXMWI1X0ItSmYxWFQzaFRvazNhNk5PQXxBQ3Jtc0ttMlF6aDFGVl9jUk14VndvaGhGVjc0c3hvNTdnZXh2VXpFYTNEN0RWb2lkVWxmLVBEel9JVWdXQ2VzbFNzX1ZxdlUwVGU0SmtYRkJud21HdUJpUHlmTllQbnNTSUdZYXAxdmRCYzV2RGVaX0UzVERZZw&q=https%3A%2F%2Ftwitter.com%2Fslackhq&v=Yi1cI9nY_p4\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://twitter.com/slackhq\"})})]})]});export const richText136=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/Eu3LMd959Wk\"})})})});export const richText137=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Introducing Project Lighthouse, a groundbreaking initiative launched by Airbnb in the United States to uncover, measure, and overcome discrimination when booking or hosting on Airbnb. \"}),/*#__PURE__*/t(\"p\",{children:[\"ABOUT AIRBNB \",/*#__PURE__*/e(\"br\",{}),\"Airbnb is a platform that connects people from around the world to incredible places to stay and interesting things to do. Whether an apartment for a night, a castle for a week, or salsa lessons in Havana to help you truly live there. The Airbnb community aims to create a world where all 7.5 billion people can belong anywhere. \"]}),/*#__PURE__*/t(\"p\",{children:[\"CONNECT WITH AIRBNB \",/*#__PURE__*/e(\"br\",{}),\"Visit the Airbnb website: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbG1SM2RReGxRbDFNTFBPbnpwTzRGOUFwNGRCZ3xBQ3Jtc0ttV1ZLWXhyenlOYVhRS202Yk1HdDNrWmR1VTU5akxIODdfVUJNNktWTnh3akVYODRIeV9ndXdMSW5tMkRkczVTeVpycGxUcmdjT0R3V1ZXdmhqeGljLVdVbHNmNGRCNm5EcVhvSV9UVC1mT3hqZEJ1Zw&q=https%3A%2F%2Fwww.airbnb.com%2F&v=Eu3LMd959Wk\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://www.airbnb.com\"})}),\" \",/*#__PURE__*/e(\"br\",{}),\"Like Airbnb on Facebook: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbVliRWdVeWNJTjAySVd6VmdQbmVwM01MM2JhZ3xBQ3Jtc0ttV2NuYzRTVUY2Z1RzTDJMUVBaakctamNLdzFIR0tSeENsOFUwWXJiRzRHSllNa0NGeHFyQ25SdEdWbE11WVJOUnFTVVR3Q3ZpVFk1NV9oS3JmUHRtUGVaekNBYmlmVm5DRjRsR09pdUppTVpSQmRJMA&q=https%3A%2F%2Fwww.facebook.com%2Fairbnb%2F&v=Eu3LMd959Wk\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://www.facebook.com/airbnb/\"})}),\" \",/*#__PURE__*/e(\"br\",{}),\"Follow Airbnb on Twitter: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbXJmdklpRFA3d3J5dHFpN3VIakZnUFBMZW5zd3xBQ3Jtc0tuZWlDYzRiTXllN25mSEhOREY0QlNrMzktUHpjcG51Y1MxNGk1cU1felhEd0E1aXczaXlKTTE5LVhTNnV4TFYwVGE1YlBlYnM5cUNhZlEyUmhMTmRiV3R6NDlFUms5cTh0bUtTaHdWV1F0SGVWb1N5MA&q=https%3A%2F%2Ftwitter.com%2Fairbnb&v=Eu3LMd959Wk\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://twitter.com/airbnb\"})}),\" \",/*#__PURE__*/e(\"br\",{}),\"Follow Airbnb on Instagram: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqa1pMT2VQbjByVzFGNjJkT0FQSUJfamJhSXJ2UXxBQ3Jtc0ttNjZvWV9aVEpERFJDWHRrVmYzR3hvUjNUVDhsR1J0MWRBNXBRRHU5eS1BVkJ4SjUtcDFrMndtWUtjem52bDVSci1yVl93VlZoUDNMSFloaXpRTUJXTFBDZHJnUVR3aU1zRDhYYkN2bW14ckpaZ3Zvaw&q=https%3A%2F%2Fwww.instagram.com%2Fairbnb%2F&v=Eu3LMd959Wk\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://www.instagram.com/airbnb/\"})})]})]});export const richText138=/*#__PURE__*/e(i.Fragment,{children:/*#__PURE__*/e(a.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(o,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(n,{...t,play:\"On\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/qCUAEDvaJsY\"})})})});export const richText139=/*#__PURE__*/t(i.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"Today, \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/hashtag/intel\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"#Intel\"})}),\" makes a leap into the future, with a transformed Intel brand that reflects the company's essential role in creating \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/hashtag/technology\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"#technology\"})}),\" that moves the world forward. Intel's new brand features a modern and contemporary design and an inspirational marketing platform built for action and positive impact: \u201CDo Something Wonderful.\u201D Intel has developed a new corporate logo that is built from its iconic designs of the past. \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/hashtag/innovation\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"#Innovation\"})}),\" \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/hashtag/digitaltransformation\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"#DigitalTransformation\"})})]}),/*#__PURE__*/e(\"p\",{children:\"About Intel Newsroom Intel Newsroom brings you the latest news and updates on world-changing technology that enriches the lives of everyone on Earth. Connect with us today!\"}),/*#__PURE__*/t(\"p\",{children:[\"Visit the Intel Newsroom: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbW1sM19mUzh6UG5GMG52M2FaNEpkeng3MG1kUXxBQ3Jtc0ttbmZDSlB1STRnbTJCNU5GenNYWk1KX1ZZMUFQSUlJMEg0aVg3NlowZGM0OUtnMzh1VHpZUHE0WkV4ZlJuUWlVaEstMWNBQ2dTNUdzRFFJUkV2RXAyaTRib3hZcUlWZm9FbEl5WHZ3ZFl0UnFsNU4wVQ&q=https%3A%2F%2Fwww.intel.com%2Fcontent%2Fwww%2Fus%2Fen%2Fnewsroom%2Fhome.html&v=qCUAEDvaJsY\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://www.intel.com/content/www/us/...\"})}),\" \",/*#__PURE__*/e(\"br\",{}),\"Follow @IntelNews on Twitter: \",/*#__PURE__*/e(r,{href:\"https://www.youtube.com/redirect?event=video_description&redir_token=QUFFLUhqbU4tdVo2c2kzM2ZCbTNmUVNSd1NrNm5sRkgwd3xBQ3Jtc0ttcHNLU3hfdFpJZUpaRDRLRjhOVHd4Q05PYXFIQTRIcEJKRW1NVS00dTZXMUVDTWI5RjlfVDlxdFRLeXdDcm9FcS1sZjRzalNCZVZMRENwbVE3c1B5RTJ3TTRoeUxpZ0s5c0YxWDloQ2VzNEt5RWQ2OA&q=https%3A%2F%2Ftwitter.com%2Fintelnews&v=qCUAEDvaJsY\",motionChild:!0,nodeId:\"nTDdCS2Fh\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(a.a,{children:\"https://twitter.com/intelnews\"})})]})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText100\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText94\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText43\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText115\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText127\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText37\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText31\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText33\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText49\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText39\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText83\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText55\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText91\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText112\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText75\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText69\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText82\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText30\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText38\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText134\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText90\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText88\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText113\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText119\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText36\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText63\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText92\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText54\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText108\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText58\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText64\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText87\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText135\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText95\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText41\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText101\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText57\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText34\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText62\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText59\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText106\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText89\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText50\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText130\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText80\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText126\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText110\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText32\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText40\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText81\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText103\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText86\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText79\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText137\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText104\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText66\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText131\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText102\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText72\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText53\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText107\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText133\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText139\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText51\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText85\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText56\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText47\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText45\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText67\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText84\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText123\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText78\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText52\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText77\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText98\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText42\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText96\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText46\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText60\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText125\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText109\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText129\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText44\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText99\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText76\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText65\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText122\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText138\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText105\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText111\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText136\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText120\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText35\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText114\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText121\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText128\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText132\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText48\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText118\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText97\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText117\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText124\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText93\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText71\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText70\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText116\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText74\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText61\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText73\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText68\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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Aa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,SAAW,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,YAAc,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,UAAY,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,WAAa,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "p", "x", "motion", "ComponentPresetsConsumer", "Youtube", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "richText8", "richText9", "richText10", "richText11", "richText12", "richText13", "u", "richText14", "richText15", "richText16", "richText17", "richText18", "richText19", "richText20", "richText21", "richText22", "richText23", "richText24", "richText25", "richText26", "richText27", "richText28", "richText29", "richText30", "richText31", "richText32", "richText33", "richText34", "richText35", "richText36", "richText37", "richText38", "richText39", "richText40", "richText41", "richText42", "richText43", "richText44", "richText45", "richText46", "richText47", "richText48", "richText49", "richText50", "richText51", "richText52", "richText53", "richText54", "richText55", "richText56", "richText57", "richText58", "richText59", "richText60", "richText61", "richText62", "richText63", "richText64", "richText65", "richText66", "richText67", "richText68", "richText69", "richText70", "richText71", "richText72", "richText73", "richText74", "richText75", "richText76", "richText77", "richText78", "richText79", "richText80", "richText81", "richText82", "richText83", "richText84", "richText85", "richText86", "richText87", "richText88", "richText89", "richText90", "richText91", "richText92", "richText93", "richText94", "richText95", "richText96", "richText97", "richText98", "richText99", "richText100", "richText101", "richText102", "richText103", "richText104", "richText105", "richText106", "richText107", "richText108", "richText109", "richText110", "richText111", "richText112", "richText113", "richText114", "richText115", "richText116", "richText117", "richText118", "richText119", "richText120", "richText121", "richText122", "richText123", "richText124", "richText125", "richText126", "richText127", "richText128", "richText129", "richText130", "richText131", "Link", "richText132", "richText133", "richText134", "richText135", "richText136", "richText137", "richText138", "richText139", "__FramerMetadata__"]
}
