{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/CaN367C2uJdgWAbkutwq/dZF8mohjE2yUz3G8oAHf/MD_CMS.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "// @ts-nocheck\nimport{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({background:\"#f0f0f0\"});const getTextNodes=node=>{let textNodes=[];if(node.nodeType===Node.TEXT_NODE){textNodes.push(node);}else if(node.nodeType===Node.ELEMENT_NODE){node.childNodes.forEach(child=>{textNodes=textNodes.concat(getTextNodes(child));});}return textNodes;};export function CMSOverride(Component){return props=>{const[store]=useStore();const makeImagesFullWidth=React.useCallback(()=>{const images=document.querySelectorAll(\"img\");images.forEach(img=>{img.style.width=\"100%\";});},[]);const parseAndEmbedPosts=React.useCallback(()=>{const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{const codeBlocks=contentDiv.querySelectorAll(\".framer-text.framer-text-module\");codeBlocks.forEach(codeBlock=>{if(codeBlock instanceof HTMLElement){const text=codeBlock.textContent||\"\";// Check if it's a table\nif(text.trim().startsWith(\"|\")&&text.includes(\"\\n|\")){// It's a table, don't process it here\nreturn;}// REGEX SOCIAL EMBEDS\nconst regexX=/\\[X\\]\\((https?:\\/\\/[^\\s\\)]+)\\)(?:\\((\\d+)\\))?/g;const regexReddit=/\\[Reddit\\]\\((https?:\\/\\/[^\\s\\)]+)\\)(?:\\((\\d+)\\))?/g;const regexYoutube=/\\[Youtube\\]\\((https?:\\/\\/(?:www\\.)?youtube\\.com\\/watch\\?v=([^\\s&\\)]+)|https?:\\/\\/(?:www\\.)?youtu\\.be\\/([^\\s\\)]+))\\)(?:\\((\\d+)\\))?/g;const regexInstagram=/\\[Instagram\\]\\((https?:\\/\\/(?:www\\.)?instagram\\.com\\/p\\/([^\\s\\)]+))\\)(?:\\((\\d+)\\))?/g;// REGEX CTA - Update to handle multi-line content\nconst regexCTA=/\\[CTA\\]\\(({[\\s\\S]*?})\\)/g;// Check if there are any matches before proceeding\nif(!text.match(regexX)&&!text.match(regexReddit)&&!text.match(regexYoutube)&&!text.match(regexInstagram)&&!text.match(regexCTA)){return;}let match;let lastIndex=0;const fragments=[];while((match=regexX.exec(text))!==null){// Add text before the match\nif(match.index>lastIndex){fragments.push(document.createTextNode(text.slice(lastIndex,match.index)));}// Create an X post embed\nconst xPostUrl=match[1];const iframeHeight=match[2]||\"520\"// Default height to 520 if not specified\n;const embedContainer=document.createElement(\"div\");embedContainer.style.margin=\"10px 0\";// Generate the tweet embed iframe\nembedContainer.innerHTML=`<iframe\n                border=\"0\"\n                frameborder=\"0\"\n                height=\"${iframeHeight}\"\n                width=\"100%\"\n                max-width=\"500px\"\n                scrolling=\"no\"\n                src=\"https://platform.twitter.com/embed/Tweet.html?dnt=true&id=${xPostUrl.split(\"/\").pop()}\">\n              </iframe>`;fragments.push(embedContainer);lastIndex=regexX.lastIndex;}while((match=regexReddit.exec(text))!==null){// Add text before the match\nif(match.index>lastIndex){fragments.push(document.createTextNode(text.slice(lastIndex,match.index)));}// Create a Reddit post embed\nconst redditPostUrl=match[1];const iframeHeight=match[2]||\"316\"// Default height to 316 if not specified\n;const embedContainer=document.createElement(\"div\");embedContainer.style.margin=\"10px 0\";// Generate the Reddit embed iframe\nembedContainer.innerHTML=`<iframe\n                border=\"0\"\n                frameborder=\"0\"\n                height=\"${iframeHeight}\"\n                width=\"100%\"\n                max-width=\"500px\"\n                scrolling=\"no\"\n                src=\"https://www.redditmedia.com${new URL(redditPostUrl).pathname}?ref_source=embed&ref=share&embed=true\">\n              </iframe>`;fragments.push(embedContainer);lastIndex=regexReddit.lastIndex;}while((match=regexYoutube.exec(text))!==null){// Add text before the match\nif(match.index>lastIndex){fragments.push(document.createTextNode(text.slice(lastIndex,match.index)));}// Extract video ID from either youtube.com or youtu.be URL\nconst videoId=match[2]||match[3];const iframeHeight=match[4]||\"450\"// Default height\n;const embedContainer=document.createElement(\"div\");embedContainer.style.margin=\"10px 0\";// Generate the YouTube embed iframe\nembedContainer.innerHTML=`<iframe\n                width=\"100%\"\n                height=\"${iframeHeight}\"\n                src=\"https://www.youtube.com/embed/${videoId}\"\n                frameborder=\"0\"\n                allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n                allowfullscreen>\n              </iframe>`;fragments.push(embedContainer);lastIndex=regexYoutube.lastIndex;}while((match=regexInstagram.exec(text))!==null){// Add text before the match\nif(match.index>lastIndex){fragments.push(document.createTextNode(text.slice(lastIndex,match.index)));}// Create an Instagram post embed\nconst postId=match[2].split(\"/\")[0];const iframeHeight=match[3]||\"750\"// Default height\n;const embedContainer=document.createElement(\"div\");embedContainer.style.margin=\"10px 0\";console.log({postId});embedContainer.innerHTML=`<blockquote class=\"instagram-media\" data-instgrm-permalink=\"https://www.instagram.com/p/${postId}/?utm_source=ig_embed&amp;utm_campaign=loading\" data-instgrm-version=\"14\" style=\" background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px);\"><div style=\"padding:16px;\"> <a href=\"https://www.instagram.com/p/${postId}/?utm_source=ig_embed&amp;utm_campaign=loading\" style=\" background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%;\" target=\"_blank\"> <div style=\" display: flex; flex-direction: row; align-items: center;\"> <div style=\"background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px;\"></div> <div style=\"display: flex; flex-direction: column; flex-grow: 1; justify-content: center;\"> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px;\"></div> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px;\"></div></div></div><div style=\"padding: 19% 0;\"></div> <div style=\"display:block; height:50px; margin:0 auto 12px; width:50px;\"><svg width=\"50px\" height=\"50px\" viewBox=\"0 0 60 60\" version=\"1.1\" xmlns=\"https://www.w3.org/2000/svg\" xmlns:xlink=\"https://www.w3.org/1999/xlink\"><g stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g transform=\"translate(-511.000000, -20.000000)\" fill=\"#000000\"><g><path d=\"M556.869,30.41 C554.814,30.41 553.148,32.076 553.148,34.131 C553.148,36.186 554.814,37.852 556.869,37.852 C558.924,37.852 560.59,36.186 560.59,34.131 C560.59,32.076 558.924,30.41 556.869,30.41 M541,60.657 C535.114,60.657 530.342,55.887 530.342,50 C530.342,44.114 535.114,39.342 541,39.342 C546.887,39.342 551.658,44.114 551.658,50 C551.658,55.887 546.887,60.657 541,60.657 M541,33.886 C532.1,33.886 524.886,41.1 524.886,50 C524.886,58.899 532.1,66.113 541,66.113 C549.9,66.113 557.115,58.899 557.115,50 C557.115,41.1 549.9,33.886 541,33.886 M565.378,62.101 C565.244,65.022 564.756,66.606 564.346,67.663 C563.803,69.06 563.154,70.057 562.106,71.106 C561.058,72.155 560.06,72.803 558.662,73.347 C557.607,73.757 556.021,74.244 553.102,74.378 C549.944,74.521 548.997,74.552 541,74.552 C533.003,74.552 532.056,74.521 528.898,74.378 C525.979,74.244 524.393,73.757 523.338,73.347 C521.94,72.803 520.942,72.155 519.894,71.106 C518.846,70.057 518.197,69.06 517.654,67.663 C517.244,66.606 516.755,65.022 516.623,62.101 C516.479,58.943 516.448,57.996 516.448,50 C516.448,42.003 516.479,41.056 516.623,37.899 C516.755,34.978 517.244,33.391 517.654,32.338 C518.197,30.938 518.846,29.942 519.894,28.894 C520.942,27.846 521.94,27.196 523.338,26.654 C524.393,26.244 525.979,25.756 528.898,25.623 C532.057,25.479 533.004,25.448 541,25.448 C548.997,25.448 549.943,25.479 553.102,25.623 C556.021,25.756 557.607,26.244 558.662,26.654 C560.06,27.196 561.058,27.846 562.106,28.894 C563.154,29.942 563.803,30.938 564.346,32.338 C564.756,33.391 565.244,34.978 565.378,37.899 C565.522,41.056 565.552,42.003 565.552,50 C565.552,57.996 565.522,58.943 565.378,62.101 M570.82,37.631 C570.674,34.438 570.167,32.258 569.425,30.349 C568.659,28.377 567.633,26.702 565.965,25.035 C564.297,23.368 562.623,22.342 560.652,21.575 C558.743,20.834 556.562,20.326 553.369,20.18 C550.169,20.033 549.148,20 541,20 C532.853,20 531.831,20.033 528.631,20.18 C525.438,20.326 523.257,20.834 521.349,21.575 C519.376,22.342 517.703,23.368 516.035,25.035 C514.368,26.702 513.342,28.377 512.574,30.349 C511.834,32.258 511.326,34.438 511.181,37.631 C511.035,40.831 511,41.851 511,50 C511,58.147 511.035,59.17 511.181,62.369 C511.326,65.562 511.834,67.743 512.574,69.651 C513.342,71.625 514.368,73.296 516.035,74.965 C517.703,76.634 519.376,77.658 521.349,78.425 C523.257,79.167 525.438,79.673 528.631,79.82 C531.831,79.965 532.853,80.001 541,80.001 C549.148,80.001 550.169,79.965 553.369,79.82 C556.562,79.673 558.743,79.167 560.652,78.425 C562.623,77.658 564.297,76.634 565.965,74.965 C567.633,73.296 568.659,71.625 569.425,69.651 C570.167,67.743 570.674,65.562 570.82,62.369 C570.966,59.17 571,58.147 571,50 C571,41.851 570.966,40.831 570.82,37.631\"></path></g></g></g></svg></div><div style=\"padding-top: 8px;\"> <div style=\" color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px;\">View this post on Instagram</div></div><div style=\"padding: 12.5% 0;\"></div> <div style=\"display: flex; flex-direction: row; margin-bottom: 14px; align-items: center;\"><div> <div style=\"background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px);\"></div> <div style=\"background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px;\"></div> <div style=\"background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px);\"></div></div><div style=\"margin-left: 8px;\"> <div style=\" background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px;\"></div> <div style=\" width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg)\"></div></div><div style=\"margin-left: auto;\"> <div style=\" width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px);\"></div> <div style=\" background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px);\"></div> <div style=\" width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px);\"></div></div></div> <div style=\"display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px;\"> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px;\"></div> <div style=\" background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px;\"></div></div></a><p style=\" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap;\"><a href=\"https://www.instagram.com/p/${postId}/?utm_source=ig_embed&amp;utm_campaign=loading\" style=\" color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none;\" target=\"_blank\">A post shared by Bryan Johnson (@bryanjohnson_)</a></p></div></blockquote>`;fragments.push(embedContainer);lastIndex=regexInstagram.lastIndex;}while((match=regexCTA.exec(text))!==null){console.log(\"CTA REGEX MATCH\");// Add text before the match\nif(match.index>lastIndex){fragments.push(document.createTextNode(text.slice(lastIndex,match.index)));}try{// Parse the CTA content\n// [CTA]({\"title\":\"Get 15% off your first membership payment\",\"cta\":{\"label\":\"Order your kit\",\"href\":\"https://app.mynucleus.com\"}})\n// Get everything inside the parentheses\nconst ctaJson=match[1];// Clean up whitespace and newlines before parsing\nconst cleanJson=ctaJson.replace(/\\s+/g,\" \").trim();const parsedCTA=JSON.parse(cleanJson);// Create CTA container\nconst ctaContainer=document.createElement(\"div\");ctaContainer.style.cssText=`\n                  margin: 20px 0;\n                  padding: 32px;\n                  border-radius: 16px;\n                  background-color: #FAF9F8;\n                  display: flex;\n                  justify-content: space-between;\n                  align-items: center;\n                `;// Add title\nconst title=document.createElement(\"h3\");title.textContent=parsedCTA.title;title.style.cssText=`\n                  margin: 0;\n                  font-size: 20px;\n                  font-weight: 500;\n                  color: #333;\n                  line-height: 1.2;\n                `;// Add CTA button\nconst button=document.createElement(\"a\");button.href=parsedCTA.cta.href;button.textContent=parsedCTA.cta.label;button.style.cssText=`\n                  display: inline-block;\n                  padding: 16px 32px;\n                  background-color: #1C1C1C;\n                  color: #fff;\n                  text-decoration: none;\n                  border-radius: 100px;\n                  font-weight: 500;\n                  font-size: 18px;\n                  white-space: nowrap;\n                `;ctaContainer.appendChild(title);ctaContainer.appendChild(button);fragments.push(ctaContainer);}catch(error){console.error(\"Error parsing CTA:\",error);}lastIndex=regexCTA.lastIndex;}// Add remaining text\nif(lastIndex<text.length){fragments.push(document.createTextNode(text.slice(lastIndex)));}// Replace the original content with the new fragments\nif(fragments.length>0){codeBlock.innerHTML=\"\";fragments.forEach(fragment=>codeBlock.appendChild(fragment));}}});});// Load Twitter widget script if not already loaded\nif(!document.getElementById(\"twitter-widget-script\")){const script=document.createElement(\"script\");script.id=\"twitter-widget-script\";script.src=\"https://platform.twitter.com/widgets.js\";script.async=true;document.body.appendChild(script);}// load Instagram widget script if not already loaded\nif(!document.getElementById(\"instagram-widget-script\")){const script=document.createElement(\"script\");script.id=\"instagram-widget-script\";script.src=\"//www.instagram.com/embed.js\";script.async=true;document.body.appendChild(script);}},[]);const extractAndFormatTable=React.useCallback(()=>{const cmScroller=document.querySelectorAll(\".cm-scroller\");cmScroller.forEach((scroller,idx)=>{const content=scroller.querySelector(\".cm-content\");// Add null check for content or if it doesn't start with a pipe\nif(!content||!content.innerText.startsWith(\"|\")){return;}// Skip if this content block has already been processed\nif(content.getAttribute(\"data-table-processed\")===\"true\"){return;}// Mark this content block as processed\ncontent.setAttribute(\"data-table-processed\",\"true\");const cmLines=content.querySelectorAll(\".cm-line\");const cmLinesArrayOfStrings=Array.from(cmLines).map(line=>line.innerText);// Log the first few lines for debugging\ncmLinesArrayOfStrings.slice(0,6).forEach((line,lineIdx)=>{console.log(`Line ${lineIdx}:`,line);});const outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                    border: 1px solid #D0D9DE;\n                    border-radius: 6px;\n                    overflow: hidden;\n                    width: 100%;\n                    height: 100%;\n                `;// Create an inner container for the scrollable content\nconst innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                    overflow: auto;\n                    width: 100%;\n                    height: 100%;\n                `;// Create the table\nconst table=document.createElement(\"table\");table.style.cssText=`\n                    border-collapse: separate;\n                    border-spacing: 0;\n                    width: 100%;\n                `;const tableHtml=cmLinesArrayOfStrings.map((line,index)=>{console.log(\"line\",line);const cells=line.split(\"|\").map(cell=>cell.trim()).filter(cell=>cell!==\"\");if(index===0){// Header row: Convert to <th> elements\nreturn`<tr>${cells.map((cell,cellIndex)=>`<th${cellIndex===0?' class=\"first-column\"':\"\"}>${cell}</th>`).join(\"\")}</tr>`;}else if(index===1){return\"\"// Skip the separator row\n;}else{// while (cells.length < 4) {\n//   cells.push('');\n// }\n// Convert Markdown links to HTML links within the cells\nreturn`<tr>${cells.map((cell,cellIndex)=>`<td${cellIndex===0?' class=\"first-column\"':\"\"}>${cell.replace(/\\[([^\\]]+)\\]\\(([^)]+)\\)/g,'<a href=\"$2\" target=\"_blank\">$1</a>')}</td>`).join(\"\")}</tr>`;}}).filter(row=>row!==\"\").join(\"\");table.innerHTML=`\n                    <table style=\"width: 100%; border-collapse: separate; border-spacing: 0;\">\n                        ${tableHtml}\n                    </table>\n                `;// Add styles\nconst style=document.createElement(\"style\");style.textContent=`\n                    table th, table td {\n                        padding: 12px;\n                        text-align: left;\n                        background-color: #FFF;\n                        border-right: 1px solid #D0D9DE;\n                        border-bottom: 1px solid #D0D9DE;\n                    }\n                    table th {\n                        font-weight: bold;\n                        font-size: 18px;\n                        color: #333;\n                        position: sticky;\n                        top: 0;\n                        z-index: 1;\n                    }\n                    table td {\n                        font-size: 16px;\n                        line-height: 1.5;\n                    }\n                    .first-column {\n                        white-space: nowrap;\n                        overflow: hidden;\n                        text-overflow: ellipsis;\n                    }\n                    table tr:last-child td {\n                        border-bottom: none;\n                    }\n                    table th:last-child,\n                    table td:last-child {\n                        border-right: none;\n                    }\n                `;outerContainer.appendChild(style);// Assemble the structure\ninnerContainer.appendChild(table);outerContainer.appendChild(innerContainer);// Add new html table\nscroller.appendChild(outerContainer);// Remove old markdown table\nif(scroller.firstChild){scroller.removeChild(scroller.firstChild);}});},[store.background]);React.useEffect(()=>{parseAndEmbedPosts();extractAndFormatTable();makeImagesFullWidth();// Add a MutationObserver to handle dynamic content changes\nconst observer=new MutationObserver(extractAndFormatTable);const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{observer.observe(contentDiv,{childList:true,subtree:true});});// Remove white-space: pre-wrap from the Content div\nconst style=document.createElement(\"style\");style.textContent=`\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] {\n                    white-space: normal !important;\n                }\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] > div {\n                    white-space: normal !important;\n                }\n            `;document.head.appendChild(style);return()=>{observer.disconnect();document.head.removeChild(style);};},[extractAndFormatTable,parseAndEmbedPosts]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"CMSOverride\":{\"type\":\"reactHoc\",\"name\":\"CMSOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MD_CMS.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "CMSOverride", "Component", "props", "store", "useStore", "makeImagesFullWidth", "te", "img", "parseAndEmbedPosts", "contentDiv", "codeBlock", "text", "regexX", "regexReddit", "regexYoutube", "regexInstagram", "regexCTA", "match", "lastIndex", "fragments", "xPostUrl", "iframeHeight", "embedContainer", "redditPostUrl", "videoId", "postId", "cleanJson", "parsedCTA", "ctaContainer", "title", "button", "error", "fragment", "script", "extractAndFormatTable", "scroller", "idx", "content", "cmLines", "cmLinesArrayOfStrings", "line", "lineIdx", "outerContainer", "innerContainer", "table", "tableHtml", "index", "cells", "cell", "cellIndex", "row", "style", "ue", "observer", "p"]
}
