{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/SxLT7J8zYqbags7J0mpX/i1hXZn1s9fGCB4aQalSX/ORzPtOsf5.js", "ssg:https://framerusercontent.com/modules/PANJ02IF6Oa24Vx2Z9o8/WkhqAEDr2Et9W2nnhQfR/TOC_KC.js", "ssg:https://framerusercontent.com/modules/9ttgzhFenAD1dfeTJulA/ZwbU4Ke3xk9Ampj0lEIe/TOCPhone_KC.js"],
  "sourcesContent": ["// Generated by Framer (f318921)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Telegraf Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Telegraf Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/j9OZF9P5dPiHAoZDndyCTUpkjIs.otf\"}]}];export const css=['.framer-THxDs .framer-styles-preset-1acytzp:not(.rich-text-wrapper), .framer-THxDs .framer-styles-preset-1acytzp.rich-text-wrapper h3 { --framer-font-family: \"Telegraf Regular\", \"Telegraf Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 115%; --framer-paragraph-spacing: 24px; --framer-text-alignment: left; --framer-text-color: var(--token-f8d7aeb3-f2b0-489a-8419-379d3e3118b5, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-THxDs .framer-styles-preset-1acytzp:not(.rich-text-wrapper), .framer-THxDs .framer-styles-preset-1acytzp.rich-text-wrapper h3 { --framer-font-family: \"Telegraf Regular\", \"Telegraf Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 115%; --framer-paragraph-spacing: 24px; --framer-text-alignment: left; --framer-text-color: var(--token-f8d7aeb3-f2b0-489a-8419-379d3e3118b5, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-THxDs .framer-styles-preset-1acytzp:not(.rich-text-wrapper), .framer-THxDs .framer-styles-preset-1acytzp.rich-text-wrapper h3 { --framer-font-family: \"Telegraf Regular\", \"Telegraf Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 115%; --framer-paragraph-spacing: 24px; --framer-text-alignment: left; --framer-text-color: var(--token-f8d7aeb3-f2b0-489a-8419-379d3e3118b5, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-THxDs\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{Frame,motion}from\"framer\";export function TableOfContents(){const[headings,setHeadings]=useState([]);const[activeId,setActiveId]=useState(null);const observer=useRef(null);const listItemRefs=useRef([]);useEffect(()=>{// Search for H3 and H4 tags within the div with id \"blog-content\"\nconst contentDiv=document.getElementById(\"blog-content\");if(contentDiv){const h3Elements=contentDiv.querySelectorAll(\"h3\");const h4Elements=contentDiv.querySelectorAll(\"h4\");const h3Data=Array.from(h3Elements).map((h3,index)=>{// Set scroll-margin-top for H3\nh3.style.scrollMarginTop=\"200px\";// Generate an id for each H3 if it doesn't have one\nif(!h3.id){h3.id=`section-${index}`;}return{id:h3.id,text:h3.innerText,level:\"h3\"};});const h4Data=Array.from(h4Elements).map((h4,index)=>{// Set scroll-margin-top for H4\nh4.style.scrollMarginTop=\"200px\";// Generate an id for each H4 if it doesn't have one\nif(!h4.id){h4.id=`subsection-${index}`;}return{id:h4.id,text:h4.innerText,level:\"h4\"};});// Combine and sort by appearance order\nconst combinedHeadings=[...h3Data,...h4Data].sort((a,b)=>{const aElement=document.getElementById(a.id);const bElement=document.getElementById(b.id);return aElement.compareDocumentPosition(bElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1;});setHeadings(combinedHeadings);// Setup Intersection Observer\nobserver.current=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){setActiveId(entry.target.id);}});},{rootMargin:\"-150px 0% -80% 0%\",threshold:0});combinedHeadings.forEach(heading=>{const element=document.getElementById(heading.id);if(element){observer.current.observe(element);}});// Set the first item as active initially\n//setActiveId(\n//     combinedHeadings.length > 0 ? combinedHeadings[0].id : null\n// )\n}return()=>{if(observer.current){observer.current.disconnect();}};},[]);const handleClick=id=>{const element=document.getElementById(id);if(element){const topOffset=150// Matches the intended scroll margin\n;const elementPosition=element.getBoundingClientRect().top;const offsetPosition=elementPosition+window.pageYOffset-topOffset;window.scrollTo({top:offsetPosition,behavior:\"smooth\"});}};const getActiveItemMetrics=()=>{const index=headings.findIndex(h=>h.id===activeId);if(listItemRefs.current[index]){const{offsetTop,offsetHeight}=listItemRefs.current[index];return{offsetTop,offsetHeight};console.log(offsetTop);}return{offsetTop:0,offsetHeight:0};};const{offsetTop,offsetHeight}=getActiveItemMetrics();return /*#__PURE__*/_jsxs(Frame,{style:{background:\"transparent\",padding:0,width:\"100%\",height:\"auto\",position:\"relative\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:0,top:0},children:/*#__PURE__*/_jsx(\"div\",{style:{width:6,height:offsetHeight,borderRadius:\"8px\",backgroundColor:\"green\",transition:\"transform 0.3s ease, height 0.3s ease\",transform:`translateY(${offsetTop}px)`}})}),/*#__PURE__*/_jsx(\"ul\",{style:{listStyleType:\"none\",padding:0,backgroundColor:\"#fff\",marginLeft:6},children:headings.map((heading,index)=>/*#__PURE__*/_jsx(\"li\",{ref:el=>listItemRefs.current[index]=el,style:{margin:\"5px 0\",padding:heading.level===\"h4\"?\"3px 0px 8px 0px\":\"8px 0\",paddingLeft:12,cursor:\"pointer\",marginLeft:heading.level===\"h4\"?\"16px\":\"0px\"},children:/*#__PURE__*/_jsx(motion.a,{onClick:()=>handleClick(heading.id),//href={`#${heading.id}`}\n    style:{textDecoration:\"none\",cursor:\"pointer\",fontFamily:\"Inter\",fontSize:14,color:heading.id===activeId?\"green\":\"black\",fontWeight:heading.level===\"h3\"?\"bold\":\"normal\"},whileHover:{color:\"green\"},className:\"toc-link\",id:\"toc-link\",children:heading.text})},heading.id))})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOfContents\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TOC_KC.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{motion}from\"framer\";import{useClickOutside}from\"@react-hooks-library/core\";export function TableOfContentsPhone(){const[headings,setHeadings]=useState([]);const[activeId,setActiveId]=useState(null);const[activeSection,setActiveSection]=useState(null);const observer=useRef(null);const[isRotated,setIsRotated]=useState(false);const[dropdownVisible,setDropdownVisible]=useState(false);const listItemRefs=useRef([]);useEffect(()=>{// Search for H3 and H4 tags within the div with id \"blog-content\"\nconst contentDiv=document.getElementById(\"blog-content\");if(contentDiv){const h3Elements=contentDiv.querySelectorAll(\"h3\");const h4Elements=contentDiv.querySelectorAll(\"h4\");const h3Data=Array.from(h3Elements).map((h3,index)=>{// Set scroll-margin-top for H3\nh3.style.scrollMarginTop=\"200px\";// Generate an id for each H3 if it doesn't have one\nif(!h3.id){h3.id=`section-${index}`;}return{id:h3.id,text:h3.innerText,level:\"h3\"};});const h4Data=Array.from(h4Elements).map((h4,index)=>{// Set scroll-margin-top for H4\nh4.style.scrollMarginTop=\"200px\";// Generate an id for each H4 if it doesn't have one\nif(!h4.id){h4.id=`subsection-${index}`;}return{id:h4.id,text:h4.innerText,level:\"h4\"};});// Combine and sort by appearance order\nconst combinedHeadings=[...h3Data,...h4Data].sort((a,b)=>{const aElement=document.getElementById(a.id);const bElement=document.getElementById(b.id);return aElement.compareDocumentPosition(bElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1;});setHeadings(combinedHeadings);// Setup Intersection Observer\nobserver.current=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){setActiveId(entry.target.id);setActiveSection(entry.target.textContent);}});},{rootMargin:\"0px 0px -60% 0px\"});combinedHeadings.forEach(heading=>{const element=document.getElementById(heading.id);if(element){observer.current.observe(element);}});}return()=>{if(observer.current){observer.current.disconnect();}};},[]);const refSection=useRef(null);const handleClick=id=>{const element=document.getElementById(id);if(element){const topOffset=200// Matches the intended scroll margin\n;const elementPosition=element.getBoundingClientRect().top;const offsetPosition=elementPosition+window.scrollY-topOffset;window.scrollTo({top:offsetPosition,behavior:\"smooth\"});}setDropdownVisible(false);if(isRotated){setIsRotated(false);}};const toggleDropdown=()=>{setDropdownVisible(!dropdownVisible);setIsRotated(!isRotated);};useClickOutside(refSection,()=>{setDropdownVisible(false);if(isRotated){setIsRotated(false);}});return /*#__PURE__*/_jsxs(\"div\",{style:{backgroundColor:\"#ffffff\",padding:0,width:\"100%\",height:\"auto\",position:\"relative\"},ref:refSection,children:[/*#__PURE__*/_jsxs(\"button\",{onClick:toggleDropdown,style:{padding:\"8px 20px\",fontFamily:\"Inter\",fontSize:\".85rem\",borderRadius:80,background:\"transparent\",border:\"1px solid #08292F\",color:\"#08292F\",cursor:\"pointer\",alignItems:\"center\",display:\"flex\",justifyContent:\"space-between\",gap:8,flexWrap:\"nowrap\",width:\"100%\",fontWeight:700,textTransform:\"uppercase\"},children:[activeSection||\"Jump to section\",/*#__PURE__*/_jsx(motion.div,{animate:{rotate:isRotated?180:0},children:/*#__PURE__*/_jsx(\"svg\",{width:\"12\",height:\"12\",viewBox:\"0 0 14 12\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",children:/*#__PURE__*/_jsx(\"g\",{id:\"Chevron--down\",children:/*#__PURE__*/_jsx(\"path\",{id:\"Vector\",d:\"M8 11L3 6.00001L3.7 5.30001L8 9.60001L12.3 5.30001L13 6.00001L8 11Z\",fill:\"#08292F\"})})})})]}),dropdownVisible&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",boxShadow:\"0px 3px 15px #0000001A\",borderRadius:8,boxSizing:\"border-box\",zIndex:9,width:\"100%\"},children:/*#__PURE__*/_jsx(\"ul\",{style:{fontFamily:\"Inter\",fontSize:\"1rem\",background:\"#ffffff\",color:\"#08292F\",cursor:\"pointer\",listStyle:\"none\",padding:\"20px 0px\",margin:0},children:headings.map((heading,index)=>/*#__PURE__*/_jsx(motion.li,{ref:el=>listItemRefs.current[index]=el,onClick:()=>{handleClick(heading.id);},style:{padding:\".5rem 1.25rem .5rem 1.25rem\",color:heading.id===activeId?\"green\":\"black\",fontWeight:heading.level===\"h3\"?\"bold\":\"normal\",marginLeft:heading.level===\"h4\"?\"8px\":\"0\"},initial:{backgroundColor:\"transparent\"},whileHover:{backgroundColor:\"#f9f9f9\"},children:heading.text},heading.id))})})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOfContentsPhone\":{\"type\":\"reactComponent\",\"name\":\"TableOfContentsPhone\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TOCPhone_KC.map"],
  "mappings": "2NAAAA,IAC8BC,EAAU,UAAU,CAAC,yBAAyB,CAAC,EAAS,IAAMC,EAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,mBAAmB,OAAO,SAAS,IAAI,sEAAsE,CAAC,CAAC,CAAC,EAAeC,EAAI,CAAC,ytBAAytB,+wBAA+wB,2wBAA2wB,EAAeC,EAAU,eCDthFC,IAA8I,SAASC,GAAiB,CAAC,GAAK,CAACC,EAASC,CAAW,EAAEC,EAAS,CAAC,CAAC,EAAO,CAACC,EAASC,CAAW,EAAEF,EAAS,IAAI,EAAQG,EAASC,EAAO,IAAI,EAAQC,EAAaD,EAAO,CAAC,CAAC,EAAEE,EAAU,IAAI,CACrU,IAAMC,EAAW,SAAS,eAAe,cAAc,EAAE,GAAGA,EAAW,CAAC,IAAMC,EAAWD,EAAW,iBAAiB,IAAI,EAAQE,EAAWF,EAAW,iBAAiB,IAAI,EAAQG,EAAO,MAAM,KAAKF,CAAU,EAAE,IAAI,CAACG,EAAGC,KAC1ND,EAAG,MAAM,gBAAgB,QACrBA,EAAG,KAAIA,EAAG,GAAG,WAAWC,CAAK,IAAU,CAAC,GAAGD,EAAG,GAAG,KAAKA,EAAG,UAAU,MAAM,IAAI,EAAG,EAAQE,EAAO,MAAM,KAAKJ,CAAU,EAAE,IAAI,CAACK,EAAGF,KAClIE,EAAG,MAAM,gBAAgB,QACrBA,EAAG,KAAIA,EAAG,GAAG,cAAcF,CAAK,IAAU,CAAC,GAAGE,EAAG,GAAG,KAAKA,EAAG,UAAU,MAAM,IAAI,EAAG,EACjFC,EAAiB,CAAC,GAAGL,EAAO,GAAGG,CAAM,EAAE,KAAK,CAACG,EAAEC,IAAI,CAAC,IAAMC,EAAS,SAAS,eAAeF,EAAE,EAAE,EAAQG,EAAS,SAAS,eAAeF,EAAE,EAAE,EAAE,OAAOC,EAAS,wBAAwBC,CAAQ,EAAE,KAAK,4BAA4B,GAAG,CAAE,CAAC,EAAEpB,EAAYgB,CAAgB,EAC3QZ,EAAS,QAAQ,IAAI,qBAAqBiB,GAAS,CAACA,EAAQ,QAAQC,GAAO,CAAIA,EAAM,gBAAgBnB,EAAYmB,EAAM,OAAO,EAAE,CAAG,CAAC,CAAE,EAAE,CAAC,WAAW,oBAAoB,UAAU,CAAC,CAAC,EAAEN,EAAiB,QAAQO,GAAS,CAAC,IAAMC,EAAQ,SAAS,eAAeD,EAAQ,EAAE,EAAKC,GAASpB,EAAS,QAAQ,QAAQoB,CAAO,CAAG,CAAC,CAI3T,CAAC,MAAM,IAAI,CAAIpB,EAAS,SAASA,EAAS,QAAQ,WAAW,CAAG,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMqB,EAAYC,GAAI,CAAC,IAAMF,EAAQ,SAAS,eAAeE,CAAE,EAAE,GAAGF,EAAQ,CACzF,IAAMG,EAA1CH,EAAQ,sBAAsB,EAAE,IAAyC,OAAO,YAAY,IAAU,OAAO,SAAS,CAAC,IAAIG,EAAe,SAAS,QAAQ,CAAC,CAAE,CAAC,EAAQC,EAAqB,IAAI,CAAC,IAAMf,EAAMd,EAAS,UAAU8B,GAAGA,EAAE,KAAK3B,CAAQ,EAAE,GAAGI,EAAa,QAAQO,CAAK,EAAE,CAAC,GAAK,CAAC,UAAAiB,EAAU,aAAAC,CAAY,EAAEzB,EAAa,QAAQO,CAAK,EAAE,MAAM,CAAC,UAAAiB,EAAU,aAAAC,CAAY,CAAyB,CAAC,MAAM,CAAC,UAAU,EAAE,aAAa,CAAC,CAAE,EAAO,CAAC,UAAAD,EAAU,aAAAC,CAAY,EAAEH,EAAqB,EAAE,OAAoBI,EAAMC,EAAM,CAAC,MAAM,CAAC,WAAW,cAAc,QAAQ,EAAE,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAE,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,KAAK,EAAE,IAAI,CAAC,EAAE,SAAsBA,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,OAAOH,EAAa,aAAa,MAAM,gBAAgB,QAAQ,WAAW,wCAAwC,UAAU,cAAcD,CAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAeI,EAAK,KAAK,CAAC,MAAM,CAAC,cAAc,OAAO,QAAQ,EAAE,gBAAgB,OAAO,WAAW,CAAC,EAAE,SAASnC,EAAS,IAAI,CAACwB,EAAQV,IAAqBqB,EAAK,KAAK,CAAC,IAAIC,GAAI7B,EAAa,QAAQO,CAAK,EAAEsB,EAAG,MAAM,CAAC,OAAO,QAAQ,QAAQZ,EAAQ,QAAQ,KAAK,kBAAkB,QAAQ,YAAY,GAAG,OAAO,UAAU,WAAWA,EAAQ,QAAQ,KAAK,OAAO,KAAK,EAAE,SAAsBW,EAAKE,EAAO,EAAE,CAAC,QAAQ,IAAIX,EAAYF,EAAQ,EAAE,EACnzC,MAAM,CAAC,eAAe,OAAO,OAAO,UAAU,WAAW,QAAQ,SAAS,GAAG,MAAMA,EAAQ,KAAKrB,EAAS,QAAQ,QAAQ,WAAWqB,EAAQ,QAAQ,KAAK,OAAO,QAAQ,EAAE,WAAW,CAAC,MAAM,OAAO,EAAE,UAAU,WAAW,GAAG,WAAW,SAASA,EAAQ,IAAI,CAAC,CAAC,EAAEA,EAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CCbvRc,IAA+L,SAASC,GAAsB,CAAC,GAAK,CAACC,EAASC,CAAW,EAAEC,EAAS,CAAC,CAAC,EAAO,CAACC,EAASC,CAAW,EAAEF,EAAS,IAAI,EAAO,CAACG,EAAcC,CAAgB,EAAEJ,EAAS,IAAI,EAAQK,EAASC,EAAO,IAAI,EAAO,CAACC,EAAUC,CAAY,EAAER,EAAS,EAAK,EAAO,CAACS,EAAgBC,CAAkB,EAAEV,EAAS,EAAK,EAAQW,EAAaL,EAAO,CAAC,CAAC,EAAEM,EAAU,IAAI,CACxhB,IAAMC,EAAW,SAAS,eAAe,cAAc,EAAE,GAAGA,EAAW,CAAC,IAAMC,EAAWD,EAAW,iBAAiB,IAAI,EAAQE,EAAWF,EAAW,iBAAiB,IAAI,EAAQG,EAAO,MAAM,KAAKF,CAAU,EAAE,IAAI,CAACG,EAAGC,KAC1ND,EAAG,MAAM,gBAAgB,QACrBA,EAAG,KAAIA,EAAG,GAAG,WAAWC,CAAK,IAAU,CAAC,GAAGD,EAAG,GAAG,KAAKA,EAAG,UAAU,MAAM,IAAI,EAAG,EAAQE,EAAO,MAAM,KAAKJ,CAAU,EAAE,IAAI,CAACK,EAAGF,KAClIE,EAAG,MAAM,gBAAgB,QACrBA,EAAG,KAAIA,EAAG,GAAG,cAAcF,CAAK,IAAU,CAAC,GAAGE,EAAG,GAAG,KAAKA,EAAG,UAAU,MAAM,IAAI,EAAG,EACjFC,EAAiB,CAAC,GAAGL,EAAO,GAAGG,CAAM,EAAE,KAAK,CAACG,EAAEC,IAAI,CAAC,IAAMC,EAAS,SAAS,eAAeF,EAAE,EAAE,EAAQG,EAAS,SAAS,eAAeF,EAAE,EAAE,EAAE,OAAOC,EAAS,wBAAwBC,CAAQ,EAAE,KAAK,4BAA4B,GAAG,CAAE,CAAC,EAAE1B,EAAYsB,CAAgB,EAC3QhB,EAAS,QAAQ,IAAI,qBAAqBqB,GAAS,CAACA,EAAQ,QAAQC,GAAO,CAAIA,EAAM,iBAAgBzB,EAAYyB,EAAM,OAAO,EAAE,EAAEvB,EAAiBuB,EAAM,OAAO,WAAW,EAAG,CAAC,CAAE,EAAE,CAAC,WAAW,kBAAkB,CAAC,EAAEN,EAAiB,QAAQO,GAAS,CAAC,IAAMC,EAAQ,SAAS,eAAeD,EAAQ,EAAE,EAAKC,GAASxB,EAAS,QAAQ,QAAQwB,CAAO,CAAG,CAAC,CAAE,CAAC,MAAM,IAAI,CAAIxB,EAAS,SAASA,EAAS,QAAQ,WAAW,CAAG,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMyB,EAAWxB,EAAO,IAAI,EAAQyB,EAAYC,GAAI,CAAC,IAAMH,EAAQ,SAAS,eAAeG,CAAE,EAAE,GAAGH,EAAQ,CACld,IAAMI,EAA1CJ,EAAQ,sBAAsB,EAAE,IAAyC,OAAO,QAAQ,IAAU,OAAO,SAAS,CAAC,IAAII,EAAe,SAAS,QAAQ,CAAC,CAAE,CAACvB,EAAmB,EAAK,EAAKH,GAAWC,EAAa,EAAK,CAAG,EAAQ0B,EAAe,IAAI,CAACxB,EAAmB,CAACD,CAAe,EAAED,EAAa,CAACD,CAAS,CAAE,EAAE,OAAA4B,EAAgBL,EAAW,IAAI,CAACpB,EAAmB,EAAK,EAAKH,GAAWC,EAAa,EAAK,CAAG,CAAC,EAAsB4B,EAAM,MAAM,CAAC,MAAM,CAAC,gBAAgB,UAAU,QAAQ,EAAE,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAE,IAAIN,EAAW,SAAS,CAAcM,EAAM,SAAS,CAAC,QAAQF,EAAe,MAAM,CAAC,QAAQ,WAAW,WAAW,QAAQ,SAAS,SAAS,aAAa,GAAG,WAAW,cAAc,OAAO,oBAAoB,MAAM,UAAU,OAAO,UAAU,WAAW,SAAS,QAAQ,OAAO,eAAe,gBAAgB,IAAI,EAAE,SAAS,SAAS,MAAM,OAAO,WAAW,IAAI,cAAc,WAAW,EAAE,SAAS,CAAC/B,GAAe,kBAA+BkC,EAAKC,EAAO,IAAI,CAAC,QAAQ,CAAC,OAAO/B,EAAU,IAAI,CAAC,EAAE,SAAsB8B,EAAK,MAAM,CAAC,MAAM,KAAK,OAAO,KAAK,QAAQ,YAAY,KAAK,OAAO,MAAM,6BAA6B,SAAsBA,EAAK,IAAI,CAAC,GAAG,gBAAgB,SAAsBA,EAAK,OAAO,CAAC,GAAG,SAAS,EAAE,sEAAsE,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE5B,GAA8B4B,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,UAAU,yBAAyB,aAAa,EAAE,UAAU,aAAa,OAAO,EAAE,MAAM,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,MAAM,CAAC,WAAW,QAAQ,SAAS,OAAO,WAAW,UAAU,MAAM,UAAU,OAAO,UAAU,UAAU,OAAO,QAAQ,WAAW,OAAO,CAAC,EAAE,SAASvC,EAAS,IAAI,CAAC8B,EAAQV,IAAqBmB,EAAKC,EAAO,GAAG,CAAC,IAAIC,GAAI5B,EAAa,QAAQO,CAAK,EAAEqB,EAAG,QAAQ,IAAI,CAACR,EAAYH,EAAQ,EAAE,CAAE,EAAE,MAAM,CAAC,QAAQ,8BAA8B,MAAMA,EAAQ,KAAK3B,EAAS,QAAQ,QAAQ,WAAW2B,EAAQ,QAAQ,KAAK,OAAO,SAAS,WAAWA,EAAQ,QAAQ,KAAK,MAAM,GAAG,EAAE,QAAQ,CAAC,gBAAgB,aAAa,EAAE,WAAW,CAAC,gBAAgB,SAAS,EAAE,SAASA,EAAQ,IAAI,EAAEA,EAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE",
  "names": ["init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "init_ssg_sandbox_shims", "TableOfContents", "headings", "setHeadings", "ye", "activeId", "setActiveId", "observer", "pe", "listItemRefs", "ue", "contentDiv", "h3Elements", "h4Elements", "h3Data", "h3", "index", "h4Data", "h4", "combinedHeadings", "a", "b", "aElement", "bElement", "entries", "entry", "heading", "element", "handleClick", "id", "offsetPosition", "getActiveItemMetrics", "h", "offsetTop", "offsetHeight", "u", "Frame", "p", "el", "motion", "init_ssg_sandbox_shims", "TableOfContentsPhone", "headings", "setHeadings", "ye", "activeId", "setActiveId", "activeSection", "setActiveSection", "observer", "pe", "isRotated", "setIsRotated", "dropdownVisible", "setDropdownVisible", "listItemRefs", "ue", "contentDiv", "h3Elements", "h4Elements", "h3Data", "h3", "index", "h4Data", "h4", "combinedHeadings", "a", "b", "aElement", "bElement", "entries", "entry", "heading", "element", "refSection", "handleClick", "id", "offsetPosition", "toggleDropdown", "useClickOutside", "u", "p", "motion", "el"]
}
