{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://cdn.framerauth.com/scripts/framerauth-sdk@beta.js", "ssg:https://framerusercontent.com/modules/eK6CdXQGYjTxT5yeP01H/8tabirBegnMoumgjnjey/FramerAuth.js", "ssg:https://framerusercontent.com/modules/1nfDh4G5VyYCLhesDStg/CfsnyeQkOpbJKYSP4Y8j/NtA_kHvzp.js", "ssg:https://framerusercontent.com/modules/dGpE7YBdoUq8APvBVpwh/mg5vmEcWpmdnjtrvKKCt/PGAi0Bfw8.js", "ssg:https://framerusercontent.com/modules/yCHjVjp3FEZGqVGNbMvQ/u6pzxibiGgoIPBHGykiE/BfpZeIo8n.js", "ssg:https://framerusercontent.com/modules/qDdsVLSYaT8FmSUm8mZN/fkzffZg8bvco3o0qpnsp/KBgV9gmbx.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js", "ssg:https://framerusercontent.com/modules/oMD9aUecDeFDj99dExAw/TlTt4KQ0wfmxfKlGGzWH/aUtUp84ZS.js", "ssg:https://framerusercontent.com/modules/xsmoMl95ff2oglwGkNPc/bX4nviANSvikgTEBH7lA/nf4m8S4HC.js", "ssg:https://framerusercontent.com/modules/qn03a81hkXZQRkf8SIuk/xhuMJjl7uNxejsZR1UlN/TDR5zznxb.js", "ssg:https://framerusercontent.com/modules/YEbQICoafFVjzETYwNzW/iEfisy7Hy9koUFHA65Ru/yY3mXqYA5.js", "ssg:https://framerusercontent.com/modules/ba5CDWAMKf1sXnrfAQjf/QLgjlWago1pAUvAvzvHH/EIfSx8f3v.js", "ssg:https://framerusercontent.com/modules/vB0n0xRlajb7WllPdthS/RaEaGGzBJx2MMrKgV6Dd/F801woTAj.js", "ssg:https://framerusercontent.com/modules/FSA0Z89dvELxX5J4VQv2/QE0JJT289AyCxFTxRwdm/TDR5zznxb.js", "ssg:https://framerusercontent.com/modules/uQBlSDsi0VHsbg4NWAur/7mU6963cANngZeUOMcIu/aUtUp84ZS.js", "ssg:https://framerusercontent.com/modules/3NPw8KgUTcvMXoSe0jam/LvhHIi1sIFrCROPhjwsI/ITTHT9C01.js", "ssg:https://framerusercontent.com/modules/r7xNc2dK1E4YVMymi0dT/A3grqh0uF6ScTruxHIm8/Preloader.js", "ssg:https://framerusercontent.com/modules/xBbbc2rrZFmFcJ5uo9JB/kj8kFay05R1GVjwc67rJ/DSPHxWNiI.js", "ssg:https://framerusercontent.com/modules/igwrgREnouGRIQI2I7yt/LPFsLdkLWdgfFHRiKAr6/YeRS4aV5v.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", "var k = Object.defineProperty;\nvar _ = (t, r, e) => r in t ? k(t, r, { enumerable: !0, configurable: !0, writable: !0, value: e }) : t[r] = e;\nvar o = (t, r, e) => (_(t, typeof r != \"symbol\" ? r + \"\" : r, e), e);\nclass p {\n  constructor(r) {\n    o(this, \"prefix\");\n    this.prefix = r;\n  }\n  has(r) {\n    const e = this.prefix + r;\n    return localStorage.getItem(e) != null;\n  }\n  get(r) {\n    const e = this.prefix + r;\n    return localStorage.getItem(e);\n  }\n  set(r, e) {\n    const s = this.prefix + r;\n    localStorage.setItem(s, e);\n  }\n  remove(r) {\n    const e = this.prefix + r;\n    localStorage.removeItem(e);\n  }\n}\nclass w extends Error {\n  constructor(e, s) {\n    super(e);\n    o(this, \"status\");\n    o(this, \"__isAuthError\", !0);\n    this.name = \"AuthError\", this.status = s;\n  }\n}\nfunction h(t) {\n  return typeof t == \"object\" && t !== null && \"__isAuthError\" in t;\n}\nclass R extends w {\n  constructor(e, s) {\n    super(e, s);\n    o(this, \"status\");\n    this.name = \"AuthApiError\", this.status = s;\n  }\n  toJSON() {\n    return {\n      name: this.name,\n      message: this.message,\n      status: this.status\n    };\n  }\n}\nclass T extends w {\n  constructor(e, s) {\n    super(e);\n    o(this, \"originalError\");\n    this.name = \"AuthUnknownError\", this.originalError = s;\n  }\n}\nclass f extends w {\n  constructor(e, s, n) {\n    super(e);\n    o(this, \"name\");\n    o(this, \"status\");\n    this.name = s, this.status = n;\n  }\n  toJSON() {\n    return {\n      name: this.name,\n      message: this.message,\n      status: this.status\n    };\n  }\n}\nclass S extends f {\n  constructor() {\n    super(\"Auth session or user missing\", \"AuthInvalidTokenResponseError\", 500);\n  }\n}\nclass x extends f {\n  constructor() {\n    super(\"Message missing\", \"AuthInvalidResetPasswordResponseError\", 500);\n  }\n}\nclass l extends f {\n  constructor(r) {\n    super(r, \"AuthInvalidCredentialsError\", 400);\n  }\n}\nclass U extends f {\n  constructor() {\n    super(\"Site missing\", \"AuthInvalidSiteResponseError\", 500);\n  }\n}\nclass O extends f {\n  constructor() {\n    super(\"User missing\", \"AuthInvalidUserResponseError\", 500);\n  }\n}\nclass I extends f {\n  constructor() {\n    super(\"License key status missing\", \"AuthInvalidValidateLicenseKeyResponseError\", 500);\n  }\n}\nclass J extends f {\n  constructor() {\n    super(\"License key invalid\", \"AuthInvalidActivateLicenseKeyResponseError\", 500);\n  }\n}\nclass N extends f {\n  constructor() {\n    super(\"Data invalid\", \"AuthUpdateUserDataResponseError\", 500);\n  }\n}\nclass y extends f {\n  constructor(r, e) {\n    super(r, \"AuthRetryableFetchError\", e);\n  }\n}\nconst m = (t) => t.msg || t.message || t.error_description || t.error || JSON.stringify(t), P = [502, 503, 504];\nasync function A(t) {\n  if (!F(t))\n    throw new y(m(t), 0);\n  if (P.includes(t.status))\n    throw new y(m(t), t.status);\n  let r;\n  try {\n    r = await t.json();\n  } catch (e) {\n    throw new T(m(e), e);\n  }\n  throw new R(m(r), t.status || 500);\n}\nconst j = (t, r, e, s) => {\n  const n = { method: t, headers: (r == null ? void 0 : r.headers) || {} };\n  return t === \"GET\" ? n : (n.headers = { \"Content-Type\": \"application/json;charset=UTF-8\", ...r == null ? void 0 : r.headers }, n.body = JSON.stringify(s), { ...n, ...e });\n};\nasync function d(t, r, e, s) {\n  var c;\n  const n = { ...s == null ? void 0 : s.headers };\n  s != null && s.jwt && (n.Authorization = `Bearer ${s.jwt}`);\n  const a = (c = s == null ? void 0 : s.query) != null ? c : {};\n  s != null && s.redirectTo && (a.redirect_to = s.redirectTo);\n  const i = Object.keys(a).length ? \"?\" + new URLSearchParams(a).toString() : \"\", u = await b(\n    t,\n    r,\n    e + i,\n    { headers: n, noResolveJson: s == null ? void 0 : s.noResolveJson },\n    {},\n    s == null ? void 0 : s.body\n  );\n  return s != null && s.xform ? s == null ? void 0 : s.xform(u) : { data: { ...u }, error: null };\n}\nasync function b(t, r, e, s, n, a) {\n  const i = j(r, s, n, a);\n  let u;\n  try {\n    u = await t(e, i);\n  } catch (c) {\n    throw console.error(c), new y(m(c), 0);\n  }\n  if (u.ok || await A(u), s != null && s.noResolveJson)\n    return u;\n  try {\n    return await u.json();\n  } catch (c) {\n    await A(c);\n  }\n}\nfunction E(t) {\n  var s;\n  let r = null;\n  D(t == null ? void 0 : t.session) && (r = { ...t.session });\n  const e = (s = t.user) != null ? s : t;\n  return { data: { session: r, user: e }, error: null };\n}\nfunction K(t) {\n  var e;\n  return { data: { message: (e = t.message) != null ? e : t }, error: null };\n}\nfunction $(t) {\n  var e;\n  return { data: { message: (e = t.message) != null ? e : t }, error: null };\n}\nfunction L(t) {\n  var e;\n  return { data: { site: (e = t.site) != null ? e : t }, error: null };\n}\nfunction Y(t) {\n  var e;\n  return { data: { user: (e = t.user) != null ? e : t }, error: null };\n}\nfunction q(t) {\n  var e;\n  return { data: { valid: (e = t.valid) != null ? e : t }, error: null };\n}\nfunction z(t) {\n  var e;\n  return { data: { message: (e = t.message) != null ? e : t }, error: null };\n}\nfunction C(t) {\n  return { data: t != null ? t : t, error: null };\n}\nfunction D(t) {\n  return (t == null ? void 0 : t.access_token) && (t == null ? void 0 : t.expires_in);\n}\nconst F = (t) => typeof t == \"object\" && t !== null && \"status\" in t && \"ok\" in t && \"json\" in t && typeof t.json == \"function\";\nclass M {\n  constructor(r) {\n    o(this, \"store\");\n    o(this, \"url\");\n    o(this, \"headers\");\n    o(this, \"setSite\", (r) => {\n      this.store.set(\"site\", r);\n    });\n    o(this, \"setUser\", (r) => {\n      this.store.set(\"user\", r);\n    });\n    o(this, \"setSession\", (r) => {\n      this.store.set(\"session\", r);\n    });\n    o(this, \"getAccessToken\", () => {\n      if (!this.store.has(\"session\"))\n        return null;\n      const e = this.store.get(\"session\");\n      if (!e)\n        return null;\n      let s;\n      try {\n        s = JSON.parse(e);\n      } catch (a) {\n        return null;\n      }\n      const n = Math.floor(Date.now() / 1e3);\n      return s.expires_at && n > s.expires_at ? (this.store.remove(\"session\"), this.store.remove(\"user\"), null) : s.access_token;\n    });\n    o(this, \"getExpiresIn\", () => {\n      var e;\n      if (this.store.has(\"session\")) {\n        const s = this.store.get(\"session\");\n        if (s)\n          return (e = JSON.parse(s)) == null ? void 0 : e.expires_in;\n      }\n    });\n    o(this, \"getSite\", async (r = { cache: !0 }) => {\n      var n, a;\n      let e;\n      const s = this.store.get(\"site\");\n      return s && (r != null && r.cache) ? e = { data: { site: JSON.parse(s) }, error: null } : e = await this.fetchSite(), e.error && (e.error.status === 400 ? console.log(\n        `%cFramerAuth: Site not configured!\n\n%cPlease add your SITE_ID to the configuration script.\n%cError: ${((n = e.error) == null ? void 0 : n.message) || \"Unknown error\"}`,\n        \"color: orange; font-size: 16px;\",\n        \"color: inherit; font-size: 12px;\",\n        \"color: inherit; font-size: 12px;\"\n      ) : console.log(\n        `%cFramerAuth: Unable to load site data!\n\n%cNavigating to Homepage.\n%cError: ${((a = e.error) == null ? void 0 : a.message) || \"Site data not found\"}`,\n        \"color: red; font-size: 16px;\",\n        \"color: inherit; font-size: 12px;\",\n        \"color: inherit; font-size: 12px;\"\n      )), e;\n    });\n    o(this, \"getUser\", async (r = { cache: !0 }) => {\n      let e;\n      const s = Math.floor(Date.now() / 1e3), n = this.store.get(\"session\") || \"\";\n      if (!n)\n        e = { data: { user: null }, error: new w(\"Authorization token required.\", 401) };\n      else {\n        const a = JSON.parse(n), i = this.store.get(\"user\");\n        a.expires_at && s > a.expires_at ? (e = { data: { user: null }, error: new w(\"Token has expired.\", 401) }, this.store.remove(\"session\"), this.store.remove(\"user\")) : i && (r != null && r.cache) ? e = { data: { user: JSON.parse(i) }, error: null } : e = await this.fetchUser();\n      }\n      return e;\n    });\n    o(this, \"validateLicenseKey\", async (r) => {\n      try {\n        let e;\n        if (!r.license_key)\n          throw new l(\n            \"You must provide a license_key\"\n          );\n        const { license_key: s } = r;\n        e = await d(fetch, \"POST\", `${this.url}/validate`, {\n          headers: this.headers,\n          body: {\n            license_key: s\n          },\n          xform: q\n        });\n        const { data: n, error: a } = e;\n        return a ? { data: { valid: null }, error: a } : !n || n.valid === null ? { data: { valid: null }, error: new I() } : { data: { valid: n.valid }, error: null };\n      } catch (e) {\n        if (h(e))\n          return { data: { valid: null }, error: e };\n        throw e;\n      }\n    });\n    o(this, \"activateLicenseKey\", async (r) => {\n      try {\n        let e;\n        const s = this.getAccessToken();\n        if (!s)\n          throw new l(\n            \"You must provide a token\"\n          );\n        if (!r.license_key)\n          throw new l(\n            \"You must provide a license_key\"\n          );\n        const { license_key: n } = r;\n        e = await d(fetch, \"POST\", `${this.url}/me/license-keys/activate`, {\n          headers: this.headers,\n          body: {\n            license_key: n\n          },\n          xform: z,\n          jwt: s\n        });\n        const { data: a, error: i } = e;\n        return i ? { data: { message: null }, error: i } : !a || a.message === null ? { data: { message: null }, error: new J() } : (await this.getUser({ cache: !1 }), { data: { message: a.message }, error: null });\n      } catch (e) {\n        if (h(e))\n          return { data: { message: null }, error: e };\n        throw e;\n      }\n    });\n    o(this, \"signUp\", async (r) => {\n      var e;\n      try {\n        let s;\n        if (!r.email)\n          throw new l(\n            \"You must provide an email\"\n          );\n        if (!r.password)\n          throw new l(\n            \"You must provide a password\"\n          );\n        const { email: n, password: a, options: i } = r;\n        s = await d(fetch, \"POST\", `${this.url}/sign-up`, {\n          headers: this.headers,\n          redirectTo: i == null ? void 0 : i.emailRedirectTo,\n          body: {\n            email: n,\n            password: a,\n            data: (e = i == null ? void 0 : i.data) != null ? e : {}\n          },\n          xform: E\n        });\n        const { data: u, error: c } = s;\n        if (c)\n          return { data: { user: null, session: null }, error: c };\n        if (!u)\n          return { data: { user: null, session: null }, error: new S() };\n        const g = u.session, v = u.user;\n        return g && (this.setUser(JSON.stringify(v)), this.setSession(JSON.stringify(g))), { data: { user: v, session: g }, error: null };\n      } catch (s) {\n        if (h(s))\n          return { data: { user: null, session: null }, error: s };\n        throw s;\n      }\n    });\n    o(this, \"signInWithPassword\", async (r) => {\n      try {\n        if (!r.email)\n          throw new l(\n            \"You must provide an email\"\n          );\n        if (!r.password)\n          throw new l(\n            \"You must provide a password\"\n          );\n        let e;\n        const { email: s, password: n } = r;\n        e = await d(fetch, \"POST\", `${this.url}/token`, {\n          headers: this.headers,\n          body: {\n            email: s,\n            password: n\n          },\n          xform: E\n        });\n        const { data: a, error: i } = e;\n        return i ? { data: { user: null, session: null }, error: i } : !a || !a.session || !a.user ? { data: { user: null, session: null }, error: new S() } : (a.session && (this.setUser(JSON.stringify(a.user)), this.setSession(JSON.stringify(a.session))), { data: { user: a.user, session: a.session }, error: i });\n      } catch (e) {\n        if (h(e))\n          return { data: { user: null, session: null }, error: e };\n        throw e;\n      }\n    });\n    o(this, \"resetPasswordForEmail\", async (r) => {\n      try {\n        if (!r.email)\n          throw new l(\n            \"You must provide an email\"\n          );\n        let e;\n        const { email: s } = r;\n        e = await d(fetch, \"POST\", `${this.url}/password/reset`, {\n          headers: this.headers,\n          body: {\n            email: s\n          },\n          xform: K\n        });\n        const { data: n, error: a } = e;\n        return a ? { data: { message: null }, error: a } : !n || !n.message ? { data: { message: null }, error: new x() } : { data: { message: n.message }, error: a };\n      } catch (e) {\n        if (h(e))\n          return { data: { message: null }, error: e };\n        throw e;\n      }\n    });\n    o(this, \"updatePasswordForEmail\", async (r) => {\n      try {\n        if (!r.email)\n          throw new l(\n            \"You must provide an email\"\n          );\n        if (!r.code)\n          throw new l(\n            \"Reset token required\"\n          );\n        if (!r.email)\n          throw new l(\n            \"You must provide a new password\"\n          );\n        let e;\n        const { email: s, code: n, password: a } = r;\n        e = await d(fetch, \"POST\", `${this.url}/password/update`, {\n          headers: this.headers,\n          body: {\n            email: s,\n            code: n,\n            password: a\n          },\n          xform: $\n        });\n        const { data: i, error: u } = e;\n        return u ? { data: { message: null }, error: u } : !i || !i.message ? { data: { message: null }, error: new x() } : { data: { message: i.message }, error: u };\n      } catch (e) {\n        if (h(e))\n          return { data: { message: null }, error: e };\n        throw e;\n      }\n    });\n    o(this, \"signOut\", async (r = null) => (this.store.remove(\"session\"), this.store.remove(\"user\"), r && window.location.replace(r), { error: null }));\n    o(this, \"fetchSite\", async () => {\n      try {\n        let r;\n        r = await d(fetch, \"GET\", `${this.url}/site`, {\n          headers: this.headers,\n          xform: L\n        });\n        const { data: e, error: s } = r;\n        return s ? { data: { site: null }, error: s } : !e || !e.site ? { data: { site: null }, error: new U() } : (e.site && this.setSite(JSON.stringify(e.site)), { data: { site: e.site }, error: null });\n      } catch (r) {\n        if (h(r))\n          return { data: { site: null }, error: r };\n        throw r;\n      }\n    });\n    o(this, \"fetchUser\", async () => {\n      try {\n        let r;\n        const e = this.getAccessToken();\n        if (!e)\n          throw new l(\n            \"You must provide a token\"\n          );\n        r = await d(fetch, \"GET\", `${this.url}/me`, {\n          headers: this.headers,\n          xform: Y,\n          jwt: e\n        });\n        const { data: s, error: n } = r;\n        return n ? { data: { user: null }, error: n } : !s || !s.user ? { data: { user: null }, error: new O() } : (s.user && this.setUser(JSON.stringify(s.user)), { data: { user: s.user }, error: null });\n      } catch (r) {\n        if (h(r))\n          return { data: { user: null }, error: r };\n        throw r;\n      }\n    });\n    o(this, \"patchUserData\", async (r) => {\n      try {\n        const e = this.getAccessToken();\n        if (!e)\n          throw new l(\n            \"You must provide a token\"\n          );\n        let s;\n        s = await d(fetch, \"PATCH\", `${this.url}/me/data`, {\n          headers: this.headers,\n          body: r || {},\n          xform: C,\n          jwt: e\n        });\n        const { data: n, error: a } = s;\n        if (a)\n          return { data: null, error: a };\n        if (!n || n.valid === null)\n          return { data: null, error: new N() };\n        const { data: { user: i } } = await this.getUser({ cache: !0 });\n        return i && (i.data = n, this.setUser(JSON.stringify(i))), { data: n, error: null };\n      } catch (e) {\n        if (h(e))\n          return { data: null, error: e };\n        throw e;\n      }\n    });\n    if (this.store = new p(\"fa-\"), this.url = \"https://api.framerauth.com/v1\", r)\n      this.headers = { \"Content-Type\": \"application/json\", \"x-site-id\": r };\n    else {\n      this.headers = {}, console.error(\"Unable to initialize the Auth module, ensure you have added the framer-auth.js file to the beginning of the body.\");\n      return;\n    }\n  }\n}\nconsole.log(\"Framer Auth - Module v0.0.0\");\nconst G = new p(\"fa-\"), H = G.get(\"site-id\"), W = new M(H);\nexport {\n  W as auth\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useRouter,inferInitialRouteFromPath}from\"framer\";import{auth}from\"https://cdn.framerauth.com/scripts/framerauth-sdk@beta.js\";const useStore=createStore({user:null,isAuthenticated:false,isLoaded:false});export function withAuth(Component){return props=>{const[store,setStore]=useStore();useEffect(()=>{if(!store.isAuthenticated){auth.getUser({cache:false}).then(({data,error})=>{const{user}=data;if(user){setStore({user:user,isAuthenticated:true,isLoaded:true});}else{setStore({isLoaded:true});}});}},[]);return /*#__PURE__*/_jsx(Component,{...props,store:store});};}export function withStore(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,store:store});};}export function withSignOut(Component){const handleClick=()=>{auth.signOut(\"/\");};return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withEmail(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,text:store.user.email});};}export function withFirstName(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props,text:store.user.first_name});};}export function withLoggedIn(Component){return props=>{const[store,setStore]=useStore();if(!store.user)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withLoggedOut(Component){return props=>{const[store]=useStore();if(store.user)return null;let className=props.className||\"\";if(!store.isLoaded){className+=\" fa-cloak\";}return /*#__PURE__*/_jsx(Component,{...props,className:className.trim()});};}export function withActiveLicense(Component){return props=>{var _store_user;const[store]=useStore();const hasActiveLicense=(_store_user=store.user)===null||_store_user===void 0?void 0:_store_user.licenses.some(license=>license.status===\"active\");if(!hasActiveLicense)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withNoActiveLicense(Component){return props=>{var _store_user;const[store]=useStore();const hasActiveLicense=(_store_user=store.user)===null||_store_user===void 0?void 0:_store_user.licenses.some(license=>license.status===\"active\");if(hasActiveLicense)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withVariant(Component){return props=>{const[store]=useStore();const variant=store.user?null:props===null||props===void 0?void 0:props.variant;return /*#__PURE__*/_jsx(Component,{...props,variant:variant});};}export function withVariantActiveLicense(Component){return props=>{var _store_user;const[store]=useStore();const hasActiveLicense=(_store_user=store.user)===null||_store_user===void 0?void 0:_store_user.licenses.some(license=>license.status===\"active\");const variant=hasActiveLicense?null:props===null||props===void 0?void 0:props.variant;return /*#__PURE__*/_jsx(Component,{...props,variant:variant});};}export function withIsLessonComplete(Component){return props=>{var _store_user_data,_store_user;const[store,setStore]=useStore();// Do not display the component if the user is logged out\nif(!store.user)return null;const key=`course:status:${props===null||props===void 0?void 0:props.slug}`;const isCompleted=((_store_user=store.user)===null||_store_user===void 0?void 0:(_store_user_data=_store_user.data)===null||_store_user_data===void 0?void 0:_store_user_data[key])===\"completed\";if(!isCompleted)return null;return /*#__PURE__*/_jsx(Component,{...props});};}export function withActionCompleteLesson(Component){return props=>{var _store_user_data,_store_user;const router=useRouter();const[store,setStore]=useStore();const key=`course:status:${props===null||props===void 0?void 0:props.slug}`;let isCompleted=((_store_user=store.user)===null||_store_user===void 0?void 0:(_store_user_data=_store_user.data)===null||_store_user_data===void 0?void 0:_store_user_data[key])===\"completed\";// Do not display the component if the user is logged out\nif(!store.user)return null;// Define an async function handleClick to handle the click event.\nconst handleClick=async event=>{try{// If the lesson has been completed exit the function\nif(isCompleted)return;// Update the components local state (for instant UI update)\nisCompleted=true;// Call the FramerAuth API to update the user data, marking the course as completed.\nconst{data,error}=await auth.patchUserData({[key]:\"completed\"});// If there is an error throw it.\nif(error){throw new Error(\"Error updating course status.\");}// If there is no error, update the user data in the store with the updated data.\nconst updatedUser={...store.user,data};setStore({user:updatedUser});// If there is a link, redirect the user.\nif(props===null||props===void 0?void 0:props.link){const[path,hash]=props.link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}}}catch(error){console.error(error);isCompleted=false;}};// Set the variant based on the completed state\nconst variant=isCompleted?props===null||props===void 0?void 0:props.variant:null;// Render the original component with the modified props and onClick handler.\nreturn /*#__PURE__*/_jsx(Component,{...props,variant:variant,onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withNoActiveLicense\":{\"type\":\"reactHoc\",\"name\":\"withNoActiveLicense\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withVariant\":{\"type\":\"reactHoc\",\"name\":\"withVariant\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSignOut\":{\"type\":\"reactHoc\",\"name\":\"withSignOut\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLoggedOut\":{\"type\":\"reactHoc\",\"name\":\"withLoggedOut\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withEmail\":{\"type\":\"reactHoc\",\"name\":\"withEmail\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withIsLessonComplete\":{\"type\":\"reactHoc\",\"name\":\"withIsLessonComplete\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withActionCompleteLesson\":{\"type\":\"reactHoc\",\"name\":\"withActionCompleteLesson\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withActiveLicense\":{\"type\":\"reactHoc\",\"name\":\"withActiveLicense\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAuth\":{\"type\":\"reactHoc\",\"name\":\"withAuth\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLoggedIn\":{\"type\":\"reactHoc\",\"name\":\"withLoggedIn\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withFirstName\":{\"type\":\"reactHoc\",\"name\":\"withFirstName\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withVariantActiveLicense\":{\"type\":\"reactHoc\",\"name\":\"withVariantActiveLicense\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withStore\":{\"type\":\"reactHoc\",\"name\":\"withStore\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerAuth.map", "// Generated by Framer (91bcfbd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={BGi1syDn4:{pressed:true},t17YCY87G:{pressed:true}};const cycleOrder=[\"BGi1syDn4\",\"t17YCY87G\"];const serializationHash=\"framer-h6jkp\";const variantClassNames={BGi1syDn4:\"framer-v-2uy4d\",t17YCY87G:\"framer-v-mimbsm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Menu Active\":\"t17YCY87G\",Default:\"BGi1syDn4\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,k0y1V8ihR:tap!==null&&tap!==void 0?tap:props.k0y1V8ihR,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"BGi1syDn4\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,k0y1V8ihR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"BGi1syDn4\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1suunwd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(k0y1V8ihR){const res=await k0y1V8ihR(...args);if(res===false)return false;}setVariant(\"t17YCY87G\");});const onTap1pc1hf8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(k0y1V8ihR){const res=await k0y1V8ihR(...args);if(res===false)return false;}setVariant(\"BGi1syDn4\");});const onTap1gt1zl3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(k0y1V8ihR){const res=await k0y1V8ihR(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,\"aria-label\":\"Open Menu\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-2uy4d\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"BGi1syDn4\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1suunwd,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"BGi1syDn4-pressed\":{\"data-framer-name\":undefined,onTap:onTap1gt1zl3},\"t17YCY87G-pressed\":{\"data-framer-name\":undefined},t17YCY87G:{\"aria-label\":\"Close Menu\",\"data-framer-name\":\"Menu Active\",onTap:onTap1pc1hf8}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wm973f\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"lrAJIG013\",style:{backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{t17YCY87G:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jpxz5y\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"QiRqQb2Vb\",style:{backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{t17YCY87G:{rotate:45}}})]})})})});});const css=['.framer-h6jkp[data-border=\"true\"]::after, .framer-h6jkp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-h6jkp.framer-1nmj6rx, .framer-h6jkp .framer-1nmj6rx { display: block; }\",\".framer-h6jkp.framer-2uy4d { cursor: pointer; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-h6jkp .framer-1wm973f { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-h6jkp .framer-1jpxz5y { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-h6jkp.framer-v-mimbsm .framer-1wm973f, .framer-h6jkp.framer-v-mimbsm .framer-1jpxz5y { top: calc(50.00000000000002% - 2px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"t17YCY87G\":{\"layout\":[\"fixed\",\"fixed\"]},\"zoFr9b081\":{\"layout\":[\"fixed\",\"fixed\"]},\"x2hU6GDuM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"k0y1V8ihR\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerNtA_kHvzp=withCSS(Component,css,\"framer-h6jkp\");export default FramerNtA_kHvzp;FramerNtA_kHvzp.displayName=\"Menu Icon\";FramerNtA_kHvzp.defaultProps={height:44,width:44};addPropertyControls(FramerNtA_kHvzp,{variant:{options:[\"BGi1syDn4\",\"t17YCY87G\"],optionTitles:[\"Default\",\"Menu Active\"],title:\"Variant\",type:ControlType.Enum},k0y1V8ihR:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerNtA_kHvzp,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNtA_kHvzp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t17YCY87G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zoFr9b081\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x2hU6GDuM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"k0y1V8ihR\\\":\\\"tap\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"44\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NtA_kHvzp.map", "// Generated by Framer (c93245f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"a7IqE192x\"];const serializationHash=\"framer-nQFtS\";const variantClassNames={a7IqE192x:\"framer-v-cjl9z0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,width,...props})=>{return{...props,uhuEGmP0b:link!==null&&link!==void 0?link:props.uhuEGmP0b};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uhuEGmP0b,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a7IqE192x\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:uhuEGmP0b,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,\"aria-label\":\"Logo\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-cjl9z0\",className,classNames)} framer-11uaw81`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"a7IqE192x\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:108,intrinsicWidth:116,pixelHeight:108,pixelWidth:116,src:\"https://framerusercontent.com/images/ybtiQHQVKWTxbifkkqX3Nh0oAY.png\"},className:\"framer-yd0j6w\",\"data-framer-name\":\"PX_logo_removebg_preview\",layoutDependency:layoutDependency,layoutId:\"iUA7Mu03J\"})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nQFtS.framer-11uaw81, .framer-nQFtS .framer-11uaw81 { display: block; }\",\".framer-nQFtS.framer-cjl9z0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 118px; }\",\".framer-nQFtS .framer-yd0j6w { aspect-ratio: 1.0740740740740742 / 1; flex: none; height: 250%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 67px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nQFtS.framer-cjl9z0 { gap: 0px; } .framer-nQFtS.framer-cjl9z0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nQFtS.framer-cjl9z0 > :first-child { margin-left: 0px; } .framer-nQFtS.framer-cjl9z0 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 118\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uhuEGmP0b\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPGAi0Bfw8=withCSS(Component,css,\"framer-nQFtS\");export default FramerPGAi0Bfw8;FramerPGAi0Bfw8.displayName=\"Logo\";FramerPGAi0Bfw8.defaultProps={height:25,width:118};addPropertyControls(FramerPGAi0Bfw8,{uhuEGmP0b:{title:\"Link\",type:ControlType.Link}});addFonts(FramerPGAi0Bfw8,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPGAi0Bfw8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"25\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"uhuEGmP0b\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"118\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PGAi0Bfw8.map", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withLoggedOut}from\"https://framerusercontent.com/modules/eK6CdXQGYjTxT5yeP01H/8tabirBegnMoumgjnjey/FramerAuth.js\";import MenuIcon from\"https://framerusercontent.com/modules/1nfDh4G5VyYCLhesDStg/CfsnyeQkOpbJKYSP4Y8j/NtA_kHvzp.js\";import Logo from\"https://framerusercontent.com/modules/dGpE7YBdoUq8APvBVpwh/mg5vmEcWpmdnjtrvKKCt/PGAi0Bfw8.js\";const LogoFonts=getFonts(Logo);const MenuIconFonts=getFonts(MenuIcon);const MotionDivWithLoggedOut=withLoggedOut(motion.div);const cycleOrder=[\"DIbFIQLK8\",\"HW5WPhEFa\",\"Ea6B_amZT\",\"mJT6ZLKHV\",\"fknZqKYfC\",\"kGYEDZRuT\"];const serializationHash=\"framer-2wBzu\";const variantClassNames={DIbFIQLK8:\"framer-v-1x5lbm\",Ea6B_amZT:\"framer-v-11q2ko3\",fknZqKYfC:\"framer-v-1x7i4qf\",HW5WPhEFa:\"framer-v-c7klv6\",kGYEDZRuT:\"framer-v-15lc2m6\",mJT6ZLKHV:\"framer-v-ctois3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Course Portal Phone Open\":\"kGYEDZRuT\",\"Course Portal Phone\":\"fknZqKYfC\",\"Course Portal\":\"mJT6ZLKHV\",\"Phone Open\":\"Ea6B_amZT\",Default:\"DIbFIQLK8\",Phone:\"HW5WPhEFa\"};const getProps=({height,id,logoLink,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"DIbFIQLK8\",yyXaLK9Jc:logoLink!==null&&logoLink!==void 0?logoLink:props.yyXaLK9Jc};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,yyXaLK9Jc,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DIbFIQLK8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const k0y1V8ihR40fe6z=activeVariantCallback(async(...args)=>{setVariant(\"qljizU_gx\");});const k0y1V8ihRiwquat=activeVariantCallback(async(...args)=>{setVariant(\"Ea6B_amZT\");});const k0y1V8ihR1s3vsew=activeVariantCallback(async(...args)=>{setVariant(\"HW5WPhEFa\");});const k0y1V8ihR147792s=activeVariantCallback(async(...args)=>{setVariant(\"kGYEDZRuT\");});const k0y1V8ihRunfv1g=activeVariantCallback(async(...args)=>{setVariant(\"fknZqKYfC\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"HW5WPhEFa\",\"Ea6B_amZT\",\"fknZqKYfC\",\"kGYEDZRuT\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"HW5WPhEFa\")return false;return true;};const isDisplayed2=()=>{if([\"mJT6ZLKHV\",\"fknZqKYfC\",\"kGYEDZRuT\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1x5lbm\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"DIbFIQLK8\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-99a4ff36-eefd-4fca-b5d8-b9885d78a44f, rgba(251, 251, 254, 0.9))\",WebkitBackdropFilter:\"blur(5px)\",...style},variants:{Ea6B_amZT:{backdropFilter:\"none\",backgroundColor:\"var(--token-b445e89f-125f-4d6a-8ba9-052d49c5a306, rgb(255, 255, 255))\",WebkitBackdropFilter:\"none\"},fknZqKYfC:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6e27f5f4-99fb-4b5a-8fca-6765a1cf1837, rgb(230, 230, 230))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"var(--token-b445e89f-125f-4d6a-8ba9-052d49c5a306, rgb(255, 255, 255))\",WebkitBackdropFilter:\"none\"},kGYEDZRuT:{backdropFilter:\"none\",backgroundColor:\"var(--token-b445e89f-125f-4d6a-8ba9-052d49c5a306, rgb(255, 255, 255))\",WebkitBackdropFilter:\"none\"},mJT6ZLKHV:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6e27f5f4-99fb-4b5a-8fca-6765a1cf1837, rgb(230, 230, 230))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-b445e89f-125f-4d6a-8ba9-052d49c5a306, rgb(255, 255, 255))\"}},...addPropertyOverrides({Ea6B_amZT:{\"data-framer-name\":\"Phone Open\"},fknZqKYfC:{\"data-border\":true,\"data-framer-name\":\"Course Portal Phone\"},HW5WPhEFa:{\"data-framer-name\":\"Phone\"},kGYEDZRuT:{\"data-framer-name\":\"Course Portal Phone Open\"},mJT6ZLKHV:{\"data-border\":true,\"data-framer-name\":\"Course Portal\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19vaykh\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"mJIThFbNR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y33gmn\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"plpgPktS6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xzr7xe\",\"data-framer-name\":\"Logo & Theme\",layoutDependency:layoutDependency,layoutId:\"c7DnYc_UA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({HW5WPhEFa:{width:\"50px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wo37s-container\",layoutDependency:layoutDependency,layoutId:\"VfbdEclDy-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"VfbdEclDy\",layoutId:\"VfbdEclDy\",uhuEGmP0b:yyXaLK9Jc,width:\"100%\",...addPropertyOverrides({Ea6B_amZT:{style:{height:\"100%\",width:\"100%\"}},HW5WPhEFa:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17zdble-container\",layoutDependency:layoutDependency,layoutId:\"bS7FaeoYP-container\",children:/*#__PURE__*/_jsx(MenuIcon,{height:\"100%\",id:\"bS7FaeoYP\",k0y1V8ihR:k0y1V8ihR40fe6z,layoutId:\"bS7FaeoYP\",style:{height:\"100%\",width:\"100%\"},variant:\"BGi1syDn4\",width:\"100%\",...addPropertyOverrides({Ea6B_amZT:{k0y1V8ihR:k0y1V8ihR1s3vsew,variant:\"t17YCY87G\"},fknZqKYfC:{k0y1V8ihR:k0y1V8ihR147792s},HW5WPhEFa:{k0y1V8ihR:k0y1V8ihRiwquat},kGYEDZRuT:{k0y1V8ihR:k0y1V8ihRunfv1g,variant:\"t17YCY87G\"}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"Hire\"})}),className:\"framer-1malhh4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"spdKN9am0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"Create\"})}),className:\"framer-2u2prd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lvv3FZdbS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"Explore\"})}),className:\"framer-1v16h8q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Vraws2dZy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"20px\"},children:\"Learn\"})}),className:\"framer-qoz3eh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z8vlLgBBC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a9v7k9\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"OUQ30bx0C\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithLoggedOut,{className:\"framer-nbrbd0\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Xloq4LgU9\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1snn43b\",\"data-framer-name\":\"Logged In\",layoutDependency:layoutDependency,layoutId:\"vIBgFWTlU\",style:{opacity:1},variants:{fknZqKYfC:{opacity:0}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7tl8f\",\"data-framer-name\":\"User & Logout\",layoutDependency:layoutDependency,layoutId:\"vlxBEm9Dq\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1syy5at\",\"data-framer-name\":\"Logout Button\",layoutDependency:layoutDependency,layoutId:\"Tz7jzZYsk\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tfr4yu\",layoutDependency:layoutDependency,layoutId:\"vVQCe7qYO\",style:{backgroundColor:\"rgb(153, 238, 255)\"}})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2wBzu.framer-1dqeje6, .framer-2wBzu .framer-1dqeje6 { display: block; }\",\".framer-2wBzu.framer-1x5lbm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 96px; justify-content: center; overflow: hidden; padding: 16px 16px 16px 24px; position: relative; width: 1868px; }\",\".framer-2wBzu .framer-19vaykh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1120px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-2wBzu .framer-y33gmn, .framer-2wBzu .framer-s7tl8f, .framer-2wBzu .framer-1syy5at { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-2wBzu .framer-xzr7xe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-2wBzu .framer-9wo37s-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-2wBzu .framer-17zdble-container { flex: none; height: 44px; position: relative; width: 44px; }\",\".framer-2wBzu .framer-1malhh4, .framer-2wBzu .framer-2u2prd, .framer-2wBzu .framer-1v16h8q, .framer-2wBzu .framer-qoz3eh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2wBzu .framer-a9v7k9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-2wBzu .framer-nbrbd0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 24px; min-width: 53px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-2wBzu .framer-1snn43b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-2wBzu .framer-tfr4yu { flex: none; height: 1px; overflow: visible; position: relative; width: 5px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2wBzu.framer-1x5lbm, .framer-2wBzu .framer-y33gmn, .framer-2wBzu .framer-xzr7xe, .framer-2wBzu .framer-a9v7k9, .framer-2wBzu .framer-nbrbd0, .framer-2wBzu .framer-1snn43b, .framer-2wBzu .framer-s7tl8f, .framer-2wBzu .framer-1syy5at { gap: 0px; } .framer-2wBzu.framer-1x5lbm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2wBzu.framer-1x5lbm > :first-child, .framer-2wBzu .framer-y33gmn > :first-child, .framer-2wBzu .framer-xzr7xe > :first-child, .framer-2wBzu .framer-a9v7k9 > :first-child, .framer-2wBzu .framer-nbrbd0 > :first-child, .framer-2wBzu .framer-1snn43b > :first-child, .framer-2wBzu .framer-s7tl8f > :first-child, .framer-2wBzu .framer-1syy5at > :first-child { margin-left: 0px; } .framer-2wBzu.framer-1x5lbm > :last-child, .framer-2wBzu .framer-y33gmn > :last-child, .framer-2wBzu .framer-xzr7xe > :last-child, .framer-2wBzu .framer-a9v7k9 > :last-child, .framer-2wBzu .framer-nbrbd0 > :last-child, .framer-2wBzu .framer-1snn43b > :last-child, .framer-2wBzu .framer-s7tl8f > :last-child, .framer-2wBzu .framer-1syy5at > :last-child { margin-right: 0px; } .framer-2wBzu .framer-y33gmn > *, .framer-2wBzu .framer-s7tl8f > *, .framer-2wBzu .framer-1syy5at > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2wBzu .framer-xzr7xe > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-2wBzu .framer-a9v7k9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2wBzu .framer-nbrbd0 > *, .framer-2wBzu .framer-1snn43b > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-2wBzu.framer-v-c7klv6.framer-1x5lbm { height: min-content; padding: 0px 0px 0px 0px; width: 390px; }\",\".framer-2wBzu.framer-v-c7klv6 .framer-y33gmn { flex: 1 0 0px; gap: unset; justify-content: space-between; padding: 8px 8px 8px 16px; width: 1px; }\",\".framer-2wBzu.framer-v-c7klv6 .framer-xzr7xe, .framer-2wBzu.framer-v-ctois3 .framer-1syy5at { order: 0; }\",\".framer-2wBzu.framer-v-c7klv6 .framer-9wo37s-container, .framer-2wBzu.framer-v-11q2ko3 .framer-9wo37s-container { height: 27px; width: 50px; }\",\".framer-2wBzu.framer-v-c7klv6 .framer-17zdble-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2wBzu.framer-v-c7klv6 .framer-y33gmn { gap: 0px; } .framer-2wBzu.framer-v-c7klv6 .framer-y33gmn > *, .framer-2wBzu.framer-v-c7klv6 .framer-y33gmn > :first-child, .framer-2wBzu.framer-v-c7klv6 .framer-y33gmn > :last-child { margin: 0px; } }\",\".framer-2wBzu.framer-v-11q2ko3.framer-1x5lbm { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 1000px; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 0px 0px 0px 0px; width: 390px; }\",\".framer-2wBzu.framer-v-11q2ko3 .framer-19vaykh { flex: none; flex-direction: column; gap: 10px; justify-content: flex-start; width: 100%; }\",\".framer-2wBzu.framer-v-11q2ko3 .framer-y33gmn, .framer-2wBzu.framer-v-1x7i4qf .framer-y33gmn, .framer-2wBzu.framer-v-15lc2m6 .framer-y33gmn { gap: unset; justify-content: space-between; padding: 8px 8px 8px 16px; width: 100%; }\",\".framer-2wBzu.framer-v-11q2ko3 .framer-a9v7k9 { flex-direction: column; gap: 40px; padding: 40px 0px 40px 0px; width: 100%; }\",\".framer-2wBzu.framer-v-11q2ko3 .framer-nbrbd0 { flex-direction: column; gap: 8px; min-height: 40px; min-width: unset; width: 168px; }\",\".framer-2wBzu.framer-v-11q2ko3 .framer-1snn43b, .framer-2wBzu.framer-v-1x7i4qf .framer-a9v7k9, .framer-2wBzu.framer-v-15lc2m6 .framer-a9v7k9, .framer-2wBzu.framer-v-15lc2m6 .framer-1snn43b { flex-direction: column; width: 100%; }\",\".framer-2wBzu.framer-v-11q2ko3 .framer-s7tl8f { flex-direction: column; gap: 16px; }\",\".framer-2wBzu.framer-v-11q2ko3 .framer-1syy5at, .framer-2wBzu.framer-v-1x7i4qf .framer-1syy5at { padding: 16px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2wBzu.framer-v-11q2ko3.framer-1x5lbm, .framer-2wBzu.framer-v-11q2ko3 .framer-19vaykh, .framer-2wBzu.framer-v-11q2ko3 .framer-y33gmn, .framer-2wBzu.framer-v-11q2ko3 .framer-a9v7k9, .framer-2wBzu.framer-v-11q2ko3 .framer-nbrbd0, .framer-2wBzu.framer-v-11q2ko3 .framer-1snn43b, .framer-2wBzu.framer-v-11q2ko3 .framer-s7tl8f { gap: 0px; } .framer-2wBzu.framer-v-11q2ko3.framer-1x5lbm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2wBzu.framer-v-11q2ko3.framer-1x5lbm > :first-child, .framer-2wBzu.framer-v-11q2ko3 .framer-19vaykh > :first-child, .framer-2wBzu.framer-v-11q2ko3 .framer-a9v7k9 > :first-child, .framer-2wBzu.framer-v-11q2ko3 .framer-nbrbd0 > :first-child, .framer-2wBzu.framer-v-11q2ko3 .framer-1snn43b > :first-child, .framer-2wBzu.framer-v-11q2ko3 .framer-s7tl8f > :first-child { margin-top: 0px; } .framer-2wBzu.framer-v-11q2ko3.framer-1x5lbm > :last-child, .framer-2wBzu.framer-v-11q2ko3 .framer-19vaykh > :last-child, .framer-2wBzu.framer-v-11q2ko3 .framer-a9v7k9 > :last-child, .framer-2wBzu.framer-v-11q2ko3 .framer-nbrbd0 > :last-child, .framer-2wBzu.framer-v-11q2ko3 .framer-1snn43b > :last-child, .framer-2wBzu.framer-v-11q2ko3 .framer-s7tl8f > :last-child { margin-bottom: 0px; } .framer-2wBzu.framer-v-11q2ko3 .framer-19vaykh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2wBzu.framer-v-11q2ko3 .framer-y33gmn > *, .framer-2wBzu.framer-v-11q2ko3 .framer-y33gmn > :first-child, .framer-2wBzu.framer-v-11q2ko3 .framer-y33gmn > :last-child { margin: 0px; } .framer-2wBzu.framer-v-11q2ko3 .framer-a9v7k9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2wBzu.framer-v-11q2ko3 .framer-nbrbd0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-2wBzu.framer-v-11q2ko3 .framer-1snn43b > *, .framer-2wBzu.framer-v-11q2ko3 .framer-s7tl8f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-2wBzu.framer-v-ctois3 .framer-19vaykh { max-width: unset; }\",\".framer-2wBzu.framer-v-ctois3 .framer-s7tl8f { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2wBzu.framer-v-ctois3 .framer-s7tl8f { gap: 0px; } .framer-2wBzu.framer-v-ctois3 .framer-s7tl8f > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-2wBzu.framer-v-ctois3 .framer-s7tl8f > :first-child { margin-left: 0px; } .framer-2wBzu.framer-v-ctois3 .framer-s7tl8f > :last-child { margin-right: 0px; } }\",\".framer-2wBzu.framer-v-1x7i4qf.framer-1x5lbm { align-content: flex-start; align-items: flex-start; height: 60px; justify-content: flex-start; padding: 0px 0px 0px 0px; width: 390px; }\",\".framer-2wBzu.framer-v-1x7i4qf .framer-19vaykh, .framer-2wBzu.framer-v-15lc2m6 .framer-19vaykh { flex-direction: column; gap: 0px; justify-content: flex-start; max-width: unset; }\",\".framer-2wBzu.framer-v-1x7i4qf .framer-1snn43b { width: 100%; }\",\".framer-2wBzu.framer-v-1x7i4qf .framer-s7tl8f { flex: 1 0 0px; flex-direction: column; gap: 16px; padding: 40px 0px 40px 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2wBzu.framer-v-1x7i4qf .framer-19vaykh, .framer-2wBzu.framer-v-1x7i4qf .framer-y33gmn, .framer-2wBzu.framer-v-1x7i4qf .framer-a9v7k9, .framer-2wBzu.framer-v-1x7i4qf .framer-s7tl8f { gap: 0px; } .framer-2wBzu.framer-v-1x7i4qf .framer-19vaykh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2wBzu.framer-v-1x7i4qf .framer-19vaykh > :first-child, .framer-2wBzu.framer-v-1x7i4qf .framer-a9v7k9 > :first-child, .framer-2wBzu.framer-v-1x7i4qf .framer-s7tl8f > :first-child { margin-top: 0px; } .framer-2wBzu.framer-v-1x7i4qf .framer-19vaykh > :last-child, .framer-2wBzu.framer-v-1x7i4qf .framer-a9v7k9 > :last-child, .framer-2wBzu.framer-v-1x7i4qf .framer-s7tl8f > :last-child { margin-bottom: 0px; } .framer-2wBzu.framer-v-1x7i4qf .framer-y33gmn > *, .framer-2wBzu.framer-v-1x7i4qf .framer-y33gmn > :first-child, .framer-2wBzu.framer-v-1x7i4qf .framer-y33gmn > :last-child { margin: 0px; } .framer-2wBzu.framer-v-1x7i4qf .framer-a9v7k9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2wBzu.framer-v-1x7i4qf .framer-s7tl8f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-2wBzu.framer-v-15lc2m6.framer-1x5lbm { align-content: flex-start; align-items: flex-start; height: 1000px; justify-content: flex-start; padding: 0px 0px 0px 0px; width: 390px; }\",\".framer-2wBzu.framer-v-15lc2m6 .framer-s7tl8f { flex-direction: column; gap: 16px; padding: 40px 0px 40px 0px; width: 100%; }\",\".framer-2wBzu.framer-v-15lc2m6 .framer-1syy5at { gap: 0px; padding: 16px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2wBzu.framer-v-15lc2m6 .framer-19vaykh, .framer-2wBzu.framer-v-15lc2m6 .framer-y33gmn, .framer-2wBzu.framer-v-15lc2m6 .framer-a9v7k9, .framer-2wBzu.framer-v-15lc2m6 .framer-1snn43b, .framer-2wBzu.framer-v-15lc2m6 .framer-s7tl8f, .framer-2wBzu.framer-v-15lc2m6 .framer-1syy5at { gap: 0px; } .framer-2wBzu.framer-v-15lc2m6 .framer-19vaykh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2wBzu.framer-v-15lc2m6 .framer-19vaykh > :first-child, .framer-2wBzu.framer-v-15lc2m6 .framer-a9v7k9 > :first-child, .framer-2wBzu.framer-v-15lc2m6 .framer-1snn43b > :first-child, .framer-2wBzu.framer-v-15lc2m6 .framer-s7tl8f > :first-child { margin-top: 0px; } .framer-2wBzu.framer-v-15lc2m6 .framer-19vaykh > :last-child, .framer-2wBzu.framer-v-15lc2m6 .framer-a9v7k9 > :last-child, .framer-2wBzu.framer-v-15lc2m6 .framer-1snn43b > :last-child, .framer-2wBzu.framer-v-15lc2m6 .framer-s7tl8f > :last-child { margin-bottom: 0px; } .framer-2wBzu.framer-v-15lc2m6 .framer-y33gmn > *, .framer-2wBzu.framer-v-15lc2m6 .framer-y33gmn > :first-child, .framer-2wBzu.framer-v-15lc2m6 .framer-y33gmn > :last-child { margin: 0px; } .framer-2wBzu.framer-v-15lc2m6 .framer-a9v7k9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2wBzu.framer-v-15lc2m6 .framer-1snn43b > *, .framer-2wBzu.framer-v-15lc2m6 .framer-s7tl8f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2wBzu.framer-v-15lc2m6 .framer-1syy5at > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2wBzu.framer-v-15lc2m6 .framer-1syy5at > :first-child { margin-left: 0px; } .framer-2wBzu.framer-v-15lc2m6 .framer-1syy5at > :last-child { margin-right: 0px; } }\",'.framer-2wBzu[data-border=\"true\"]::after, .framer-2wBzu [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 1868\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HW5WPhEFa\":{\"layout\":[\"fixed\",\"auto\"]},\"Ea6B_amZT\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,\"100vh\",null]},\"mJT6ZLKHV\":{\"layout\":[\"fixed\",\"fixed\"]},\"fknZqKYfC\":{\"layout\":[\"fixed\",\"fixed\"]},\"kGYEDZRuT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yyXaLK9Jc\":\"logoLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBfpZeIo8n=withCSS(Component,css,\"framer-2wBzu\");export default FramerBfpZeIo8n;FramerBfpZeIo8n.displayName=\"Navbar\";FramerBfpZeIo8n.defaultProps={height:96,width:1868};addPropertyControls(FramerBfpZeIo8n,{variant:{options:[\"DIbFIQLK8\",\"HW5WPhEFa\",\"Ea6B_amZT\",\"mJT6ZLKHV\",\"fknZqKYfC\",\"kGYEDZRuT\"],optionTitles:[\"Default\",\"Phone\",\"Phone Open\",\"Course Portal\",\"Course Portal Phone\",\"Course Portal Phone Open\"],title:\"Variant\",type:ControlType.Enum},yyXaLK9Jc:{title:\"Logo Link\",type:ControlType.Link}});addFonts(FramerBfpZeIo8n,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...LogoFonts,...MenuIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBfpZeIo8n\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HW5WPhEFa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ea6B_amZT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"mJT6ZLKHV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fknZqKYfC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kGYEDZRuT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"96\",\"framerVariables\":\"{\\\"yyXaLK9Jc\\\":\\\"logoLink\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1868\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BfpZeIo8n.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-500\",\"GF;Poppins-700\",\"GF;Poppins-700italic\",\"GF;Poppins-500italic\"]);export const fonts=[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlFd2PQEhcqw.woff2\",weight:\"500\"}];export const css=['.framer-DSZmM .framer-styles-preset-1olblpe:not(.rich-text-wrapper), .framer-DSZmM .framer-styles-preset-1olblpe.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 16px; --framer-text-alignment: start; --framer-text-color: var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, #1c1c1c); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-DSZmM\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useEffect as o}from\"react\";import{addPropertyControls as i,ControlType as l}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function s(i){let[l,s]=t(null);o(()=>{let e=i.customSvgCode;r(e);},[i.customSvgCode,i.customColor,i.customStrokeWidth,i.lineCap,i.lineJoin]);let r=e=>{let t=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']],o=e.includes('stroke=\"'),l=e.includes('stroke-width=\"'),r=e.includes('stroke-linecap=\"'),n=e.includes('stroke-linejoin=\"');if(e.includes(\"<circle\")){// Find the circle element and update its fill attribute\nlet o=/<circle[^>]*fill=\"([^\"]*)\"/,l=e.match(o);if(l){// Update the fill attribute with the custom color\nlet t=l[0].replace(l[1],i.customColor);e=e.replace(o,t);}else // If there is no fill attribute, add it with the custom color\nt.push([/<circle/g,`<circle fill=\"${i.customColor}\"`]);}o?(r?t.push([/<path/g,`<path stroke=\"${i.customColor}\" stroke-linecap=\"${i.lineCap}\"`]):t.push([/<path/g,`<path stroke=\"${i.customColor}\"`]),l&&t.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${i.customStrokeWidth}\"`])):t.push([/<path/g,`<path fill=\"${i.customColor}\"`]),e.includes('overflow=\"')?t.push([/overflow=\"[^\"]*\"/,'overflow=\"visible\"']):t.push([/<svg/,'<svg overflow=\"visible\"']),n?t.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${i.lineJoin}\"`]):t.push([/<path/g,`<path stroke-linejoin=\"${i.lineJoin}\"`]),t.forEach(([t,o])=>{e=e.replace(t,o);}),s(e);},n={padding:`${i.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/e(\"div\",{dangerouslySetInnerHTML:{__html:l},style:n});}s.defaultProps={customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>',customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"},i(s,{customSvgCode:{type:l.String,title:\"SVG Code\",displayTextArea:!1},customColor:{type:l.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:l.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:!0,hidden:e=>!e.customSvgCode.includes('stroke=\"')},customPadding:{type:l.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:!0},lineCap:{type:l.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:e=>!e.customSvgCode.includes('stroke=\"')},lineJoin:{type:l.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:e=>!e.customSvgCode.includes('stroke=\"')}});export default s;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (d2b7042)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"oC_M8kcWc\",\"xOHDoLwVG\",\"W_9GYwO2Q\",\"CGHGJKanj\",\"XBbhaY3Ap\",\"tdyaowXru\",\"z2OPP9Yd8\",\"rChFHWdfM\",\"fIayz8pwA\",\"sjAVzneXr\",\"DQZPmdEUN\",\"kGckxrIh8\",\"Wil7uFAe3\",\"q0swXOONY\",\"pzBGWrd5H\",\"anasdMsPG\",\"jXc7L0MgL\",\"nM98KgsE4\",\"QAbZWp75Z\",\"ewgKbHnL_\",\"xOdCiXBUQ\",\"j3pWzbTtG\",\"hUOrUeoy0\",\"I_Nvl2t66\",\"OiurDqXVB\",\"mfYv7zrbn\",\"zUVYHDpZQ\"];const serializationHash=\"framer-73YLQ\";const variantClassNames={anasdMsPG:\"framer-v-1clemf\",CGHGJKanj:\"framer-v-fkbpko\",DQZPmdEUN:\"framer-v-z0gpp1\",ewgKbHnL_:\"framer-v-1wo2c32\",fIayz8pwA:\"framer-v-arkjh8\",hUOrUeoy0:\"framer-v-1jlwctn\",I_Nvl2t66:\"framer-v-1ioenay\",j3pWzbTtG:\"framer-v-19w5len\",jXc7L0MgL:\"framer-v-1644y6s\",kGckxrIh8:\"framer-v-1hkwblv\",mfYv7zrbn:\"framer-v-nhde1x\",nM98KgsE4:\"framer-v-1q040hc\",oC_M8kcWc:\"framer-v-imagha\",OiurDqXVB:\"framer-v-1chdsis\",pzBGWrd5H:\"framer-v-11ciftv\",q0swXOONY:\"framer-v-2uajfc\",QAbZWp75Z:\"framer-v-tlk31u\",rChFHWdfM:\"framer-v-c1hzvs\",sjAVzneXr:\"framer-v-dtzc54\",tdyaowXru:\"framer-v-9rp8tn\",W_9GYwO2Q:\"framer-v-l0mmo3\",Wil7uFAe3:\"framer-v-1ljy4l5\",XBbhaY3Ap:\"framer-v-1xp4fqk\",xOdCiXBUQ:\"framer-v-1h9jaqy\",xOHDoLwVG:\"framer-v-m4zmtn\",z2OPP9Yd8:\"framer-v-s6w8fz\",zUVYHDpZQ:\"framer-v-1we19vb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Arrow Left\":\"OiurDqXVB\",\"Arrow Right\":\"XBbhaY3Ap\",\"Book Open Text Filled\":\"pzBGWrd5H\",\"Book Open Text\":\"z2OPP9Yd8\",\"Caret Down\":\"zUVYHDpZQ\",\"Chalkboard Teacher\":\"ewgKbHnL_\",\"Chats Circle\":\"q0swXOONY\",\"Check Circle\":\"tdyaowXru\",\"Paint Brush\":\"sjAVzneXr\",\"Pencil Circle\":\"Wil7uFAe3\",\"Play Circle Filled\":\"W_9GYwO2Q\",\"Play Circle\":\"CGHGJKanj\",\"Shopping Bag Open\":\"xOdCiXBUQ\",\"Sign In Filled\":\"anasdMsPG\",\"Sign In\":\"rChFHWdfM\",Bezier:\"fIayz8pwA\",Clock:\"hUOrUeoy0\",Close:\"oC_M8kcWc\",Code:\"DQZPmdEUN\",Megaphone:\"kGckxrIh8\",Notebook:\"jXc7L0MgL\",Question:\"j3pWzbTtG\",Search:\"I_Nvl2t66\",Stack:\"nM98KgsE4\",Star:\"xOHDoLwVG\",User:\"mfYv7zrbn\",Users:\"QAbZWp75Z\"};const getProps=({color,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,eQEFFdws4:(_ref=color!==null&&color!==void 0?color:props.eQEFFdws4)!==null&&_ref!==void 0?_ref:\"var(--token-1293e359-60aa-48e6-97f1-7e5a0bdcde01, rgb(0, 0, 0))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"oC_M8kcWc\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eQEFFdws4,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"oC_M8kcWc\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-imagha\",className,classNames),\"data-framer-name\":\"Close\",layoutDependency:layoutDependency,layoutId:\"oC_M8kcWc\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({anasdMsPG:{\"data-framer-name\":\"Sign In Filled\"},CGHGJKanj:{\"data-framer-name\":\"Play Circle\"},DQZPmdEUN:{\"data-framer-name\":\"Code\"},ewgKbHnL_:{\"data-framer-name\":\"Chalkboard Teacher\"},fIayz8pwA:{\"data-framer-name\":\"Bezier\"},hUOrUeoy0:{\"data-framer-name\":\"Clock\"},I_Nvl2t66:{\"data-framer-name\":\"Search\"},j3pWzbTtG:{\"data-framer-name\":\"Question\"},jXc7L0MgL:{\"data-framer-name\":\"Notebook\"},kGckxrIh8:{\"data-framer-name\":\"Megaphone\"},mfYv7zrbn:{\"data-framer-name\":\"User\"},nM98KgsE4:{\"data-framer-name\":\"Stack\"},OiurDqXVB:{\"data-framer-name\":\"Arrow Left\"},pzBGWrd5H:{\"data-framer-name\":\"Book Open Text Filled\"},q0swXOONY:{\"data-framer-name\":\"Chats Circle\"},QAbZWp75Z:{\"data-framer-name\":\"Users\"},rChFHWdfM:{\"data-framer-name\":\"Sign In\"},sjAVzneXr:{\"data-framer-name\":\"Paint Brush\"},tdyaowXru:{\"data-framer-name\":\"Check Circle\"},W_9GYwO2Q:{\"data-framer-name\":\"Play Circle Filled\"},Wil7uFAe3:{\"data-framer-name\":\"Pencil Circle\"},XBbhaY3Ap:{\"data-framer-name\":\"Arrow Right\"},xOdCiXBUQ:{\"data-framer-name\":\"Shopping Bag Open\"},xOHDoLwVG:{\"data-framer-name\":\"Star\"},z2OPP9Yd8:{\"data-framer-name\":\"Book Open Text\"},zUVYHDpZQ:{\"data-framer-name\":\"Caret Down\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qm5yzt-container\",\"data-framer-name\":\"SVG\",layoutDependency:layoutDependency,layoutId:\"W6FZKuT2C-container\",name:\"SVG\",children:/*#__PURE__*/_jsx(SVG,{customColor:eQEFFdws4,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>',height:\"100%\",id:\"W6FZKuT2C\",layoutId:\"W6FZKuT2C\",lineCap:\"butt\",lineJoin:\"miter\",name:\"SVG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({anasdMsPG:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M141.66,133.66l-40,40A8,8,0,0,1,88,168V136H24a8,8,0,0,1,0-16H88V88a8,8,0,0,1,13.66-5.66l40,40A8,8,0,0,1,141.66,133.66ZM192,32H136a8,8,0,0,0,0,16h56V208H136a8,8,0,0,0,0,16h56a16,16,0,0,0,16-16V48A16,16,0,0,0,192,32Z\"></path></svg>'},CGHGJKanj:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm36.44-94.66-48-32A8,8,0,0,0,104,96v64a8,8,0,0,0,12.44,6.66l48-32a8,8,0,0,0,0-13.32ZM120,145.05V111l25.58,17Z\"></path></svg>'},DQZPmdEUN:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M67.84,92.61,25.37,128l42.47,35.39a6,6,0,1,1-7.68,9.22l-48-40a6,6,0,0,1,0-9.22l48-40a6,6,0,0,1,7.68,9.22Zm176,30.78-48-40a6,6,0,1,0-7.68,9.22L230.63,128l-42.47,35.39a6,6,0,1,0,7.68,9.22l48-40a6,6,0,0,0,0-9.22Zm-81.79-89A6,6,0,0,0,154.36,38l-64,176A6,6,0,0,0,94,221.64a6.15,6.15,0,0,0,2,.36,6,6,0,0,0,5.64-3.95l64-176A6,6,0,0,0,162.05,34.36Z\"></path></svg>'},ewgKbHnL_:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H53.39a8,8,0,0,0,7.23-4.57,48,48,0,0,1,86.76,0,8,8,0,0,0,7.23,4.57H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM80,144a24,24,0,1,1,24,24A24,24,0,0,1,80,144Zm136,56H159.43a64.39,64.39,0,0,0-28.83-26.16,40,40,0,1,0-53.2,0A64.39,64.39,0,0,0,48.57,200H40V56H216ZM56,96V80a8,8,0,0,1,8-8H192a8,8,0,0,1,8,8v96a8,8,0,0,1-8,8H176a8,8,0,0,1,0-16h8V88H72v8a8,8,0,0,1-16,0Z\"></path></svg>'},fIayz8pwA:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M219.44,146.2A94.66,94.66,0,0,0,173.92,86H240a6,6,0,0,0,0-12H157.4a30,30,0,0,0-58.8,0H16a6,6,0,0,0,0,12H82.08a94.66,94.66,0,0,0-45.52,60.2,30,30,0,1,0,12.09,1.08,82.53,82.53,0,0,1,51.4-56.39,30,30,0,0,0,55.9,0,82.53,82.53,0,0,1,51.4,56.39,30,30,0,1,0,12.09-1.08ZM58,176a18,18,0,1,1-18-18A18,18,0,0,1,58,176Zm70-78a18,18,0,1,1,18-18A18,18,0,0,1,128,98Zm88,96a18,18,0,1,1,18-18A18,18,0,0,1,216,194Z\"></path></svg>'},hUOrUeoy0:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z\"></path></svg>'},I_Nvl2t66:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z\"></path></svg>'},j3pWzbTtG:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M225.86,102.82c-3.77-3.94-7.67-8-9.14-11.57-1.36-3.27-1.44-8.69-1.52-13.94-.15-9.76-.31-20.82-8-28.51s-18.75-7.85-28.51-8c-5.25-.08-10.67-.16-13.94-1.52-3.56-1.47-7.63-5.37-11.57-9.14C146.28,23.51,138.44,16,128,16s-18.27,7.51-25.18,14.14c-3.94,3.77-8,7.67-11.57,9.14C88,40.64,82.56,40.72,77.31,40.8c-9.76.15-20.82.31-28.51,8S41,67.55,40.8,77.31c-.08,5.25-.16,10.67-1.52,13.94-1.47,3.56-5.37,7.63-9.14,11.57C23.51,109.72,16,117.56,16,128s7.51,18.27,14.14,25.18c3.77,3.94,7.67,8,9.14,11.57,1.36,3.27,1.44,8.69,1.52,13.94.15,9.76.31,20.82,8,28.51s18.75,7.85,28.51,8c5.25.08,10.67.16,13.94,1.52,3.56,1.47,7.63,5.37,11.57,9.14C109.72,232.49,117.56,240,128,240s18.27-7.51,25.18-14.14c3.94-3.77,8-7.67,11.57-9.14,3.27-1.36,8.69-1.44,13.94-1.52,9.76-.15,20.82-.31,28.51-8s7.85-18.75,8-28.51c.08-5.25.16-10.67,1.52-13.94,1.47-3.56,5.37-7.63,9.14-11.57C232.49,146.28,240,138.44,240,128S232.49,109.73,225.86,102.82Zm-11.55,39.29c-4.79,5-9.75,10.17-12.38,16.52-2.52,6.1-2.63,13.07-2.73,19.82-.1,7-.21,14.33-3.32,17.43s-10.39,3.22-17.43,3.32c-6.75.1-13.72.21-19.82,2.73-6.35,2.63-11.52,7.59-16.52,12.38S132,224,128,224s-9.15-4.92-14.11-9.69-10.17-9.75-16.52-12.38c-6.1-2.52-13.07-2.63-19.82-2.73-7-.1-14.33-.21-17.43-3.32s-3.22-10.39-3.32-17.43c-.1-6.75-.21-13.72-2.73-19.82-2.63-6.35-7.59-11.52-12.38-16.52S32,132,32,128s4.92-9.15,9.69-14.11,9.75-10.17,12.38-16.52c2.52-6.1,2.63-13.07,2.73-19.82.1-7,.21-14.33,3.32-17.43S70.51,56.9,77.55,56.8c6.75-.1,13.72-.21,19.82-2.73,6.35-2.63,11.52-7.59,16.52-12.38S124,32,128,32s9.15,4.92,14.11,9.69,10.17,9.75,16.52,12.38c6.1,2.52,13.07,2.63,19.82,2.73,7,.1,14.33.21,17.43,3.32s3.22,10.39,3.32,17.43c.1,6.75.21,13.72,2.73,19.82,2.63,6.35,7.59,11.52,12.38,16.52S224,124,224,128,219.08,137.15,214.31,142.11ZM140,180a12,12,0,1,1-12-12A12,12,0,0,1,140,180Zm28-72c0,17.38-13.76,31.93-32,35.28V144a8,8,0,0,1-16,0v-8a8,8,0,0,1,8-8c13.23,0,24-9,24-20s-10.77-20-24-20-24,9-24,20v4a8,8,0,0,1-16,0v-4c0-19.85,17.94-36,40-36S168,88.15,168,108Z\"></path></svg>'},jXc7L0MgL:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M184,112a8,8,0,0,1-8,8H112a8,8,0,0,1,0-16h64A8,8,0,0,1,184,112Zm-8,24H112a8,8,0,0,0,0,16h64a8,8,0,0,0,0-16Zm48-88V208a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V48A16,16,0,0,1,48,32H208A16,16,0,0,1,224,48ZM48,208H72V48H48Zm160,0V48H88V208H208Z\"></path></svg>'},kGckxrIh8:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M238,120a46.05,46.05,0,0,0-46-46H152.15C149.57,73.86,98.05,70.44,49,29.3A14,14,0,0,0,26,40V200a13.85,13.85,0,0,0,8.07,12.68A14.16,14.16,0,0,0,40,214a13.9,13.9,0,0,0,9-3.3c40-33.52,81.57-42,97-44.07v34a14,14,0,0,0,6.23,11.65l11,7.33a14,14,0,0,0,21.32-8.17l12.13-45.71A46.07,46.07,0,0,0,238,120ZM41.29,201.52A2,2,0,0,1,38,200V40a1.9,1.9,0,0,1,1.15-1.8A2.08,2.08,0,0,1,40,38a1.91,1.91,0,0,1,1.26.48c44,36.92,89,45.19,104.71,47v69C130.29,156.33,85.3,164.61,41.29,201.52Zm131.64,7a2,2,0,0,1-3.05,1.18l-11-7.33a2,2,0,0,1-.89-1.67V166h26.2ZM192,154H158V86h34a34,34,0,1,1,0,68Z\"></path></svg>'},mfYv7zrbn:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M230.92,212c-15.23-26.33-38.7-45.21-66.09-54.16a72,72,0,1,0-73.66,0C63.78,166.78,40.31,185.66,25.08,212a8,8,0,1,0,13.85,8c18.84-32.56,52.14-52,89.07-52s70.23,19.44,89.07,52a8,8,0,1,0,13.85-8ZM72,96a56,56,0,1,1,56,56A56.06,56.06,0,0,1,72,96Z\"></path></svg>'},nM98KgsE4:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M230.91,172A8,8,0,0,1,228,182.91l-96,56a8,8,0,0,1-8.06,0l-96-56A8,8,0,0,1,36,169.09l92,53.65,92-53.65A8,8,0,0,1,230.91,172ZM220,121.09l-92,53.65L36,121.09A8,8,0,0,0,28,134.91l96,56a8,8,0,0,0,8.06,0l96-56A8,8,0,1,0,220,121.09ZM24,80a8,8,0,0,1,4-6.91l96-56a8,8,0,0,1,8.06,0l96,56a8,8,0,0,1,0,13.82l-96,56a8,8,0,0,1-8.06,0l-96-56A8,8,0,0,1,24,80Zm23.88,0L128,126.74,208.12,80,128,33.26Z\"></path></svg>'},OiurDqXVB:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,128a8,8,0,0,1-8,8H59.31l58.35,58.34a8,8,0,0,1-11.32,11.32l-72-72a8,8,0,0,1,0-11.32l72-72a8,8,0,0,1,11.32,11.32L59.31,120H216A8,8,0,0,1,224,128Z\"></path></svg>'},pzBGWrd5H:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,48H168a32,32,0,0,0-32,32v88a8,8,0,0,1-16,0V80A32,32,0,0,0,88,48H32A16,16,0,0,0,16,64V192a16,16,0,0,0,16,16H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h64a16,16,0,0,0,16-16V64A16,16,0,0,0,224,48ZM208,168H168a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Zm0-32H168a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Zm0-32H168a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Z\"></path></svg>'},q0swXOONY:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M229.66,187.13a78,78,0,0,0-61.5-112.71A78,78,0,1,0,26.34,139.13L18.47,166.7A12,12,0,0,0,33.3,181.53l27.57-7.87a78.25,78.25,0,0,0,26.94,7.9,78.05,78.05,0,0,0,107.32,40.1l27.57,7.87a12,12,0,0,0,14.83-14.83ZM61.53,161.23a5.82,5.82,0,0,0-1.65.23L30,170l8.53-29.87a6,6,0,0,0-.5-4.53A66,66,0,1,1,64.41,162,6.1,6.1,0,0,0,61.53,161.23Zm155.93,26.89L226,218l-29.87-8.53a6,6,0,0,0-4.53.5,66,66,0,0,1-90.48-28.15,77.92,77.92,0,0,0,71-94.68A66,66,0,0,1,218,183.59,6,6,0,0,0,217.46,188.12Z\"></path></svg>/www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M231.79,187.33A80,80,0,0,0,169.57,72.59,80,80,0,1,0,24.21,139.33l-7.66,26.82a14,14,0,0,0,17.3,17.3l26.82-7.66a80.15,80.15,0,0,0,25.75,7.63,80,80,0,0,0,108.91,40.37l26.82,7.66a14,14,0,0,0,17.3-17.3ZM61.53,159.23a8.22,8.22,0,0,0-2.2.3l-26.41,7.55,7.55-26.41a8,8,0,0,0-.68-6,63.95,63.95,0,1,1,25.57,25.57A7.94,7.94,0,0,0,61.53,159.23Zm154,29.44,7.55,26.41-26.41-7.55a8,8,0,0,0-6,.68,64.06,64.06,0,0,1-86.32-24.64A79.93,79.93,0,0,0,174.7,89.71a64,64,0,0,1,41.51,92.93A8,8,0,0,0,215.53,188.67Z\"></path></svg>'},QAbZWp75Z:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M117.25,157.92a60,60,0,1,0-66.5,0A95.83,95.83,0,0,0,3.53,195.63a8,8,0,1,0,13.4,8.74,80,80,0,0,1,134.14,0,8,8,0,0,0,13.4-8.74A95.83,95.83,0,0,0,117.25,157.92ZM40,108a44,44,0,1,1,44,44A44.05,44.05,0,0,1,40,108Zm210.14,98.7a8,8,0,0,1-11.07-2.33A79.83,79.83,0,0,0,172,168a8,8,0,0,1,0-16,44,44,0,1,0-16.34-84.87,8,8,0,1,1-5.94-14.85,60,60,0,0,1,55.53,105.64,95.83,95.83,0,0,1,47.22,37.71A8,8,0,0,1,250.14,206.7Z\"></path></svg>'},rChFHWdfM:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M141.66,133.66l-40,40a8,8,0,0,1-11.32-11.32L116.69,136H24a8,8,0,0,1,0-16h92.69L90.34,93.66a8,8,0,0,1,11.32-11.32l40,40A8,8,0,0,1,141.66,133.66ZM192,32H136a8,8,0,0,0,0,16h56V208H136a8,8,0,0,0,0,16h56a16,16,0,0,0,16-16V48A16,16,0,0,0,192,32Z\"></path></svg>'},sjAVzneXr:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,26c-20.8,0-44.11,11.41-69.3,33.9C136.62,76.06,121,94.9,110.3,109A58,58,0,0,0,34,164c0,32.07-20.43,46.39-21.35,47A6,6,0,0,0,16,222H92a58,58,0,0,0,55-76.3c14.08-10.67,32.92-26.32,49.08-44.4C218.59,76.11,230,52.8,230,32A6,6,0,0,0,224,26ZM92,210H30.65C37.92,200.85,46,185.78,46,164a46,46,0,1,1,46,46Zm29.49-95.91c3.6-4.67,7.88-10,12.71-15.69a78.17,78.17,0,0,1,23.4,23.4c-5.67,4.83-11,9.11-15.69,12.71A58.38,58.38,0,0,0,121.49,114.09Zm45.2-.3a90.24,90.24,0,0,0-24.48-24.48C163.05,66.46,191,42,217.56,38.44,214,65,189.54,93,166.69,113.79Z\"></path></svg>'},tdyaowXru:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm45.66,85.66-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35a8,8,0,0,1,11.32,11.32Z\"></path></svg>'},W_9GYwO2Q:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.13,104.13,0,0,0,128,24Zm36.44,110.66-48,32A8.05,8.05,0,0,1,112,168a8,8,0,0,1-8-8V96a8,8,0,0,1,12.44-6.66l48,32a8,8,0,0,1,0,13.32Z\"></path></svg>'},Wil7uFAe3:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M200.12,55.87A102,102,0,1,0,55.88,200.12,102,102,0,1,0,200.12,55.87ZM106,134h44l14.1,30.56A30,30,0,0,0,128,174a30,30,0,0,0-36.11-9.46Zm5.54-12L128,86.32,144.47,122ZM134,192a18,18,0,0,1,36,0v15.64a89.26,89.26,0,0,1-36,10.14Zm-48,0a18,18,0,0,1,36,0v25.78a89.26,89.26,0,0,1-36-10.14Zm105.64-.36A92.76,92.76,0,0,1,182,200V176a6,6,0,0,0-.55-2.51l-48-104a6,6,0,0,0-10.9,0l-48,104A6,6,0,0,0,74,176v24a92.76,92.76,0,0,1-9.64-8.37,90,90,0,1,1,127.28,0Z\"></path></svg>'},XBbhaY3Ap:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M221.66,133.66l-72,72a8,8,0,0,1-11.32-11.32L196.69,136H40a8,8,0,0,1,0-16H196.69L138.34,61.66a8,8,0,0,1,11.32-11.32l72,72A8,8,0,0,1,221.66,133.66Z\"></path></svg>'},xOdCiXBUQ:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40Zm0,16V72H40V56Zm0,144H40V88H216V200Zm-40-88a48,48,0,0,1-96,0,8,8,0,0,1,16,0,32,32,0,0,0,64,0,8,8,0,0,1,16,0Z\"></path></svg>'},xOHDoLwVG:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z\"></path></svg>'},z2OPP9Yd8:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,48H160a40,40,0,0,0-32,16A40,40,0,0,0,96,48H32A16,16,0,0,0,16,64V192a16,16,0,0,0,16,16H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h64a16,16,0,0,0,16-16V64A16,16,0,0,0,224,48ZM96,192H32V64H96a24,24,0,0,1,24,24V200A39.81,39.81,0,0,0,96,192Zm128,0H160a39.81,39.81,0,0,0-24,8V88a24,24,0,0,1,24-24h64ZM160,88h40a8,8,0,0,1,0,16H160a8,8,0,0,1,0-16Zm48,40a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,128Zm0,32a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,160Z\"></path></svg>'},zUVYHDpZQ:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z\"></path></svg>'}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-73YLQ[data-border=\"true\"]::after, .framer-73YLQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-73YLQ.framer-1imp34i, .framer-73YLQ .framer-1imp34i { display: block; }\",\".framer-73YLQ.framer-imagha { height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-73YLQ .framer-1qm5yzt-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-73YLQ.framer-v-m4zmtn.framer-imagha, .framer-73YLQ.framer-v-l0mmo3.framer-imagha, .framer-73YLQ.framer-v-fkbpko.framer-imagha, .framer-73YLQ.framer-v-1xp4fqk.framer-imagha, .framer-73YLQ.framer-v-9rp8tn.framer-imagha, .framer-73YLQ.framer-v-s6w8fz.framer-imagha, .framer-73YLQ.framer-v-c1hzvs.framer-imagha, .framer-73YLQ.framer-v-arkjh8.framer-imagha, .framer-73YLQ.framer-v-dtzc54.framer-imagha, .framer-73YLQ.framer-v-z0gpp1.framer-imagha, .framer-73YLQ.framer-v-1hkwblv.framer-imagha, .framer-73YLQ.framer-v-1ljy4l5.framer-imagha, .framer-73YLQ.framer-v-2uajfc.framer-imagha, .framer-73YLQ.framer-v-11ciftv.framer-imagha, .framer-73YLQ.framer-v-1clemf.framer-imagha, .framer-73YLQ.framer-v-1644y6s.framer-imagha, .framer-73YLQ.framer-v-1q040hc.framer-imagha, .framer-73YLQ.framer-v-tlk31u.framer-imagha, .framer-73YLQ.framer-v-1wo2c32.framer-imagha, .framer-73YLQ.framer-v-1h9jaqy.framer-imagha, .framer-73YLQ.framer-v-19w5len.framer-imagha, .framer-73YLQ.framer-v-1jlwctn.framer-imagha, .framer-73YLQ.framer-v-1ioenay.framer-imagha, .framer-73YLQ.framer-v-1chdsis.framer-imagha, .framer-73YLQ.framer-v-nhde1x.framer-imagha, .framer-73YLQ.framer-v-1we19vb.framer-imagha { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xOHDoLwVG\":{\"layout\":[\"fixed\",\"fixed\"]},\"W_9GYwO2Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"CGHGJKanj\":{\"layout\":[\"fixed\",\"fixed\"]},\"XBbhaY3Ap\":{\"layout\":[\"fixed\",\"fixed\"]},\"tdyaowXru\":{\"layout\":[\"fixed\",\"fixed\"]},\"z2OPP9Yd8\":{\"layout\":[\"fixed\",\"fixed\"]},\"rChFHWdfM\":{\"layout\":[\"fixed\",\"fixed\"]},\"fIayz8pwA\":{\"layout\":[\"fixed\",\"fixed\"]},\"sjAVzneXr\":{\"layout\":[\"fixed\",\"fixed\"]},\"DQZPmdEUN\":{\"layout\":[\"fixed\",\"fixed\"]},\"kGckxrIh8\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wil7uFAe3\":{\"layout\":[\"fixed\",\"fixed\"]},\"q0swXOONY\":{\"layout\":[\"fixed\",\"fixed\"]},\"pzBGWrd5H\":{\"layout\":[\"fixed\",\"fixed\"]},\"anasdMsPG\":{\"layout\":[\"fixed\",\"fixed\"]},\"jXc7L0MgL\":{\"layout\":[\"fixed\",\"fixed\"]},\"nM98KgsE4\":{\"layout\":[\"fixed\",\"fixed\"]},\"QAbZWp75Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"ewgKbHnL_\":{\"layout\":[\"fixed\",\"fixed\"]},\"xOdCiXBUQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"j3pWzbTtG\":{\"layout\":[\"fixed\",\"fixed\"]},\"hUOrUeoy0\":{\"layout\":[\"fixed\",\"fixed\"]},\"I_Nvl2t66\":{\"layout\":[\"fixed\",\"fixed\"]},\"OiurDqXVB\":{\"layout\":[\"fixed\",\"fixed\"]},\"mfYv7zrbn\":{\"layout\":[\"fixed\",\"fixed\"]},\"zUVYHDpZQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"eQEFFdws4\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FrameraUtUp84ZS=withCSS(Component,css,\"framer-73YLQ\");export default FrameraUtUp84ZS;FrameraUtUp84ZS.displayName=\"Icon\";FrameraUtUp84ZS.defaultProps={height:24,width:24};addPropertyControls(FrameraUtUp84ZS,{variant:{options:[\"oC_M8kcWc\",\"xOHDoLwVG\",\"W_9GYwO2Q\",\"CGHGJKanj\",\"XBbhaY3Ap\",\"tdyaowXru\",\"z2OPP9Yd8\",\"rChFHWdfM\",\"fIayz8pwA\",\"sjAVzneXr\",\"DQZPmdEUN\",\"kGckxrIh8\",\"Wil7uFAe3\",\"q0swXOONY\",\"pzBGWrd5H\",\"anasdMsPG\",\"jXc7L0MgL\",\"nM98KgsE4\",\"QAbZWp75Z\",\"ewgKbHnL_\",\"xOdCiXBUQ\",\"j3pWzbTtG\",\"hUOrUeoy0\",\"I_Nvl2t66\",\"OiurDqXVB\",\"mfYv7zrbn\",\"zUVYHDpZQ\"],optionTitles:[\"Close\",\"Star\",\"Play Circle Filled\",\"Play Circle\",\"Arrow Right\",\"Check Circle\",\"Book Open Text\",\"Sign In\",\"Bezier\",\"Paint Brush\",\"Code\",\"Megaphone\",\"Pencil Circle\",\"Chats Circle\",\"Book Open Text Filled\",\"Sign In Filled\",\"Notebook\",\"Stack\",\"Users\",\"Chalkboard Teacher\",\"Shopping Bag Open\",\"Question\",\"Clock\",\"Search\",\"Arrow Left\",\"User\",\"Caret Down\"],title:\"Variant\",type:ControlType.Enum},eQEFFdws4:{defaultValue:'var(--token-1293e359-60aa-48e6-97f1-7e5a0bdcde01, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',title:\"Color\",type:ControlType.Color}});addFonts(FrameraUtUp84ZS,[...SVGFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraUtUp84ZS\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"eQEFFdws4\\\":\\\"color\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xOHDoLwVG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W_9GYwO2Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CGHGJKanj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XBbhaY3Ap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tdyaowXru\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z2OPP9Yd8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rChFHWdfM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fIayz8pwA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sjAVzneXr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DQZPmdEUN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kGckxrIh8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wil7uFAe3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q0swXOONY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pzBGWrd5H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"anasdMsPG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jXc7L0MgL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nM98KgsE4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QAbZWp75Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ewgKbHnL_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xOdCiXBUQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j3pWzbTtG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hUOrUeoy0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I_Nvl2t66\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OiurDqXVB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mfYv7zrbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zUVYHDpZQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"24\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aUtUp84ZS.map", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qDdsVLSYaT8FmSUm8mZN/fkzffZg8bvco3o0qpnsp/KBgV9gmbx.js\";import Icon from\"https://framerusercontent.com/modules/oMD9aUecDeFDj99dExAw/TlTt4KQ0wfmxfKlGGzWH/aUtUp84ZS.js\";const IconFonts=getFonts(Icon);const IconControls=getPropertyControls(Icon);const enabledGestures={GU35LV3EE:{hover:true},JU7Pdu6JR:{hover:true},sUvobW92l:{hover:true,pressed:true},WbYr82RdU:{hover:true,pressed:true}};const cycleOrder=[\"WbYr82RdU\",\"GU35LV3EE\",\"JU7Pdu6JR\",\"tmFJJQpMz\",\"sUvobW92l\"];const serializationHash=\"framer-snjPI\";const variantClassNames={GU35LV3EE:\"framer-v-14c0srg\",JU7Pdu6JR:\"framer-v-18owfaz\",sUvobW92l:\"framer-v-1ts8mv2\",tmFJJQpMz:\"framer-v-1uz388i\",WbYr82RdU:\"framer-v-13e4hpb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:.5,stiffness:500,type:\"spring\"};const transition2={damping:40,delay:0,mass:.5,stiffness:500,type:\"spring\"};const transition3={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Arrow Left\":\"OiurDqXVB\",\"Arrow Right\":\"XBbhaY3Ap\",\"Book Open Text Filled\":\"pzBGWrd5H\",\"Book Open Text\":\"z2OPP9Yd8\",\"Caret Down\":\"zUVYHDpZQ\",\"Chalkboard Teacher\":\"ewgKbHnL_\",\"Chats Circle\":\"q0swXOONY\",\"Check Circle\":\"tdyaowXru\",\"Paint Brush\":\"sjAVzneXr\",\"Pencil Circle\":\"Wil7uFAe3\",\"Play Circle Filled\":\"W_9GYwO2Q\",\"Play Circle\":\"CGHGJKanj\",\"Shopping Bag Open\":\"xOdCiXBUQ\",\"Sign In Filled\":\"anasdMsPG\",\"Sign In\":\"rChFHWdfM\",Bezier:\"fIayz8pwA\",Clock:\"hUOrUeoy0\",Close:\"oC_M8kcWc\",Code:\"DQZPmdEUN\",Megaphone:\"kGckxrIh8\",Notebook:\"jXc7L0MgL\",Question:\"j3pWzbTtG\",Search:\"I_Nvl2t66\",Stack:\"nM98KgsE4\",Star:\"xOHDoLwVG\",User:\"mfYv7zrbn\",Users:\"QAbZWp75Z\"};const humanReadableVariantMap={\"Dropdown Link Active\":\"tmFJJQpMz\",\"Dropdown Link\":\"JU7Pdu6JR\",Link:\"GU35LV3EE\",Primary:\"WbYr82RdU\",Secondary:\"sUvobW92l\"};const getProps=({height,hover,id,learn,leftIcon,link,rightIcon,showLeftIcon,showRightIcon,tap,width,...props})=>{var _ref,_humanReadableEnumMap_rightIcon,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_humanReadableEnumMap_leftIcon,_ref4,_ref5;return{...props,AFz2Sv8SP:showLeftIcon!==null&&showLeftIcon!==void 0?showLeftIcon:props.AFz2Sv8SP,aT5nRnRI1:(_ref=learn!==null&&learn!==void 0?learn:props.aT5nRnRI1)!==null&&_ref!==void 0?_ref:\"Label\",I3m7fUWtv:tap!==null&&tap!==void 0?tap:props.I3m7fUWtv,Jryr1RvH5:(_ref2=(_ref1=(_humanReadableEnumMap_rightIcon=humanReadableEnumMap[rightIcon])!==null&&_humanReadableEnumMap_rightIcon!==void 0?_humanReadableEnumMap_rightIcon:rightIcon)!==null&&_ref1!==void 0?_ref1:props.Jryr1RvH5)!==null&&_ref2!==void 0?_ref2:\"XBbhaY3Ap\",JxBpRyYNz:link!==null&&link!==void 0?link:props.JxBpRyYNz,mJj6skhTn:showRightIcon!==null&&showRightIcon!==void 0?showRightIcon:props.mJj6skhTn,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"WbYr82RdU\",WMPF8uXCF:hover!==null&&hover!==void 0?hover:props.WMPF8uXCF,y8JKFgz2o:(_ref5=(_ref4=(_humanReadableEnumMap_leftIcon=humanReadableEnumMap[leftIcon])!==null&&_humanReadableEnumMap_leftIcon!==void 0?_humanReadableEnumMap_leftIcon:leftIcon)!==null&&_ref4!==void 0?_ref4:props.y8JKFgz2o)!==null&&_ref5!==void 0?_ref5:\"W_9GYwO2Q\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,aT5nRnRI1,JxBpRyYNz,AFz2Sv8SP,y8JKFgz2o,mJj6skhTn,Jryr1RvH5,I3m7fUWtv,WMPF8uXCF,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WbYr82RdU\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapp6mt4x=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(I3m7fUWtv){const res=await I3m7fUWtv(...args);if(res===false)return false;}});const onMouseEnterf4cmho=activeVariantCallback(async(...args)=>{if(WMPF8uXCF){const res=await WMPF8uXCF(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"JU7Pdu6JR-hover\",\"GU35LV3EE-hover\"].includes(gestureVariant))return true;if(baseVariant===\"tmFJJQpMz\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({GU35LV3EE:{value:transition2},JU7Pdu6JR:{value:transition3},tmFJJQpMz:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:JxBpRyYNz,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-13e4hpb\",className,classNames)} framer-14hefx4`,\"data-framer-name\":\"Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WbYr82RdU\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnterf4cmho,onTap:onTapp6mt4x,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(102, 51, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:1,...style},variants:{\"GU35LV3EE-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"JU7Pdu6JR-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"sUvobW92l-hover\":{\"--border-color\":\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",backgroundColor:\"rgba(0, 0, 0, 0)\"},\"sUvobW92l-pressed\":{backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:.5},\"WbYr82RdU-hover\":{opacity:.8},\"WbYr82RdU-pressed\":{opacity:.5},GU35LV3EE:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},JU7Pdu6JR:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},sUvobW92l:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d9f7a847-28c8-4daa-b45d-c033b60947cf, rgb(209, 209, 209))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},tmFJJQpMz:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}},...addPropertyOverrides({\"GU35LV3EE-hover\":{\"data-framer-name\":undefined},\"JU7Pdu6JR-hover\":{\"data-framer-name\":undefined},\"sUvobW92l-hover\":{\"data-framer-name\":undefined},\"sUvobW92l-pressed\":{\"data-framer-name\":undefined},\"WbYr82RdU-hover\":{\"data-framer-name\":undefined},\"WbYr82RdU-pressed\":{\"data-framer-name\":undefined},GU35LV3EE:{\"data-framer-name\":\"Link\"},JU7Pdu6JR:{\"data-framer-name\":\"Dropdown Link\"},sUvobW92l:{\"data-border\":true,\"data-framer-name\":\"Secondary\"},tmFJJQpMz:{\"data-framer-name\":\"Dropdown Link Active\"}},baseVariant,gestureVariant),children:[AFz2Sv8SP&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eernry-container\",\"data-framer-name\":\"Icon Left\",layoutDependency:layoutDependency,layoutId:\"Zkv9057jn-container\",name:\"Icon Left\",children:/*#__PURE__*/_jsx(Icon,{eQEFFdws4:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"Zkv9057jn\",layoutId:\"Zkv9057jn\",name:\"Icon Left\",style:{height:\"100%\",width:\"100%\"},variant:y8JKFgz2o,width:\"100%\",...addPropertyOverrides({GU35LV3EE:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"},JU7Pdu6JR:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"},sUvobW92l:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"},tmFJJQpMz:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1olblpe\",\"data-styles-preset\":\"KBgV9gmbx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255)))\"},children:\"Label\"})}),className:\"framer-1ii64xn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LBf52yZpq\",style:{\"--extracted-r6o4lv\":\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aT5nRnRI1,variants:{GU35LV3EE:{\"--extracted-r6o4lv\":\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(51, 51, 51))\"},JU7Pdu6JR:{\"--extracted-r6o4lv\":\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(51, 51, 51))\"},tmFJJQpMz:{\"--extracted-r6o4lv\":\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(51, 51, 51))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GU35LV3EE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1olblpe\",\"data-styles-preset\":\"KBgV9gmbx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(51, 51, 51)))\"},children:\"Label\"})})},JU7Pdu6JR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1olblpe\",\"data-styles-preset\":\"KBgV9gmbx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(51, 51, 51)))\"},children:\"Label\"})})},sUvobW92l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1olblpe\",\"data-styles-preset\":\"KBgV9gmbx\",children:\"Label\"})})},tmFJJQpMz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1olblpe\",\"data-styles-preset\":\"KBgV9gmbx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(51, 51, 51)))\"},children:\"Label\"})})}},baseVariant,gestureVariant)}),mJj6skhTn&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18grue5-container\",\"data-framer-name\":\"Icon Right\",layoutDependency:layoutDependency,layoutId:\"A2bKISZVq-container\",name:\"Icon Right\",children:/*#__PURE__*/_jsx(Icon,{eQEFFdws4:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"A2bKISZVq\",layoutId:\"A2bKISZVq\",name:\"Icon Right\",style:{height:\"100%\",width:\"100%\"},variant:Jryr1RvH5,width:\"100%\",...addPropertyOverrides({GU35LV3EE:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"},JU7Pdu6JR:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"},sUvobW92l:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"},tmFJJQpMz:{eQEFFdws4:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9vqzp\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"w3doFY0YA\",style:{backgroundColor:\"var(--token-9c5ff831-d459-40d3-a348-f9abd7d7051d, rgb(18, 18, 18))\",opacity:0},variants:{\"GU35LV3EE-hover\":{backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",opacity:.05},\"JU7Pdu6JR-hover\":{backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",opacity:.05},tmFJJQpMz:{backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",opacity:.05}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-snjPI.framer-14hefx4, .framer-snjPI .framer-14hefx4 { display: block; }\",\".framer-snjPI.framer-13e4hpb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-snjPI .framer-eernry-container, .framer-snjPI .framer-18grue5-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-snjPI .framer-1ii64xn { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-snjPI .framer-1o9vqzp { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-snjPI.framer-13e4hpb { gap: 0px; } .framer-snjPI.framer-13e4hpb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-snjPI.framer-13e4hpb > :first-child { margin-left: 0px; } .framer-snjPI.framer-13e4hpb > :last-child { margin-right: 0px; } }\",\".framer-snjPI.framer-v-14c0srg.framer-13e4hpb { height: min-content; justify-content: flex-start; padding: 8px 12px 8px 12px; }\",\".framer-snjPI.framer-v-14c0srg .framer-eernry-container { order: 0; }\",\".framer-snjPI.framer-v-14c0srg .framer-1ii64xn { order: 1; }\",\".framer-snjPI.framer-v-14c0srg .framer-18grue5-container { order: 2; }\",\".framer-snjPI.framer-v-18owfaz.framer-13e4hpb, .framer-snjPI.framer-v-1uz388i.framer-13e4hpb { height: 40px; justify-content: flex-start; padding: 8px 12px 8px 12px; }\",\".framer-snjPI.framer-v-14c0srg.hover .framer-1o9vqzp { height: 40px; order: 3; top: calc(50.00000000000002% - 40px / 2); width: 67px; }\",...sharedStyle.css,'.framer-snjPI[data-border=\"true\"]::after, .framer-snjPI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 75\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"GU35LV3EE\":{\"layout\":[\"auto\",\"auto\"]},\"JU7Pdu6JR\":{\"layout\":[\"auto\",\"fixed\"]},\"tmFJJQpMz\":{\"layout\":[\"auto\",\"fixed\"]},\"sUvobW92l\":{\"layout\":[\"auto\",\"fixed\"]},\"lPxDJFF43\":{\"layout\":[\"auto\",\"fixed\"]},\"zHIZ1f895\":{\"layout\":[\"auto\",\"fixed\"]},\"vpr316zHv\":{\"layout\":[\"auto\",\"fixed\"]},\"oSu7EGvBN\":{\"layout\":[\"auto\",\"fixed\"]},\"AuNtXDsDR\":{\"layout\":[\"auto\",\"fixed\"]},\"J0lO7W3Rg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"aT5nRnRI1\":\"learn\",\"JxBpRyYNz\":\"link\",\"AFz2Sv8SP\":\"showLeftIcon\",\"y8JKFgz2o\":\"leftIcon\",\"mJj6skhTn\":\"showRightIcon\",\"Jryr1RvH5\":\"rightIcon\",\"I3m7fUWtv\":\"tap\",\"WMPF8uXCF\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framernf4m8S4HC=withCSS(Component,css,\"framer-snjPI\");export default Framernf4m8S4HC;Framernf4m8S4HC.displayName=\"Button\";Framernf4m8S4HC.defaultProps={height:48,width:75};addPropertyControls(Framernf4m8S4HC,{variant:{options:[\"WbYr82RdU\",\"GU35LV3EE\",\"JU7Pdu6JR\",\"tmFJJQpMz\",\"sUvobW92l\"],optionTitles:[\"Primary\",\"Link\",\"Dropdown Link\",\"Dropdown Link Active\",\"Secondary\"],title:\"Variant\",type:ControlType.Enum},aT5nRnRI1:{defaultValue:\"Label\",displayTextArea:false,placeholder:\"\",title:\"Learn\",type:ControlType.String},JxBpRyYNz:{title:\"Link\",type:ControlType.Link},AFz2Sv8SP:{defaultValue:false,title:\"Show Left Icon\",type:ControlType.Boolean},y8JKFgz2o:(IconControls===null||IconControls===void 0?void 0:IconControls[\"variant\"])&&{...IconControls[\"variant\"],defaultValue:\"W_9GYwO2Q\",description:undefined,hidden:undefined,title:\"Left Icon\"},mJj6skhTn:{defaultValue:false,title:\"Show Right Icon\",type:ControlType.Boolean},Jryr1RvH5:(IconControls===null||IconControls===void 0?void 0:IconControls[\"variant\"])&&{...IconControls[\"variant\"],defaultValue:\"XBbhaY3Ap\",description:undefined,hidden:undefined,title:\"Right Icon\"},I3m7fUWtv:{title:\"Tap\",type:ControlType.EventHandler},WMPF8uXCF:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(Framernf4m8S4HC,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...IconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernf4m8S4HC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"GU35LV3EE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JU7Pdu6JR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tmFJJQpMz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sUvobW92l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lPxDJFF43\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zHIZ1f895\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vpr316zHv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"oSu7EGvBN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"AuNtXDsDR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"J0lO7W3Rg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"48\",\"framerIntrinsicWidth\":\"75\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"aT5nRnRI1\\\":\\\"learn\\\",\\\"JxBpRyYNz\\\":\\\"link\\\",\\\"AFz2Sv8SP\\\":\\\"showLeftIcon\\\",\\\"y8JKFgz2o\\\":\\\"leftIcon\\\",\\\"mJj6skhTn\\\":\\\"showRightIcon\\\",\\\"Jryr1RvH5\\\":\\\"rightIcon\\\",\\\"I3m7fUWtv\\\":\\\"tap\\\",\\\"WMPF8uXCF\\\":\\\"hover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nf4m8S4HC.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-p6B76 .framer-styles-preset-1pylpbr:not(.rich-text-wrapper), .framer-p6B76 .framer-styles-preset-1pylpbr.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: var(--token-746a9166-a037-4aad-9fe1-3f32e9324220, #7a7a7a); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-p6B76\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d2b7042)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"qAx0l2ODj\",\"yo085UNy_\",\"Wao28a2Ug\",\"aU4e580aE\",\"LiVHUxHqV\",\"y4aYZi57x\"];const serializationHash=\"framer-Oyges\";const variantClassNames={aU4e580aE:\"framer-v-154hfau\",LiVHUxHqV:\"framer-v-1uv7jf4\",qAx0l2ODj:\"framer-v-rcz74h\",Wao28a2Ug:\"framer-v-114z8yu\",y4aYZi57x:\"framer-v-1o4ofxq\",yo085UNy_:\"framer-v-1fnfexc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Facebook:\"Wao28a2Ug\",Instagram:\"yo085UNy_\",Link:\"LiVHUxHqV\",LinkedIn:\"aU4e580aE\",Twitter:\"qAx0l2ODj\",Youtube:\"y4aYZi57x\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qAx0l2ODj\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"qAx0l2ODj\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"yo085UNy_\",\"Wao28a2Ug\",\"aU4e580aE\",\"LiVHUxHqV\",\"y4aYZi57x\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"yo085UNy_\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Wao28a2Ug\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"aU4e580aE\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"LiVHUxHqV\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"y4aYZi57x\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rcz74h\",className,classNames),\"data-framer-name\":\"Twitter\",layoutDependency:layoutDependency,layoutId:\"qAx0l2ODj\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aU4e580aE:{\"data-framer-name\":\"LinkedIn\"},LiVHUxHqV:{\"data-framer-name\":\"Link\"},Wao28a2Ug:{\"data-framer-name\":\"Facebook\"},y4aYZi57x:{\"data-framer-name\":\"Youtube\"},yo085UNy_:{\"data-framer-name\":\"Instagram\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lir691\",\"data-framer-name\":\"Twitter\",fill:'var(--token-211438b6-623f-410f-b03a-283859e3fee5, rgb(255, 255, 255)) /* {\"name\":\"Foreground Primary Inverted\"} */',intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"TeKK8LgVj\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" style=\"enable-background:new 0 0 24 24\" xml:space=\"preserve\"><path d=\"M14.095 10.316 22.286 1h-1.94L13.23 9.088 7.551 1H1l8.59 12.231L1 23h1.94l7.51-8.543 6 8.543H23l-8.905-12.684zm-2.658 3.022-.872-1.218L3.64 2.432h2.98l5.59 7.821.869 1.219 7.265 10.166h-2.982l-5.926-8.3z\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7ct8qg\",\"data-framer-name\":\"Instagram\",fill:'var(--token-211438b6-623f-410f-b03a-283859e3fee5, rgb(255, 255, 255)) /* {\"name\":\"Foreground Primary Inverted\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"rs1g71UWg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M176 24H80a56.06 56.06 0 0 0-56 56v96a56.06 56.06 0 0 0 56 56h96a56.06 56.06 0 0 0 56-56V80a56.06 56.06 0 0 0-56-56Zm-48 152a48 48 0 1 1 48-48 48.05 48.05 0 0 1-48 48Zm60-96a12 12 0 1 1 12-12 12 12 0 0 1-12 12Zm-28 48a32 32 0 1 1-32-32 32 32 0 0 1 32 32Z\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-11yjzrf\",\"data-framer-name\":\"Facebook\",fill:'var(--token-211438b6-623f-410f-b03a-283859e3fee5, rgb(255, 255, 255)) /* {\"name\":\"Foreground Primary Inverted\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"kD_9auamG\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M232 128a104.16 104.16 0 0 1-91.55 103.26 4 4 0 0 1-4.45-4V152h24a8 8 0 0 0 8-8.53 8.17 8.17 0 0 0-8.25-7.47H136v-24a16 16 0 0 1 16-16h16a8 8 0 0 0 8-8.53 8.17 8.17 0 0 0-8.27-7.47H152a32 32 0 0 0-32 32v24H96a8 8 0 0 0-8 8.53 8.17 8.17 0 0 0 8.27 7.47H120v75.28a4 4 0 0 1-4.44 4 104.15 104.15 0 0 1-91.49-107.19c2-54 45.74-97.9 99.78-100A104.12 104.12 0 0 1 232 128Z\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13r9jru\",\"data-framer-name\":\"LinkedIn\",fill:'var(--token-211438b6-623f-410f-b03a-283859e3fee5, rgb(255, 255, 255)) /* {\"name\":\"Foreground Primary Inverted\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"E3P1oBUtX\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M216 24H40a16 16 0 0 0-16 16v176a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V40a16 16 0 0 0-16-16ZM96 176a8 8 0 0 1-16 0v-64a8 8 0 0 1 16 0Zm-8-80a12 12 0 1 1 12-12 12 12 0 0 1-12 12Zm96 80a8 8 0 0 1-16 0v-36a20 20 0 0 0-40 0v36a8 8 0 0 1-16 0v-64a8 8 0 0 1 15.79-1.78A36 36 0 0 1 184 140Z\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18fgxz0\",\"data-framer-name\":\"Link\",fill:'var(--token-211438b6-623f-410f-b03a-283859e3fee5, rgb(255, 255, 255)) /* {\"name\":\"Foreground Primary Inverted\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"Gtdm_EdMV\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M136.37 187.53a12 12 0 0 1 0 17l-5.94 5.94a60 60 0 0 1-84.88-84.88l24.12-24.11A60 60 0 0 1 152 99a12 12 0 1 1-16 18 36 36 0 0 0-49.37 1.47l-24.1 24.08a36 36 0 0 0 50.92 50.92l5.94-5.94a12 12 0 0 1 16.98 0Zm74.08-142a60.09 60.09 0 0 0-84.88 0l-5.94 5.94a12 12 0 0 0 17 17l5.94-5.94a36 36 0 0 1 50.92 50.92l-24.11 24.12A36 36 0 0 1 120 139a12 12 0 1 0-16 18 60 60 0 0 0 82.3-2.43l24.12-24.11a60.09 60.09 0 0 0 .03-84.91Z\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15vrasz\",\"data-framer-name\":\"Youtube\",fill:'var(--token-211438b6-623f-410f-b03a-283859e3fee5, rgb(255, 255, 255)) /* {\"name\":\"Foreground Primary Inverted\"} */',intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"xylZNsQQ5\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 256 256\"><path d=\"M234.33 69.52a24 24 0 0 0-14.49-16.4C185.56 39.88 131 40 128 40s-57.56-.12-91.84 13.12a24 24 0 0 0-14.49 16.4C19.08 79.5 16 97.74 16 128s3.08 48.5 5.67 58.48a24 24 0 0 0 14.49 16.41C69 215.56 120.4 216 127.34 216h1.32c6.94 0 58.37-.44 91.18-13.11a24 24 0 0 0 14.49-16.41c2.59-10 5.67-28.22 5.67-58.48s-3.08-48.5-5.67-58.48Zm-72.11 61.81-48 32A4 4 0 0 1 108 160V96a4 4 0 0 1 6.22-3.33l48 32a4 4 0 0 1 0 6.66Z\"/></svg>',withExternalLayout:true})]})})})});});const css=['.framer-Oyges[data-border=\"true\"]::after, .framer-Oyges [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Oyges.framer-1h7x9sn, .framer-Oyges .framer-1h7x9sn { display: block; }\",\".framer-Oyges.framer-rcz74h { height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-Oyges .framer-lir691, .framer-Oyges .framer-7ct8qg, .framer-Oyges .framer-11yjzrf, .framer-Oyges .framer-13r9jru, .framer-Oyges .framer-18fgxz0, .framer-Oyges .framer-15vrasz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-Oyges.framer-v-1fnfexc.framer-rcz74h, .framer-Oyges.framer-v-114z8yu.framer-rcz74h, .framer-Oyges.framer-v-154hfau.framer-rcz74h, .framer-Oyges.framer-v-1uv7jf4.framer-rcz74h, .framer-Oyges.framer-v-1o4ofxq.framer-rcz74h { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yo085UNy_\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wao28a2Ug\":{\"layout\":[\"fixed\",\"fixed\"]},\"aU4e580aE\":{\"layout\":[\"fixed\",\"fixed\"]},\"LiVHUxHqV\":{\"layout\":[\"fixed\",\"fixed\"]},\"y4aYZi57x\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FrameryY3mXqYA5=withCSS(Component,css,\"framer-Oyges\");export default FrameryY3mXqYA5;FrameryY3mXqYA5.displayName=\"Icon Social\";FrameryY3mXqYA5.defaultProps={height:24,width:24};addPropertyControls(FrameryY3mXqYA5,{variant:{options:[\"qAx0l2ODj\",\"yo085UNy_\",\"Wao28a2Ug\",\"aU4e580aE\",\"LiVHUxHqV\",\"y4aYZi57x\"],optionTitles:[\"Twitter\",\"Instagram\",\"Facebook\",\"LinkedIn\",\"Link\",\"Youtube\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryY3mXqYA5,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryY3mXqYA5\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yo085UNy_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wao28a2Ug\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aU4e580aE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LiVHUxHqV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"y4aYZi57x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yY3mXqYA5.map", "// Generated by Framer (91bcfbd)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import IconSocial from\"https://framerusercontent.com/modules/YEbQICoafFVjzETYwNzW/iEfisy7Hy9koUFHA65Ru/yY3mXqYA5.js\";const IconSocialFonts=getFonts(IconSocial);const enabledGestures={afXANyw7V:{pressed:true},Dvc5A7kv6:{pressed:true},esFOsSwLY:{pressed:true},KLwqkX_CZ:{pressed:true},QnoJCgAU9:{pressed:true},X89MYaeEG:{pressed:true}};const cycleOrder=[\"QnoJCgAU9\",\"X89MYaeEG\",\"Dvc5A7kv6\",\"KLwqkX_CZ\",\"afXANyw7V\",\"esFOsSwLY\"];const serializationHash=\"framer-B4Zdq\";const variantClassNames={afXANyw7V:\"framer-v-1f4gz97\",Dvc5A7kv6:\"framer-v-1l56l5u\",esFOsSwLY:\"framer-v-1wlhtc6\",KLwqkX_CZ:\"framer-v-4nq8x0\",QnoJCgAU9:\"framer-v-vpik2c\",X89MYaeEG:\"framer-v-u0b708\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Facebook:\"KLwqkX_CZ\",Instagram:\"Dvc5A7kv6\",Link:\"QnoJCgAU9\",LinkedIn:\"afXANyw7V\",Twitter:\"X89MYaeEG\",Youtube:\"esFOsSwLY\"};const getProps=({cursor,height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,RPopBzcfs:cursor!==null&&cursor!==void 0?cursor:props.RPopBzcfs,TNlKw2Bhv:link!==null&&link!==void 0?link:props.TNlKw2Bhv,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"QnoJCgAU9\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TNlKw2Bhv,RPopBzcfs,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"QnoJCgAU9\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:TNlKw2Bhv,children:/*#__PURE__*/_jsx(motion.a,{...restProps,\"aria-label\":\"Website\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-vpik2c\",className,classNames)} framer-1tgjdwl`,\"data-framer-cursor\":RPopBzcfs,\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"QnoJCgAU9\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, rgb(28, 28, 28))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,opacity:1,...style},variants:{\"afXANyw7V-pressed\":{opacity:.7},\"Dvc5A7kv6-pressed\":{opacity:.7},\"esFOsSwLY-pressed\":{opacity:.7},\"KLwqkX_CZ-pressed\":{opacity:.7},\"QnoJCgAU9-pressed\":{opacity:.7},\"X89MYaeEG-pressed\":{opacity:.7}},...addPropertyOverrides({\"afXANyw7V-pressed\":{\"data-framer-name\":undefined},\"Dvc5A7kv6-pressed\":{\"data-framer-name\":undefined},\"esFOsSwLY-pressed\":{\"data-framer-name\":undefined},\"KLwqkX_CZ-pressed\":{\"data-framer-name\":undefined},\"QnoJCgAU9-pressed\":{\"data-framer-name\":undefined},\"X89MYaeEG-pressed\":{\"data-framer-name\":undefined},afXANyw7V:{\"aria-label\":\"LinkedIn\",\"data-framer-name\":\"LinkedIn\"},Dvc5A7kv6:{\"aria-label\":\"Instagram\",\"data-framer-name\":\"Instagram\"},esFOsSwLY:{\"aria-label\":\"Youtube\",\"data-framer-name\":\"Youtube\"},KLwqkX_CZ:{\"aria-label\":\"Facebook\",\"data-framer-name\":\"Facebook\"},X89MYaeEG:{\"aria-label\":\"Twitter\",\"data-framer-name\":\"Twitter\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-176o1md-container\",layoutDependency:layoutDependency,layoutId:\"cmVsuIItw-container\",children:/*#__PURE__*/_jsx(IconSocial,{eQEFFdws4:\"var(--token-211438b6-623f-410f-b03a-283859e3fee5, rgb(255, 255, 255))\",height:\"100%\",id:\"cmVsuIItw\",layoutId:\"cmVsuIItw\",style:{height:\"100%\",width:\"100%\"},variant:\"LiVHUxHqV\",width:\"100%\",...addPropertyOverrides({afXANyw7V:{variant:\"aU4e580aE\"},Dvc5A7kv6:{variant:\"yo085UNy_\"},esFOsSwLY:{variant:\"y4aYZi57x\"},KLwqkX_CZ:{variant:\"Wao28a2Ug\"},X89MYaeEG:{variant:\"qAx0l2ODj\"}},baseVariant,gestureVariant)})})})})})})});});const css=['.framer-B4Zdq[data-border=\"true\"]::after, .framer-B4Zdq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B4Zdq.framer-1tgjdwl, .framer-B4Zdq .framer-1tgjdwl { display: block; }\",\".framer-B4Zdq.framer-vpik2c { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B4Zdq .framer-176o1md-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B4Zdq.framer-vpik2c { gap: 0px; } .framer-B4Zdq.framer-vpik2c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-B4Zdq.framer-vpik2c > :first-child { margin-left: 0px; } .framer-B4Zdq.framer-vpik2c > :last-child { margin-right: 0px; } }\",\".framer-B4Zdq.framer-v-u0b708.framer-vpik2c, .framer-B4Zdq.framer-v-1l56l5u.framer-vpik2c, .framer-B4Zdq.framer-v-4nq8x0.framer-vpik2c, .framer-B4Zdq.framer-v-1f4gz97.framer-vpik2c, .framer-B4Zdq.framer-v-1wlhtc6.framer-vpik2c, .framer-B4Zdq.framer-v-vpik2c.pressed.framer-vpik2c { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 56px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"X89MYaeEG\":{\"layout\":[\"fixed\",\"fixed\"]},\"Dvc5A7kv6\":{\"layout\":[\"fixed\",\"fixed\"]},\"KLwqkX_CZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"afXANyw7V\":{\"layout\":[\"fixed\",\"fixed\"]},\"esFOsSwLY\":{\"layout\":[\"fixed\",\"fixed\"]},\"mmnOCwHr4\":{\"layout\":[\"fixed\",\"fixed\"]},\"DEs3NyHZU\":{\"layout\":[\"fixed\",\"fixed\"]},\"XTDFZDKjM\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZHYB0uxrr\":{\"layout\":[\"fixed\",\"fixed\"]},\"fGZTLPphg\":{\"layout\":[\"fixed\",\"fixed\"]},\"OXKmUUf_w\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TNlKw2Bhv\":\"link\",\"RPopBzcfs\":\"cursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerEIfSx8f3v=withCSS(Component,css,\"framer-B4Zdq\");export default FramerEIfSx8f3v;FramerEIfSx8f3v.displayName=\"Social Button\";FramerEIfSx8f3v.defaultProps={height:56,width:56};addPropertyControls(FramerEIfSx8f3v,{variant:{options:[\"QnoJCgAU9\",\"X89MYaeEG\",\"Dvc5A7kv6\",\"KLwqkX_CZ\",\"afXANyw7V\",\"esFOsSwLY\"],optionTitles:[\"Link\",\"Twitter\",\"Instagram\",\"Facebook\",\"LinkedIn\",\"Youtube\"],title:\"Variant\",type:ControlType.Enum},TNlKw2Bhv:{title:\"Link\",type:ControlType.Link},RPopBzcfs:{title:\"Cursor\",type:ControlType.CustomCursor}});addFonts(FramerEIfSx8f3v,[...IconSocialFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEIfSx8f3v\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X89MYaeEG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Dvc5A7kv6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KLwqkX_CZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"afXANyw7V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"esFOsSwLY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mmnOCwHr4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DEs3NyHZU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XTDFZDKjM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZHYB0uxrr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fGZTLPphg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OXKmUUf_w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"56\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"56\",\"framerVariables\":\"{\\\"TNlKw2Bhv\\\":\\\"link\\\",\\\"RPopBzcfs\\\":\\\"cursor\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qn03a81hkXZQRkf8SIuk/xhuMJjl7uNxejsZR1UlN/TDR5zznxb.js\";import SocialButton from\"https://framerusercontent.com/modules/ba5CDWAMKf1sXnrfAQjf/QLgjlWago1pAUvAvzvHH/EIfSx8f3v.js\";import Button from\"https://framerusercontent.com/modules/xsmoMl95ff2oglwGkNPc/bX4nviANSvikgTEBH7lA/nf4m8S4HC.js\";import Logo from\"https://framerusercontent.com/modules/dGpE7YBdoUq8APvBVpwh/mg5vmEcWpmdnjtrvKKCt/PGAi0Bfw8.js\";const LogoFonts=getFonts(Logo);const ButtonFonts=getFonts(Button);const SocialButtonFonts=getFonts(SocialButton);const cycleOrder=[\"Lc4SZcwrB\",\"CGeUXsixp\"];const serializationHash=\"framer-NVO58\";const variantClassNames={CGeUXsixp:\"framer-v-1vfxbfq\",Lc4SZcwrB:\"framer-v-ba0v03\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,scale:1.05,transition:transition2};const animation1={opacity:1,rotate:0,scale:.95,transition:transition2};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"Lc4SZcwrB\",Phone:\"CGeUXsixp\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Lc4SZcwrB\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Lc4SZcwrB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ba0v03\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Lc4SZcwrB\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-b445e89f-125f-4d6a-8ba9-052d49c5a306, rgb(255, 255, 255))\",...style},...addPropertyOverrides({CGeUXsixp:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o13o8n\",\"data-framer-name\":\"Footer Content\",layoutDependency:layoutDependency,layoutId:\"zRPKhBh2T\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10k3ifb\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"UwUEA3RjG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-153cyju-container\",layoutDependency:layoutDependency,layoutId:\"hP4zmbF09-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"hP4zmbF09\",layoutId:\"hP4zmbF09\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-172ulc\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"e5hzQKgEC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i7akfl-container\",layoutDependency:layoutDependency,layoutId:\"IZv_jO0Jo-container\",children:/*#__PURE__*/_jsx(Button,{AFz2Sv8SP:false,aT5nRnRI1:\"Contact\",height:\"100%\",id:\"IZv_jO0Jo\",Jryr1RvH5:\"XBbhaY3Ap\",JxBpRyYNz:\"mailto:info@promptxchange.io\",layoutId:\"IZv_jO0Jo\",mJj6skhTn:false,variant:\"GU35LV3EE\",width:\"100%\",y8JKFgz2o:\"W_9GYwO2Q\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"x4XhFCsxM\"},implicitPathVariables:undefined},{href:{webPageId:\"x4XhFCsxM\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ka4zy3-container\",layoutDependency:layoutDependency,layoutId:\"SFllvaXFa-container\",children:/*#__PURE__*/_jsx(Button,{AFz2Sv8SP:false,aT5nRnRI1:\"Terms & Conditions\",height:\"100%\",id:\"SFllvaXFa\",Jryr1RvH5:\"XBbhaY3Ap\",JxBpRyYNz:resolvedLinks[0],layoutId:\"SFllvaXFa\",mJj6skhTn:false,variant:\"GU35LV3EE\",width:\"100%\",y8JKFgz2o:\"W_9GYwO2Q\",...addPropertyOverrides({CGeUXsixp:{JxBpRyYNz:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ba4qQauuA\"},implicitPathVariables:undefined},{href:{webPageId:\"Ba4qQauuA\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dk9aix-container\",layoutDependency:layoutDependency,layoutId:\"iJUas6a7K-container\",children:/*#__PURE__*/_jsx(Button,{AFz2Sv8SP:false,aT5nRnRI1:\"Licensing\",height:\"100%\",id:\"iJUas6a7K\",Jryr1RvH5:\"XBbhaY3Ap\",JxBpRyYNz:resolvedLinks1[0],layoutId:\"iJUas6a7K\",mJj6skhTn:false,variant:\"GU35LV3EE\",width:\"100%\",y8JKFgz2o:\"W_9GYwO2Q\",...addPropertyOverrides({CGeUXsixp:{JxBpRyYNz:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9sq45v-container\",layoutDependency:layoutDependency,layoutId:\"tCjHnOUew-container\",children:/*#__PURE__*/_jsx(Button,{AFz2Sv8SP:false,aT5nRnRI1:\"Career\",height:\"100%\",id:\"tCjHnOUew\",Jryr1RvH5:\"XBbhaY3Ap\",layoutId:\"tCjHnOUew\",mJj6skhTn:false,variant:\"GU35LV3EE\",width:\"100%\",y8JKFgz2o:\"W_9GYwO2Q\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hnd4es-container\",layoutDependency:layoutDependency,layoutId:\"ULbKsKWNe-container\",children:/*#__PURE__*/_jsx(Button,{AFz2Sv8SP:false,aT5nRnRI1:\"About\",height:\"100%\",id:\"ULbKsKWNe\",Jryr1RvH5:\"XBbhaY3Ap\",layoutId:\"ULbKsKWNe\",mJj6skhTn:false,variant:\"GU35LV3EE\",width:\"100%\",y8JKFgz2o:\"W_9GYwO2Q\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1flygwi\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"aX71zqxrL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ngbc0e\",\"data-framer-name\":\"Social Buttons\",layoutDependency:layoutDependency,layoutId:\"rRyXkjvFJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nv1p28-container\",layoutDependency:layoutDependency,layoutId:\"CSMSMz3wQ-container\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(SocialButton,{height:\"100%\",id:\"CSMSMz3wQ\",layoutId:\"CSMSMz3wQ\",style:{height:\"100%\",width:\"100%\"},TNlKw2Bhv:\"https://promptxchange.io\",variant:\"QnoJCgAU9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pupdns-container\",layoutDependency:layoutDependency,layoutId:\"OpwR0CqDU-container\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(SocialButton,{height:\"100%\",id:\"OpwR0CqDU\",layoutId:\"OpwR0CqDU\",style:{height:\"100%\",width:\"100%\"},TNlKw2Bhv:\"https://twitter.com/promptxchange\",variant:\"X89MYaeEG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dfqdhy-container\",layoutDependency:layoutDependency,layoutId:\"Bfv4j50AS-container\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(SocialButton,{height:\"100%\",id:\"Bfv4j50AS\",layoutId:\"Bfv4j50AS\",style:{height:\"100%\",width:\"100%\"},TNlKw2Bhv:\"https://www.youtube.com/@PromptXchange\",variant:\"esFOsSwLY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3y8492-container\",layoutDependency:layoutDependency,layoutId:\"dUeScLr9O-container\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(SocialButton,{height:\"100%\",id:\"dUeScLr9O\",layoutId:\"dUeScLr9O\",style:{height:\"100%\",width:\"100%\"},TNlKw2Bhv:\"https://www.instagram.com/promptxchange\",variant:\"Dvc5A7kv6\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ken4tn\",\"data-framer-name\":\"Credentials & Copyright\",layoutDependency:layoutDependency,layoutId:\"BCx0kq52w\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12yyqkv\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Qc2i9fllx\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pylpbr\",\"data-styles-preset\":\"TDR5zznxb\",children:\"\\xa9 2024 Prompt Xchange\"})}),className:\"framer-16hyxj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yPUhZCxvQ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NVO58.framer-166spoz, .framer-NVO58 .framer-166spoz { display: block; }\",\".framer-NVO58.framer-ba0v03 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-NVO58 .framer-1o13o8n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-NVO58 .framer-10k3ifb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-NVO58 .framer-153cyju-container { flex: none; height: 25px; position: relative; width: auto; }\",\".framer-NVO58 .framer-172ulc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NVO58 .framer-1i7akfl-container, .framer-NVO58 .framer-1ka4zy3-container, .framer-NVO58 .framer-dk9aix-container, .framer-NVO58 .framer-9sq45v-container, .framer-NVO58 .framer-1hnd4es-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NVO58 .framer-1flygwi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-NVO58 .framer-ngbc0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-NVO58 .framer-1nv1p28-container, .framer-NVO58 .framer-pupdns-container, .framer-NVO58 .framer-dfqdhy-container, .framer-NVO58 .framer-3y8492-container { flex: none; height: 56px; position: relative; width: 56px; }\",\".framer-NVO58 .framer-ken4tn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 324px; }\",\".framer-NVO58 .framer-12yyqkv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 24px; min-width: 122px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-NVO58 .framer-16hyxj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NVO58.framer-ba0v03, .framer-NVO58 .framer-1o13o8n, .framer-NVO58 .framer-10k3ifb, .framer-NVO58 .framer-172ulc, .framer-NVO58 .framer-1flygwi, .framer-NVO58 .framer-ngbc0e, .framer-NVO58 .framer-ken4tn, .framer-NVO58 .framer-12yyqkv { gap: 0px; } .framer-NVO58.framer-ba0v03 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NVO58.framer-ba0v03 > :first-child, .framer-NVO58 .framer-172ulc > :first-child, .framer-NVO58 .framer-ngbc0e > :first-child, .framer-NVO58 .framer-12yyqkv > :first-child { margin-left: 0px; } .framer-NVO58.framer-ba0v03 > :last-child, .framer-NVO58 .framer-172ulc > :last-child, .framer-NVO58 .framer-ngbc0e > :last-child, .framer-NVO58 .framer-12yyqkv > :last-child { margin-right: 0px; } .framer-NVO58 .framer-1o13o8n > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NVO58 .framer-1o13o8n > :first-child, .framer-NVO58 .framer-10k3ifb > :first-child, .framer-NVO58 .framer-1flygwi > :first-child, .framer-NVO58 .framer-ken4tn > :first-child { margin-top: 0px; } .framer-NVO58 .framer-1o13o8n > :last-child, .framer-NVO58 .framer-10k3ifb > :last-child, .framer-NVO58 .framer-1flygwi > :last-child, .framer-NVO58 .framer-ken4tn > :last-child { margin-bottom: 0px; } .framer-NVO58 .framer-10k3ifb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NVO58 .framer-172ulc > *, .framer-NVO58 .framer-ngbc0e > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-NVO58 .framer-1flygwi > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-NVO58 .framer-ken4tn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NVO58 .framer-12yyqkv > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-NVO58.framer-v-1vfxbfq.framer-ba0v03 { width: 390px; }\",\".framer-NVO58.framer-v-1vfxbfq .framer-10k3ifb { padding: 40px 24px 0px 24px; }\",\".framer-NVO58.framer-v-1vfxbfq .framer-172ulc { flex-direction: column; gap: 0px; }\",\".framer-NVO58.framer-v-1vfxbfq .framer-1flygwi { gap: 40px; }\",\".framer-NVO58.framer-v-1vfxbfq .framer-12yyqkv { flex-direction: column; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NVO58.framer-v-1vfxbfq .framer-172ulc, .framer-NVO58.framer-v-1vfxbfq .framer-1flygwi, .framer-NVO58.framer-v-1vfxbfq .framer-12yyqkv { gap: 0px; } .framer-NVO58.framer-v-1vfxbfq .framer-172ulc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NVO58.framer-v-1vfxbfq .framer-172ulc > :first-child, .framer-NVO58.framer-v-1vfxbfq .framer-1flygwi > :first-child, .framer-NVO58.framer-v-1vfxbfq .framer-12yyqkv > :first-child { margin-top: 0px; } .framer-NVO58.framer-v-1vfxbfq .framer-172ulc > :last-child, .framer-NVO58.framer-v-1vfxbfq .framer-1flygwi > :last-child, .framer-NVO58.framer-v-1vfxbfq .framer-12yyqkv > :last-child { margin-bottom: 0px; } .framer-NVO58.framer-v-1vfxbfq .framer-1flygwi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NVO58.framer-v-1vfxbfq .framer-12yyqkv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 469\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CGeUXsixp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerF801woTAj=withCSS(Component,css,\"framer-NVO58\");export default FramerF801woTAj;FramerF801woTAj.displayName=\"Footer\";FramerF801woTAj.defaultProps={height:469,width:1200};addPropertyControls(FramerF801woTAj,{variant:{options:[\"Lc4SZcwrB\",\"CGeUXsixp\"],optionTitles:[\"Default\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerF801woTAj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...LogoFonts,...ButtonFonts,...SocialButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerF801woTAj\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"469\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CGeUXsixp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./F801woTAj.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-p6B76 .framer-styles-preset-1pylpbr:not(.rich-text-wrapper), .framer-p6B76 .framer-styles-preset-1pylpbr.rich-text-wrapper p { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 13px; --framer-text-alignment: start; --framer-text-color: var(--token-746a9166-a037-4aad-9fe1-3f32e9324220, #7a7a7a); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-p6B76\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d2b7042)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"oC_M8kcWc\",\"xOHDoLwVG\",\"W_9GYwO2Q\",\"CGHGJKanj\",\"XBbhaY3Ap\",\"tdyaowXru\",\"z2OPP9Yd8\",\"rChFHWdfM\",\"fIayz8pwA\",\"sjAVzneXr\",\"DQZPmdEUN\",\"kGckxrIh8\",\"Wil7uFAe3\",\"q0swXOONY\",\"pzBGWrd5H\",\"anasdMsPG\",\"jXc7L0MgL\",\"nM98KgsE4\",\"QAbZWp75Z\",\"ewgKbHnL_\",\"xOdCiXBUQ\",\"j3pWzbTtG\",\"hUOrUeoy0\",\"I_Nvl2t66\",\"OiurDqXVB\",\"mfYv7zrbn\",\"zUVYHDpZQ\"];const serializationHash=\"framer-73YLQ\";const variantClassNames={anasdMsPG:\"framer-v-1clemf\",CGHGJKanj:\"framer-v-fkbpko\",DQZPmdEUN:\"framer-v-z0gpp1\",ewgKbHnL_:\"framer-v-1wo2c32\",fIayz8pwA:\"framer-v-arkjh8\",hUOrUeoy0:\"framer-v-1jlwctn\",I_Nvl2t66:\"framer-v-1ioenay\",j3pWzbTtG:\"framer-v-19w5len\",jXc7L0MgL:\"framer-v-1644y6s\",kGckxrIh8:\"framer-v-1hkwblv\",mfYv7zrbn:\"framer-v-nhde1x\",nM98KgsE4:\"framer-v-1q040hc\",oC_M8kcWc:\"framer-v-imagha\",OiurDqXVB:\"framer-v-1chdsis\",pzBGWrd5H:\"framer-v-11ciftv\",q0swXOONY:\"framer-v-2uajfc\",QAbZWp75Z:\"framer-v-tlk31u\",rChFHWdfM:\"framer-v-c1hzvs\",sjAVzneXr:\"framer-v-dtzc54\",tdyaowXru:\"framer-v-9rp8tn\",W_9GYwO2Q:\"framer-v-l0mmo3\",Wil7uFAe3:\"framer-v-1ljy4l5\",XBbhaY3Ap:\"framer-v-1xp4fqk\",xOdCiXBUQ:\"framer-v-1h9jaqy\",xOHDoLwVG:\"framer-v-m4zmtn\",z2OPP9Yd8:\"framer-v-s6w8fz\",zUVYHDpZQ:\"framer-v-1we19vb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Arrow Left\":\"OiurDqXVB\",\"Arrow Right\":\"XBbhaY3Ap\",\"Book Open Text Filled\":\"pzBGWrd5H\",\"Book Open Text\":\"z2OPP9Yd8\",\"Caret Down\":\"zUVYHDpZQ\",\"Chalkboard Teacher\":\"ewgKbHnL_\",\"Chats Circle\":\"q0swXOONY\",\"Check Circle\":\"tdyaowXru\",\"Paint Brush\":\"sjAVzneXr\",\"Pencil Circle\":\"Wil7uFAe3\",\"Play Circle Filled\":\"W_9GYwO2Q\",\"Play Circle\":\"CGHGJKanj\",\"Shopping Bag Open\":\"xOdCiXBUQ\",\"Sign In Filled\":\"anasdMsPG\",\"Sign In\":\"rChFHWdfM\",Bezier:\"fIayz8pwA\",Clock:\"hUOrUeoy0\",Close:\"oC_M8kcWc\",Code:\"DQZPmdEUN\",Megaphone:\"kGckxrIh8\",Notebook:\"jXc7L0MgL\",Question:\"j3pWzbTtG\",Search:\"I_Nvl2t66\",Stack:\"nM98KgsE4\",Star:\"xOHDoLwVG\",User:\"mfYv7zrbn\",Users:\"QAbZWp75Z\"};const getProps=({color,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,eQEFFdws4:(_ref=color!==null&&color!==void 0?color:props.eQEFFdws4)!==null&&_ref!==void 0?_ref:\"var(--token-1293e359-60aa-48e6-97f1-7e5a0bdcde01, rgb(0, 0, 0))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"oC_M8kcWc\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eQEFFdws4,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"oC_M8kcWc\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-imagha\",className,classNames),\"data-framer-name\":\"Close\",layoutDependency:layoutDependency,layoutId:\"oC_M8kcWc\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({anasdMsPG:{\"data-framer-name\":\"Sign In Filled\"},CGHGJKanj:{\"data-framer-name\":\"Play Circle\"},DQZPmdEUN:{\"data-framer-name\":\"Code\"},ewgKbHnL_:{\"data-framer-name\":\"Chalkboard Teacher\"},fIayz8pwA:{\"data-framer-name\":\"Bezier\"},hUOrUeoy0:{\"data-framer-name\":\"Clock\"},I_Nvl2t66:{\"data-framer-name\":\"Search\"},j3pWzbTtG:{\"data-framer-name\":\"Question\"},jXc7L0MgL:{\"data-framer-name\":\"Notebook\"},kGckxrIh8:{\"data-framer-name\":\"Megaphone\"},mfYv7zrbn:{\"data-framer-name\":\"User\"},nM98KgsE4:{\"data-framer-name\":\"Stack\"},OiurDqXVB:{\"data-framer-name\":\"Arrow Left\"},pzBGWrd5H:{\"data-framer-name\":\"Book Open Text Filled\"},q0swXOONY:{\"data-framer-name\":\"Chats Circle\"},QAbZWp75Z:{\"data-framer-name\":\"Users\"},rChFHWdfM:{\"data-framer-name\":\"Sign In\"},sjAVzneXr:{\"data-framer-name\":\"Paint Brush\"},tdyaowXru:{\"data-framer-name\":\"Check Circle\"},W_9GYwO2Q:{\"data-framer-name\":\"Play Circle Filled\"},Wil7uFAe3:{\"data-framer-name\":\"Pencil Circle\"},XBbhaY3Ap:{\"data-framer-name\":\"Arrow Right\"},xOdCiXBUQ:{\"data-framer-name\":\"Shopping Bag Open\"},xOHDoLwVG:{\"data-framer-name\":\"Star\"},z2OPP9Yd8:{\"data-framer-name\":\"Book Open Text\"},zUVYHDpZQ:{\"data-framer-name\":\"Caret Down\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qm5yzt-container\",\"data-framer-name\":\"SVG\",layoutDependency:layoutDependency,layoutId:\"W6FZKuT2C-container\",name:\"SVG\",children:/*#__PURE__*/_jsx(SVG,{customColor:eQEFFdws4,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>',height:\"100%\",id:\"W6FZKuT2C\",layoutId:\"W6FZKuT2C\",lineCap:\"butt\",lineJoin:\"miter\",name:\"SVG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({anasdMsPG:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M141.66,133.66l-40,40A8,8,0,0,1,88,168V136H24a8,8,0,0,1,0-16H88V88a8,8,0,0,1,13.66-5.66l40,40A8,8,0,0,1,141.66,133.66ZM192,32H136a8,8,0,0,0,0,16h56V208H136a8,8,0,0,0,0,16h56a16,16,0,0,0,16-16V48A16,16,0,0,0,192,32Z\"></path></svg>'},CGHGJKanj:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm36.44-94.66-48-32A8,8,0,0,0,104,96v64a8,8,0,0,0,12.44,6.66l48-32a8,8,0,0,0,0-13.32ZM120,145.05V111l25.58,17Z\"></path></svg>'},DQZPmdEUN:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M67.84,92.61,25.37,128l42.47,35.39a6,6,0,1,1-7.68,9.22l-48-40a6,6,0,0,1,0-9.22l48-40a6,6,0,0,1,7.68,9.22Zm176,30.78-48-40a6,6,0,1,0-7.68,9.22L230.63,128l-42.47,35.39a6,6,0,1,0,7.68,9.22l48-40a6,6,0,0,0,0-9.22Zm-81.79-89A6,6,0,0,0,154.36,38l-64,176A6,6,0,0,0,94,221.64a6.15,6.15,0,0,0,2,.36,6,6,0,0,0,5.64-3.95l64-176A6,6,0,0,0,162.05,34.36Z\"></path></svg>'},ewgKbHnL_:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H53.39a8,8,0,0,0,7.23-4.57,48,48,0,0,1,86.76,0,8,8,0,0,0,7.23,4.57H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM80,144a24,24,0,1,1,24,24A24,24,0,0,1,80,144Zm136,56H159.43a64.39,64.39,0,0,0-28.83-26.16,40,40,0,1,0-53.2,0A64.39,64.39,0,0,0,48.57,200H40V56H216ZM56,96V80a8,8,0,0,1,8-8H192a8,8,0,0,1,8,8v96a8,8,0,0,1-8,8H176a8,8,0,0,1,0-16h8V88H72v8a8,8,0,0,1-16,0Z\"></path></svg>'},fIayz8pwA:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M219.44,146.2A94.66,94.66,0,0,0,173.92,86H240a6,6,0,0,0,0-12H157.4a30,30,0,0,0-58.8,0H16a6,6,0,0,0,0,12H82.08a94.66,94.66,0,0,0-45.52,60.2,30,30,0,1,0,12.09,1.08,82.53,82.53,0,0,1,51.4-56.39,30,30,0,0,0,55.9,0,82.53,82.53,0,0,1,51.4,56.39,30,30,0,1,0,12.09-1.08ZM58,176a18,18,0,1,1-18-18A18,18,0,0,1,58,176Zm70-78a18,18,0,1,1,18-18A18,18,0,0,1,128,98Zm88,96a18,18,0,1,1,18-18A18,18,0,0,1,216,194Z\"></path></svg>'},hUOrUeoy0:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z\"></path></svg>'},I_Nvl2t66:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z\"></path></svg>'},j3pWzbTtG:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M225.86,102.82c-3.77-3.94-7.67-8-9.14-11.57-1.36-3.27-1.44-8.69-1.52-13.94-.15-9.76-.31-20.82-8-28.51s-18.75-7.85-28.51-8c-5.25-.08-10.67-.16-13.94-1.52-3.56-1.47-7.63-5.37-11.57-9.14C146.28,23.51,138.44,16,128,16s-18.27,7.51-25.18,14.14c-3.94,3.77-8,7.67-11.57,9.14C88,40.64,82.56,40.72,77.31,40.8c-9.76.15-20.82.31-28.51,8S41,67.55,40.8,77.31c-.08,5.25-.16,10.67-1.52,13.94-1.47,3.56-5.37,7.63-9.14,11.57C23.51,109.72,16,117.56,16,128s7.51,18.27,14.14,25.18c3.77,3.94,7.67,8,9.14,11.57,1.36,3.27,1.44,8.69,1.52,13.94.15,9.76.31,20.82,8,28.51s18.75,7.85,28.51,8c5.25.08,10.67.16,13.94,1.52,3.56,1.47,7.63,5.37,11.57,9.14C109.72,232.49,117.56,240,128,240s18.27-7.51,25.18-14.14c3.94-3.77,8-7.67,11.57-9.14,3.27-1.36,8.69-1.44,13.94-1.52,9.76-.15,20.82-.31,28.51-8s7.85-18.75,8-28.51c.08-5.25.16-10.67,1.52-13.94,1.47-3.56,5.37-7.63,9.14-11.57C232.49,146.28,240,138.44,240,128S232.49,109.73,225.86,102.82Zm-11.55,39.29c-4.79,5-9.75,10.17-12.38,16.52-2.52,6.1-2.63,13.07-2.73,19.82-.1,7-.21,14.33-3.32,17.43s-10.39,3.22-17.43,3.32c-6.75.1-13.72.21-19.82,2.73-6.35,2.63-11.52,7.59-16.52,12.38S132,224,128,224s-9.15-4.92-14.11-9.69-10.17-9.75-16.52-12.38c-6.1-2.52-13.07-2.63-19.82-2.73-7-.1-14.33-.21-17.43-3.32s-3.22-10.39-3.32-17.43c-.1-6.75-.21-13.72-2.73-19.82-2.63-6.35-7.59-11.52-12.38-16.52S32,132,32,128s4.92-9.15,9.69-14.11,9.75-10.17,12.38-16.52c2.52-6.1,2.63-13.07,2.73-19.82.1-7,.21-14.33,3.32-17.43S70.51,56.9,77.55,56.8c6.75-.1,13.72-.21,19.82-2.73,6.35-2.63,11.52-7.59,16.52-12.38S124,32,128,32s9.15,4.92,14.11,9.69,10.17,9.75,16.52,12.38c6.1,2.52,13.07,2.63,19.82,2.73,7,.1,14.33.21,17.43,3.32s3.22,10.39,3.32,17.43c.1,6.75.21,13.72,2.73,19.82,2.63,6.35,7.59,11.52,12.38,16.52S224,124,224,128,219.08,137.15,214.31,142.11ZM140,180a12,12,0,1,1-12-12A12,12,0,0,1,140,180Zm28-72c0,17.38-13.76,31.93-32,35.28V144a8,8,0,0,1-16,0v-8a8,8,0,0,1,8-8c13.23,0,24-9,24-20s-10.77-20-24-20-24,9-24,20v4a8,8,0,0,1-16,0v-4c0-19.85,17.94-36,40-36S168,88.15,168,108Z\"></path></svg>'},jXc7L0MgL:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M184,112a8,8,0,0,1-8,8H112a8,8,0,0,1,0-16h64A8,8,0,0,1,184,112Zm-8,24H112a8,8,0,0,0,0,16h64a8,8,0,0,0,0-16Zm48-88V208a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V48A16,16,0,0,1,48,32H208A16,16,0,0,1,224,48ZM48,208H72V48H48Zm160,0V48H88V208H208Z\"></path></svg>'},kGckxrIh8:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M238,120a46.05,46.05,0,0,0-46-46H152.15C149.57,73.86,98.05,70.44,49,29.3A14,14,0,0,0,26,40V200a13.85,13.85,0,0,0,8.07,12.68A14.16,14.16,0,0,0,40,214a13.9,13.9,0,0,0,9-3.3c40-33.52,81.57-42,97-44.07v34a14,14,0,0,0,6.23,11.65l11,7.33a14,14,0,0,0,21.32-8.17l12.13-45.71A46.07,46.07,0,0,0,238,120ZM41.29,201.52A2,2,0,0,1,38,200V40a1.9,1.9,0,0,1,1.15-1.8A2.08,2.08,0,0,1,40,38a1.91,1.91,0,0,1,1.26.48c44,36.92,89,45.19,104.71,47v69C130.29,156.33,85.3,164.61,41.29,201.52Zm131.64,7a2,2,0,0,1-3.05,1.18l-11-7.33a2,2,0,0,1-.89-1.67V166h26.2ZM192,154H158V86h34a34,34,0,1,1,0,68Z\"></path></svg>'},mfYv7zrbn:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M230.92,212c-15.23-26.33-38.7-45.21-66.09-54.16a72,72,0,1,0-73.66,0C63.78,166.78,40.31,185.66,25.08,212a8,8,0,1,0,13.85,8c18.84-32.56,52.14-52,89.07-52s70.23,19.44,89.07,52a8,8,0,1,0,13.85-8ZM72,96a56,56,0,1,1,56,56A56.06,56.06,0,0,1,72,96Z\"></path></svg>'},nM98KgsE4:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M230.91,172A8,8,0,0,1,228,182.91l-96,56a8,8,0,0,1-8.06,0l-96-56A8,8,0,0,1,36,169.09l92,53.65,92-53.65A8,8,0,0,1,230.91,172ZM220,121.09l-92,53.65L36,121.09A8,8,0,0,0,28,134.91l96,56a8,8,0,0,0,8.06,0l96-56A8,8,0,1,0,220,121.09ZM24,80a8,8,0,0,1,4-6.91l96-56a8,8,0,0,1,8.06,0l96,56a8,8,0,0,1,0,13.82l-96,56a8,8,0,0,1-8.06,0l-96-56A8,8,0,0,1,24,80Zm23.88,0L128,126.74,208.12,80,128,33.26Z\"></path></svg>'},OiurDqXVB:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,128a8,8,0,0,1-8,8H59.31l58.35,58.34a8,8,0,0,1-11.32,11.32l-72-72a8,8,0,0,1,0-11.32l72-72a8,8,0,0,1,11.32,11.32L59.31,120H216A8,8,0,0,1,224,128Z\"></path></svg>'},pzBGWrd5H:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,48H168a32,32,0,0,0-32,32v88a8,8,0,0,1-16,0V80A32,32,0,0,0,88,48H32A16,16,0,0,0,16,64V192a16,16,0,0,0,16,16H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h64a16,16,0,0,0,16-16V64A16,16,0,0,0,224,48ZM208,168H168a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Zm0-32H168a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Zm0-32H168a8,8,0,0,1,0-16h40a8,8,0,0,1,0,16Z\"></path></svg>'},q0swXOONY:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M229.66,187.13a78,78,0,0,0-61.5-112.71A78,78,0,1,0,26.34,139.13L18.47,166.7A12,12,0,0,0,33.3,181.53l27.57-7.87a78.25,78.25,0,0,0,26.94,7.9,78.05,78.05,0,0,0,107.32,40.1l27.57,7.87a12,12,0,0,0,14.83-14.83ZM61.53,161.23a5.82,5.82,0,0,0-1.65.23L30,170l8.53-29.87a6,6,0,0,0-.5-4.53A66,66,0,1,1,64.41,162,6.1,6.1,0,0,0,61.53,161.23Zm155.93,26.89L226,218l-29.87-8.53a6,6,0,0,0-4.53.5,66,66,0,0,1-90.48-28.15,77.92,77.92,0,0,0,71-94.68A66,66,0,0,1,218,183.59,6,6,0,0,0,217.46,188.12Z\"></path></svg>/www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M231.79,187.33A80,80,0,0,0,169.57,72.59,80,80,0,1,0,24.21,139.33l-7.66,26.82a14,14,0,0,0,17.3,17.3l26.82-7.66a80.15,80.15,0,0,0,25.75,7.63,80,80,0,0,0,108.91,40.37l26.82,7.66a14,14,0,0,0,17.3-17.3ZM61.53,159.23a8.22,8.22,0,0,0-2.2.3l-26.41,7.55,7.55-26.41a8,8,0,0,0-.68-6,63.95,63.95,0,1,1,25.57,25.57A7.94,7.94,0,0,0,61.53,159.23Zm154,29.44,7.55,26.41-26.41-7.55a8,8,0,0,0-6,.68,64.06,64.06,0,0,1-86.32-24.64A79.93,79.93,0,0,0,174.7,89.71a64,64,0,0,1,41.51,92.93A8,8,0,0,0,215.53,188.67Z\"></path></svg>'},QAbZWp75Z:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M117.25,157.92a60,60,0,1,0-66.5,0A95.83,95.83,0,0,0,3.53,195.63a8,8,0,1,0,13.4,8.74,80,80,0,0,1,134.14,0,8,8,0,0,0,13.4-8.74A95.83,95.83,0,0,0,117.25,157.92ZM40,108a44,44,0,1,1,44,44A44.05,44.05,0,0,1,40,108Zm210.14,98.7a8,8,0,0,1-11.07-2.33A79.83,79.83,0,0,0,172,168a8,8,0,0,1,0-16,44,44,0,1,0-16.34-84.87,8,8,0,1,1-5.94-14.85,60,60,0,0,1,55.53,105.64,95.83,95.83,0,0,1,47.22,37.71A8,8,0,0,1,250.14,206.7Z\"></path></svg>'},rChFHWdfM:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M141.66,133.66l-40,40a8,8,0,0,1-11.32-11.32L116.69,136H24a8,8,0,0,1,0-16h92.69L90.34,93.66a8,8,0,0,1,11.32-11.32l40,40A8,8,0,0,1,141.66,133.66ZM192,32H136a8,8,0,0,0,0,16h56V208H136a8,8,0,0,0,0,16h56a16,16,0,0,0,16-16V48A16,16,0,0,0,192,32Z\"></path></svg>'},sjAVzneXr:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,26c-20.8,0-44.11,11.41-69.3,33.9C136.62,76.06,121,94.9,110.3,109A58,58,0,0,0,34,164c0,32.07-20.43,46.39-21.35,47A6,6,0,0,0,16,222H92a58,58,0,0,0,55-76.3c14.08-10.67,32.92-26.32,49.08-44.4C218.59,76.11,230,52.8,230,32A6,6,0,0,0,224,26ZM92,210H30.65C37.92,200.85,46,185.78,46,164a46,46,0,1,1,46,46Zm29.49-95.91c3.6-4.67,7.88-10,12.71-15.69a78.17,78.17,0,0,1,23.4,23.4c-5.67,4.83-11,9.11-15.69,12.71A58.38,58.38,0,0,0,121.49,114.09Zm45.2-.3a90.24,90.24,0,0,0-24.48-24.48C163.05,66.46,191,42,217.56,38.44,214,65,189.54,93,166.69,113.79Z\"></path></svg>'},tdyaowXru:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm45.66,85.66-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35a8,8,0,0,1,11.32,11.32Z\"></path></svg>'},W_9GYwO2Q:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.13,104.13,0,0,0,128,24Zm36.44,110.66-48,32A8.05,8.05,0,0,1,112,168a8,8,0,0,1-8-8V96a8,8,0,0,1,12.44-6.66l48,32a8,8,0,0,1,0,13.32Z\"></path></svg>'},Wil7uFAe3:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M200.12,55.87A102,102,0,1,0,55.88,200.12,102,102,0,1,0,200.12,55.87ZM106,134h44l14.1,30.56A30,30,0,0,0,128,174a30,30,0,0,0-36.11-9.46Zm5.54-12L128,86.32,144.47,122ZM134,192a18,18,0,0,1,36,0v15.64a89.26,89.26,0,0,1-36,10.14Zm-48,0a18,18,0,0,1,36,0v25.78a89.26,89.26,0,0,1-36-10.14Zm105.64-.36A92.76,92.76,0,0,1,182,200V176a6,6,0,0,0-.55-2.51l-48-104a6,6,0,0,0-10.9,0l-48,104A6,6,0,0,0,74,176v24a92.76,92.76,0,0,1-9.64-8.37,90,90,0,1,1,127.28,0Z\"></path></svg>'},XBbhaY3Ap:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M221.66,133.66l-72,72a8,8,0,0,1-11.32-11.32L196.69,136H40a8,8,0,0,1,0-16H196.69L138.34,61.66a8,8,0,0,1,11.32-11.32l72,72A8,8,0,0,1,221.66,133.66Z\"></path></svg>'},xOdCiXBUQ:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40Zm0,16V72H40V56Zm0,144H40V88H216V200Zm-40-88a48,48,0,0,1-96,0,8,8,0,0,1,16,0,32,32,0,0,0,64,0,8,8,0,0,1,16,0Z\"></path></svg>'},xOHDoLwVG:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M234.5,114.38l-45.1,39.36,13.51,58.6a16,16,0,0,1-23.84,17.34l-51.11-31-51,31a16,16,0,0,1-23.84-17.34L66.61,153.8,21.5,114.38a16,16,0,0,1,9.11-28.06l59.46-5.15,23.21-55.36a15.95,15.95,0,0,1,29.44,0h0L166,81.17l59.44,5.15a16,16,0,0,1,9.11,28.06Z\"></path></svg>'},z2OPP9Yd8:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M224,48H160a40,40,0,0,0-32,16A40,40,0,0,0,96,48H32A16,16,0,0,0,16,64V192a16,16,0,0,0,16,16H96a24,24,0,0,1,24,24,8,8,0,0,0,16,0,24,24,0,0,1,24-24h64a16,16,0,0,0,16-16V64A16,16,0,0,0,224,48ZM96,192H32V64H96a24,24,0,0,1,24,24V200A39.81,39.81,0,0,0,96,192Zm128,0H160a39.81,39.81,0,0,0-24,8V88a24,24,0,0,1,24-24h64ZM160,88h40a8,8,0,0,1,0,16H160a8,8,0,0,1,0-16Zm48,40a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,128Zm0,32a8,8,0,0,1-8,8H160a8,8,0,0,1,0-16h40A8,8,0,0,1,208,160Z\"></path></svg>'},zUVYHDpZQ:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"#000000\" viewBox=\"0 0 256 256\"><path d=\"M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z\"></path></svg>'}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-73YLQ[data-border=\"true\"]::after, .framer-73YLQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-73YLQ.framer-1imp34i, .framer-73YLQ .framer-1imp34i { display: block; }\",\".framer-73YLQ.framer-imagha { height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-73YLQ .framer-1qm5yzt-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-73YLQ.framer-v-m4zmtn.framer-imagha, .framer-73YLQ.framer-v-l0mmo3.framer-imagha, .framer-73YLQ.framer-v-fkbpko.framer-imagha, .framer-73YLQ.framer-v-1xp4fqk.framer-imagha, .framer-73YLQ.framer-v-9rp8tn.framer-imagha, .framer-73YLQ.framer-v-s6w8fz.framer-imagha, .framer-73YLQ.framer-v-c1hzvs.framer-imagha, .framer-73YLQ.framer-v-arkjh8.framer-imagha, .framer-73YLQ.framer-v-dtzc54.framer-imagha, .framer-73YLQ.framer-v-z0gpp1.framer-imagha, .framer-73YLQ.framer-v-1hkwblv.framer-imagha, .framer-73YLQ.framer-v-1ljy4l5.framer-imagha, .framer-73YLQ.framer-v-2uajfc.framer-imagha, .framer-73YLQ.framer-v-11ciftv.framer-imagha, .framer-73YLQ.framer-v-1clemf.framer-imagha, .framer-73YLQ.framer-v-1644y6s.framer-imagha, .framer-73YLQ.framer-v-1q040hc.framer-imagha, .framer-73YLQ.framer-v-tlk31u.framer-imagha, .framer-73YLQ.framer-v-1wo2c32.framer-imagha, .framer-73YLQ.framer-v-1h9jaqy.framer-imagha, .framer-73YLQ.framer-v-19w5len.framer-imagha, .framer-73YLQ.framer-v-1jlwctn.framer-imagha, .framer-73YLQ.framer-v-1ioenay.framer-imagha, .framer-73YLQ.framer-v-1chdsis.framer-imagha, .framer-73YLQ.framer-v-nhde1x.framer-imagha, .framer-73YLQ.framer-v-1we19vb.framer-imagha { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xOHDoLwVG\":{\"layout\":[\"fixed\",\"fixed\"]},\"W_9GYwO2Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"CGHGJKanj\":{\"layout\":[\"fixed\",\"fixed\"]},\"XBbhaY3Ap\":{\"layout\":[\"fixed\",\"fixed\"]},\"tdyaowXru\":{\"layout\":[\"fixed\",\"fixed\"]},\"z2OPP9Yd8\":{\"layout\":[\"fixed\",\"fixed\"]},\"rChFHWdfM\":{\"layout\":[\"fixed\",\"fixed\"]},\"fIayz8pwA\":{\"layout\":[\"fixed\",\"fixed\"]},\"sjAVzneXr\":{\"layout\":[\"fixed\",\"fixed\"]},\"DQZPmdEUN\":{\"layout\":[\"fixed\",\"fixed\"]},\"kGckxrIh8\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wil7uFAe3\":{\"layout\":[\"fixed\",\"fixed\"]},\"q0swXOONY\":{\"layout\":[\"fixed\",\"fixed\"]},\"pzBGWrd5H\":{\"layout\":[\"fixed\",\"fixed\"]},\"anasdMsPG\":{\"layout\":[\"fixed\",\"fixed\"]},\"jXc7L0MgL\":{\"layout\":[\"fixed\",\"fixed\"]},\"nM98KgsE4\":{\"layout\":[\"fixed\",\"fixed\"]},\"QAbZWp75Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"ewgKbHnL_\":{\"layout\":[\"fixed\",\"fixed\"]},\"xOdCiXBUQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"j3pWzbTtG\":{\"layout\":[\"fixed\",\"fixed\"]},\"hUOrUeoy0\":{\"layout\":[\"fixed\",\"fixed\"]},\"I_Nvl2t66\":{\"layout\":[\"fixed\",\"fixed\"]},\"OiurDqXVB\":{\"layout\":[\"fixed\",\"fixed\"]},\"mfYv7zrbn\":{\"layout\":[\"fixed\",\"fixed\"]},\"zUVYHDpZQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"eQEFFdws4\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FrameraUtUp84ZS=withCSS(Component,css,\"framer-73YLQ\");export default FrameraUtUp84ZS;FrameraUtUp84ZS.displayName=\"Icon\";FrameraUtUp84ZS.defaultProps={height:24,width:24};addPropertyControls(FrameraUtUp84ZS,{variant:{options:[\"oC_M8kcWc\",\"xOHDoLwVG\",\"W_9GYwO2Q\",\"CGHGJKanj\",\"XBbhaY3Ap\",\"tdyaowXru\",\"z2OPP9Yd8\",\"rChFHWdfM\",\"fIayz8pwA\",\"sjAVzneXr\",\"DQZPmdEUN\",\"kGckxrIh8\",\"Wil7uFAe3\",\"q0swXOONY\",\"pzBGWrd5H\",\"anasdMsPG\",\"jXc7L0MgL\",\"nM98KgsE4\",\"QAbZWp75Z\",\"ewgKbHnL_\",\"xOdCiXBUQ\",\"j3pWzbTtG\",\"hUOrUeoy0\",\"I_Nvl2t66\",\"OiurDqXVB\",\"mfYv7zrbn\",\"zUVYHDpZQ\"],optionTitles:[\"Close\",\"Star\",\"Play Circle Filled\",\"Play Circle\",\"Arrow Right\",\"Check Circle\",\"Book Open Text\",\"Sign In\",\"Bezier\",\"Paint Brush\",\"Code\",\"Megaphone\",\"Pencil Circle\",\"Chats Circle\",\"Book Open Text Filled\",\"Sign In Filled\",\"Notebook\",\"Stack\",\"Users\",\"Chalkboard Teacher\",\"Shopping Bag Open\",\"Question\",\"Clock\",\"Search\",\"Arrow Left\",\"User\",\"Caret Down\"],title:\"Variant\",type:ControlType.Enum},eQEFFdws4:{defaultValue:'var(--token-1293e359-60aa-48e6-97f1-7e5a0bdcde01, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',title:\"Color\",type:ControlType.Color}});addFonts(FrameraUtUp84ZS,[...SVGFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraUtUp84ZS\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"eQEFFdws4\\\":\\\"color\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xOHDoLwVG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W_9GYwO2Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CGHGJKanj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XBbhaY3Ap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tdyaowXru\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z2OPP9Yd8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rChFHWdfM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fIayz8pwA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sjAVzneXr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DQZPmdEUN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kGckxrIh8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wil7uFAe3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q0swXOONY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pzBGWrd5H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"anasdMsPG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jXc7L0MgL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nM98KgsE4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QAbZWp75Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ewgKbHnL_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xOdCiXBUQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j3pWzbTtG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hUOrUeoy0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I_Nvl2t66\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OiurDqXVB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mfYv7zrbn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zUVYHDpZQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"24\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aUtUp84ZS.map", "// Generated by Framer (91bcfbd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/FSA0Z89dvELxX5J4VQv2/QE0JJT289AyCxFTxRwdm/TDR5zznxb.js\";import Icon from\"https://framerusercontent.com/modules/uQBlSDsi0VHsbg4NWAur/7mU6963cANngZeUOMcIu/aUtUp84ZS.js\";const IconFonts=getFonts(Icon);const enabledGestures={A9qmVLGFa:{pressed:true}};const cycleOrder=[\"A9qmVLGFa\",\"DzDi6KG8Q\"];const serializationHash=\"framer-fr6im\";const variantClassNames={A9qmVLGFa:\"framer-v-canplq\",DzDi6KG8Q:\"framer-v-12cyldd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"A9qmVLGFa\",Lesson:\"DzDi6KG8Q\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"A9qmVLGFa\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"A9qmVLGFa\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"DzDi6KG8Q\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-canplq\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"A9qmVLGFa\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},variants:{DzDi6KG8Q:{backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\"}},...addPropertyOverrides({\"A9qmVLGFa-pressed\":{\"data-framer-name\":undefined},DzDi6KG8Q:{\"data-framer-name\":\"Lesson\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10x5y4w-container\",layoutDependency:layoutDependency,layoutId:\"MC4hoYID1-container\",children:/*#__PURE__*/_jsx(Icon,{eQEFFdws4:\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",height:\"100%\",id:\"MC4hoYID1\",layoutId:\"MC4hoYID1\",style:{height:\"100%\",width:\"100%\"},variant:\"XBbhaY3Ap\",width:\"100%\"})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pylpbr\",\"data-styles-preset\":\"TDR5zznxb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255)))\"},children:\"Open lesson\"})}),className:\"framer-3hyot5\",layoutDependency:layoutDependency,layoutId:\"g_eS7uuZI\",style:{\"--extracted-r6o4lv\":\"var(--token-72386102-7a44-40df-835e-8d6424daf8aa, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5zoko0\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"eTuRYqcMU\",style:{backgroundColor:\"var(--token-342ca76b-3fbd-4ec1-b2bc-bd892795bf7e, rgb(79, 26, 239))\",opacity:.2},variants:{\"A9qmVLGFa-pressed\":{opacity:1},DzDi6KG8Q:{backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:0}}})]})})})});});const css=['.framer-fr6im[data-border=\"true\"]::after, .framer-fr6im [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fr6im.framer-1fhd45y, .framer-fr6im .framer-1fhd45y { display: block; }\",\".framer-fr6im.framer-canplq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 20px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fr6im .framer-10x5y4w-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-fr6im .framer-3hyot5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fr6im .framer-5zoko0 { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fr6im.framer-canplq { gap: 0px; } .framer-fr6im.framer-canplq > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-fr6im.framer-canplq > :first-child { margin-left: 0px; } .framer-fr6im.framer-canplq > :last-child { margin-right: 0px; } }\",\".framer-fr6im.framer-v-12cyldd.framer-canplq { cursor: unset; height: auto; padding: 4px 12px 4px 12px; width: auto; }\",\".framer-fr6im.framer-v-12cyldd .framer-10x5y4w-container { order: 2; }\",\".framer-fr6im.framer-v-12cyldd .framer-3hyot5 { order: 1; }\",\".framer-fr6im.framer-v-12cyldd .framer-5zoko0 { flex: none; left: calc(50.00000000000002% - 100% / 2); order: 0; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-fr6im.framer-v-canplq.pressed.framer-canplq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 16px); width: 16px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"DzDi6KG8Q\":{\"layout\":[\"auto\",\"auto\"]},\"JE6htaem5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerITTHT9C01=withCSS(Component,css,\"framer-fr6im\");export default FramerITTHT9C01;FramerITTHT9C01.displayName=\"Cursor\";FramerITTHT9C01.defaultProps={height:20,width:20};addPropertyControls(FramerITTHT9C01,{variant:{options:[\"A9qmVLGFa\",\"DzDi6KG8Q\"],optionTitles:[\"Default\",\"Lesson\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerITTHT9C01,[...IconFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerITTHT9C01\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DzDi6KG8Q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JE6htaem5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"20\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";export function PreLoader(props){const{duration,backgroundColor,exitAnimation,exitSpeed,connectedFrame}=props;const[isVisible,setIsVisible]=React.useState(true);React.useEffect(()=>{setTimeout(()=>setIsVisible(false),duration*1e3)// Convert seconds to milliseconds\n;},[duration]);// Exit variants including Swipe Up Round and Swipe Down Round\nconst exitVariants={fadeOut:{opacity:0,transition:{duration:exitSpeed}},swipeUp:{y:\"-100vh\",transition:{duration:exitSpeed}},scaleDown:{scale:0,transition:{duration:exitSpeed}},slideLeft:{x:\"-100vw\",transition:{duration:exitSpeed}},slideRight:{x:\"100vw\",transition:{duration:exitSpeed}},rotateOut:{rotate:90,opacity:0,transition:{duration:exitSpeed}},swipeUpRound:{y:\"-100vh\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",transition:{duration:exitSpeed}},swipeDownRound:{y:\"100vh\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",transition:{duration:exitSpeed}}};// Container style for centering content, including connectedFrame\nconst containerStyle={display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",position:\"absolute\",top:\"0\",left:\"0\"};return /*#__PURE__*/_jsx(AnimatePresence,{children:isVisible&&/*#__PURE__*/_jsx(motion.div,{initial:{opacity:1},exit:exitVariants[exitAnimation],style:{position:\"fixed\",top:0,left:0,width:\"100vw\",height:\"100vh\",backgroundColor:backgroundColor,zIndex:9999},children:/*#__PURE__*/_jsx(\"div\",{style:containerStyle,children:(connectedFrame===null||connectedFrame===void 0?void 0:connectedFrame.length)>0&&connectedFrame.map((frame,index)=>/*#__PURE__*/_jsx(React.Fragment,{children:frame},index))})})});}addPropertyControls(PreLoader,{duration:{type:ControlType.Number,title:\"Duration\",defaultValue:3,min:1,max:10,unit:\"s\",step:.1,displayStepper:true},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#FFFFFF\"},exitAnimation:{type:ControlType.Enum,title:\"Exit Animation\",options:[\"fadeOut\",\"swipeUp\",\"scaleDown\",\"slideLeft\",\"slideRight\",\"rotateOut\",\"swipeUpRound\",\"swipeDownRound\"],optionTitles:[\"Fade Out\",\"Swipe Up\",\"Scale Down\",\"Slide Left\",\"Slide Right\",\"Rotate Out\",\"Swipe Up Round\",\"Swipe Down Round\"],defaultValue:\"fadeOut\"},exitSpeed:{type:ControlType.Number,title:\"Exit Speed\",defaultValue:.5,min:.1,max:2,unit:\"s\",step:.1,displayStepper:true},connectedFrame:{type:ControlType.Array,title:\"Connect Frame\",propertyControl:{type:ControlType.ComponentInstance}}});\nexport const __FramerMetadata__ = {\"exports\":{\"PreLoader\":{\"type\":\"reactComponent\",\"name\":\"PreLoader\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Preloader.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Libre Baskerville-700\"]);export const fonts=[{family:\"Libre Baskerville\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjY1I8Gcw6Oi.woff2\",weight:\"700\"}];export const css=['.framer-ssFdn .framer-styles-preset-1rpe66o:not(.rich-text-wrapper), .framer-ssFdn .framer-styles-preset-1rpe66o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, #1c1c1c); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ssFdn .framer-styles-preset-1rpe66o:not(.rich-text-wrapper), .framer-ssFdn .framer-styles-preset-1rpe66o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, #1c1c1c); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ssFdn .framer-styles-preset-1rpe66o:not(.rich-text-wrapper), .framer-ssFdn .framer-styles-preset-1rpe66o.rich-text-wrapper h2 { --framer-font-family: \"Libre Baskerville\", \"Libre Baskerville Placeholder\", serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-00f26a75-eb5e-4168-b3a6-0b0505689a08, #1c1c1c); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-ssFdn\";\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{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-regular\",\"GF;Poppins-700\",\"GF;Poppins-700italic\",\"GF;Poppins-italic\"]);export const fonts=[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLecnFBGPaTSQ.woff2\",weight:\"400\"}];export const css=['.framer-gv89U .framer-styles-preset-1305ls2:not(.rich-text-wrapper), .framer-gv89U .framer-styles-preset-1305ls2.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-2acfc62e-1dad-487e-a2fb-3f54e1bdc5cc, #666666); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-gv89U .framer-styles-preset-1305ls2:not(.rich-text-wrapper), .framer-gv89U .framer-styles-preset-1305ls2.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-2acfc62e-1dad-487e-a2fb-3f54e1bdc5cc, #666666); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-gv89U .framer-styles-preset-1305ls2:not(.rich-text-wrapper), .framer-gv89U .framer-styles-preset-1305ls2.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: var(--token-2acfc62e-1dad-487e-a2fb-3f54e1bdc5cc, #666666); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-gv89U\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "4VAAqF,SAASA,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAASP,CAAU,EAIzC,OAFAQ,GAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,GAAe,IAAI,IAAMA,GAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCf9C,IAAIM,GAAI,OAAO,eACXC,GAAI,CAACC,EAAG,EAAGC,IAAM,KAAKD,EAAIF,GAAEE,EAAG,EAAG,CAAE,WAAY,GAAI,aAAc,GAAI,SAAU,GAAI,MAAOC,CAAE,CAAC,EAAID,EAAE,CAAC,EAAIC,EACzGC,EAAI,CAACF,EAAG,EAAGC,KAAOF,GAAEC,EAAG,OAAO,GAAK,SAAW,EAAI,GAAK,EAAGC,CAAC,EAAGA,GAC5DE,GAAN,KAAQ,CACN,YAAY,EAAG,CACbD,EAAE,KAAM,QAAQ,EAChB,KAAK,OAAS,CAChB,CACA,IAAI,EAAG,CACL,IAAMD,EAAI,KAAK,OAAS,EACxB,OAAO,aAAa,QAAQA,CAAC,GAAK,IACpC,CACA,IAAI,EAAG,CACL,IAAMA,EAAI,KAAK,OAAS,EACxB,OAAO,aAAa,QAAQA,CAAC,CAC/B,CACA,IAAI,EAAGA,EAAG,CACR,IAAMG,EAAI,KAAK,OAAS,EACxB,aAAa,QAAQA,EAAGH,CAAC,CAC3B,CACA,OAAO,EAAG,CACR,IAAMA,EAAI,KAAK,OAAS,EACxB,aAAa,WAAWA,CAAC,CAC3B,CACF,EACMI,GAAN,cAAgB,KAAM,CACpB,YAAYJ,EAAGG,EAAG,CAChB,MAAMH,CAAC,EACPC,EAAE,KAAM,QAAQ,EAChBA,EAAE,KAAM,gBAAiB,EAAE,EAC3B,KAAK,KAAO,YAAa,KAAK,OAASE,CACzC,CACF,EACA,SAASE,EAAEN,EAAG,CACZ,OAAO,OAAOA,GAAK,UAAYA,IAAM,MAAQ,kBAAmBA,CAClE,CACA,IAAMO,GAAN,cAAgBF,EAAE,CAChB,YAAYJ,EAAGG,EAAG,CAChB,MAAMH,EAAGG,CAAC,EACVF,EAAE,KAAM,QAAQ,EAChB,KAAK,KAAO,eAAgB,KAAK,OAASE,CAC5C,CACA,QAAS,CACP,MAAO,CACL,KAAM,KAAK,KACX,QAAS,KAAK,QACd,OAAQ,KAAK,MACf,CACF,CACF,EACMI,GAAN,cAAgBH,EAAE,CAChB,YAAYJ,EAAGG,EAAG,CAChB,MAAMH,CAAC,EACPC,EAAE,KAAM,eAAe,EACvB,KAAK,KAAO,mBAAoB,KAAK,cAAgBE,CACvD,CACF,EACMK,EAAN,cAAgBJ,EAAE,CAChB,YAAYJ,EAAGG,EAAGM,EAAG,CACnB,MAAMT,CAAC,EACPC,EAAE,KAAM,MAAM,EACdA,EAAE,KAAM,QAAQ,EAChB,KAAK,KAAOE,EAAG,KAAK,OAASM,CAC/B,CACA,QAAS,CACP,MAAO,CACL,KAAM,KAAK,KACX,QAAS,KAAK,QACd,OAAQ,KAAK,MACf,CACF,CACF,EACMC,GAAN,cAAgBF,CAAE,CAChB,aAAc,CACZ,MAAM,+BAAgC,gCAAiC,GAAG,CAC5E,CACF,EACMG,GAAN,cAAgBH,CAAE,CAChB,aAAc,CACZ,MAAM,kBAAmB,wCAAyC,GAAG,CACvE,CACF,EACMI,EAAN,cAAgBJ,CAAE,CAChB,YAAY,EAAG,CACb,MAAM,EAAG,8BAA+B,GAAG,CAC7C,CACF,EACMK,GAAN,cAAgBL,CAAE,CAChB,aAAc,CACZ,MAAM,eAAgB,+BAAgC,GAAG,CAC3D,CACF,EACMM,GAAN,cAAgBN,CAAE,CAChB,aAAc,CACZ,MAAM,eAAgB,+BAAgC,GAAG,CAC3D,CACF,EACMO,GAAN,cAAgBP,CAAE,CAChB,aAAc,CACZ,MAAM,6BAA8B,6CAA8C,GAAG,CACvF,CACF,EACMQ,GAAN,cAAgBR,CAAE,CAChB,aAAc,CACZ,MAAM,sBAAuB,6CAA8C,GAAG,CAChF,CACF,EACMS,GAAN,cAAgBT,CAAE,CAChB,aAAc,CACZ,MAAM,eAAgB,kCAAmC,GAAG,CAC9D,CACF,EACMU,GAAN,cAAgBV,CAAE,CAChB,YAAY,EAAGR,EAAG,CAChB,MAAM,EAAG,0BAA2BA,CAAC,CACvC,CACF,EACMmB,GAAKpB,GAAMA,EAAE,KAAOA,EAAE,SAAWA,EAAE,mBAAqBA,EAAE,OAAS,KAAK,UAAUA,CAAC,EAAGqB,GAAI,CAAC,IAAK,IAAK,GAAG,EAC9G,eAAeC,GAAEtB,EAAG,CAClB,GAAI,CAACuB,GAAEvB,CAAC,EACN,MAAM,IAAImB,GAAEC,GAAEpB,CAAC,EAAG,CAAC,EACrB,GAAIqB,GAAE,SAASrB,EAAE,MAAM,EACrB,MAAM,IAAImB,GAAEC,GAAEpB,CAAC,EAAGA,EAAE,MAAM,EAC5B,IAAI,EACJ,GAAI,CACF,EAAI,MAAMA,EAAE,KAAK,CACnB,OAASC,EAAP,CACA,MAAM,IAAIO,GAAEY,GAAEnB,CAAC,EAAGA,CAAC,CACrB,CACA,MAAM,IAAIM,GAAEa,GAAE,CAAC,EAAGpB,EAAE,QAAU,GAAG,CACnC,CACA,IAAMwB,GAAI,CAACxB,EAAG,EAAGC,EAAGG,IAAM,CACxB,IAAMM,EAAI,CAAE,OAAQV,EAAG,QAA+B,GAAE,SAAY,CAAC,CAAE,EACvE,OAAOA,IAAM,MAAQU,GAAKA,EAAE,QAAU,CAAE,eAAgB,iCAAkC,GAAwB,GAAE,OAAQ,EAAGA,EAAE,KAAO,KAAK,UAAUN,CAAC,EAAG,CAAE,GAAGM,EAAG,GAAGT,CAAE,EAC1K,EACA,eAAewB,GAAEzB,EAAG,EAAGC,EAAGG,EAAG,CAC3B,IAAIsB,EACJ,IAAMhB,EAAI,CAAE,GAAwBN,GAAE,OAAQ,EAC9CA,GAAK,MAAQA,EAAE,MAAQM,EAAE,cAAgB,UAAUN,EAAE,OACrD,IAAMuB,GAAKD,EAAyBtB,GAAE,QAAU,KAAOsB,EAAI,CAAC,EAC5DtB,GAAK,MAAQA,EAAE,aAAeuB,EAAE,YAAcvB,EAAE,YAChD,IAAMwB,EAAI,OAAO,KAAKD,CAAC,EAAE,OAAS,IAAM,IAAI,gBAAgBA,CAAC,EAAE,SAAS,EAAI,GAAIE,EAAI,MAAMC,GACxF9B,EACA,EACAC,EAAI2B,EACJ,CAAE,QAASlB,EAAG,cAAoCN,GAAE,aAAc,EAClE,CAAC,EACoBA,GAAE,IACzB,EACA,OAAOA,GAAK,MAAQA,EAAE,MAA6BA,GAAE,MAAMyB,CAAC,EAAI,CAAE,KAAM,CAAE,GAAGA,CAAE,EAAG,MAAO,IAAK,CAChG,CACA,eAAeC,GAAE9B,EAAG,EAAGC,EAAGG,EAAGM,EAAGiB,EAAG,CACjC,IAAMC,EAAIJ,GAAE,EAAGpB,EAAGM,EAAGiB,CAAC,EAClBE,EACJ,GAAI,CACFA,EAAI,MAAM7B,EAAEC,EAAG2B,CAAC,CAClB,OAASF,EAAP,CACA,MAAM,QAAQ,MAAMA,CAAC,EAAG,IAAIP,GAAEC,GAAEM,CAAC,EAAG,CAAC,CACvC,CACA,GAAIG,EAAE,IAAM,MAAMP,GAAEO,CAAC,EAAGzB,GAAK,MAAQA,EAAE,cACrC,OAAOyB,EACT,GAAI,CACF,OAAO,MAAMA,EAAE,KAAK,CACtB,OAASH,EAAP,CACA,MAAMJ,GAAEI,CAAC,CACX,CACF,CACA,SAASK,GAAE/B,EAAG,CACZ,IAAII,EACJ,IAAI4B,EAAI,KACRC,GAAuBjC,GAAE,OAAO,IAAMgC,EAAI,CAAE,GAAGhC,EAAE,OAAQ,GACzD,IAAMC,GAAKG,EAAIJ,EAAE,OAAS,KAAOI,EAAIJ,EACrC,MAAO,CAAE,KAAM,CAAE,QAASgC,EAAG,KAAM/B,CAAE,EAAG,MAAO,IAAK,CACtD,CACA,SAASiC,GAAElC,EAAG,CACZ,IAAIC,EACJ,MAAO,CAAE,KAAM,CAAE,SAAUA,EAAID,EAAE,UAAY,KAAOC,EAAID,CAAE,EAAG,MAAO,IAAK,CAC3E,CACA,SAASmC,GAAEnC,EAAG,CACZ,IAAIC,EACJ,MAAO,CAAE,KAAM,CAAE,SAAUA,EAAID,EAAE,UAAY,KAAOC,EAAID,CAAE,EAAG,MAAO,IAAK,CAC3E,CACA,SAASoC,GAAEpC,EAAG,CACZ,IAAIC,EACJ,MAAO,CAAE,KAAM,CAAE,MAAOA,EAAID,EAAE,OAAS,KAAOC,EAAID,CAAE,EAAG,MAAO,IAAK,CACrE,CACA,SAASqC,GAAErC,EAAG,CACZ,IAAIC,EACJ,MAAO,CAAE,KAAM,CAAE,MAAOA,EAAID,EAAE,OAAS,KAAOC,EAAID,CAAE,EAAG,MAAO,IAAK,CACrE,CACA,SAASsC,GAAEtC,EAAG,CACZ,IAAIC,EACJ,MAAO,CAAE,KAAM,CAAE,OAAQA,EAAID,EAAE,QAAU,KAAOC,EAAID,CAAE,EAAG,MAAO,IAAK,CACvE,CACA,SAASuC,GAAEvC,EAAG,CACZ,IAAIC,EACJ,MAAO,CAAE,KAAM,CAAE,SAAUA,EAAID,EAAE,UAAY,KAAOC,EAAID,CAAE,EAAG,MAAO,IAAK,CAC3E,CACA,SAASwC,GAAExC,EAAG,CACZ,MAAO,CAAE,MAAMA,GAAK,KAAOA,GAAO,MAAO,IAAK,CAChD,CACA,SAASiC,GAAEjC,EAAG,CACZ,OAA6BA,GAAE,cAAuCA,GAAE,UAC1E,CACA,IAAMuB,GAAKvB,GAAM,OAAOA,GAAK,UAAYA,IAAM,MAAQ,WAAYA,GAAK,OAAQA,GAAK,SAAUA,GAAK,OAAOA,EAAE,MAAQ,WAC/GyC,GAAN,KAAQ,CACN,YAAY,EAAG,CAiTb,GAhTAvC,EAAE,KAAM,OAAO,EACfA,EAAE,KAAM,KAAK,EACbA,EAAE,KAAM,SAAS,EACjBA,EAAE,KAAM,UAAY8B,GAAM,CACxB,KAAK,MAAM,IAAI,OAAQA,CAAC,CAC1B,CAAC,EACD9B,EAAE,KAAM,UAAY8B,GAAM,CACxB,KAAK,MAAM,IAAI,OAAQA,CAAC,CAC1B,CAAC,EACD9B,EAAE,KAAM,aAAe8B,GAAM,CAC3B,KAAK,MAAM,IAAI,UAAWA,CAAC,CAC7B,CAAC,EACD9B,EAAE,KAAM,iBAAkB,IAAM,CAC9B,GAAI,CAAC,KAAK,MAAM,IAAI,SAAS,EAC3B,OAAO,KACT,IAAMD,EAAI,KAAK,MAAM,IAAI,SAAS,EAClC,GAAI,CAACA,EACH,OAAO,KACT,IAAIG,EACJ,GAAI,CACFA,EAAI,KAAK,MAAMH,CAAC,CAClB,MAAE,CACA,OAAO,IACT,CACA,IAAMS,EAAI,KAAK,MAAM,KAAK,IAAI,EAAI,GAAG,EACrC,OAAON,EAAE,YAAcM,EAAIN,EAAE,YAAc,KAAK,MAAM,OAAO,SAAS,EAAG,KAAK,MAAM,OAAO,MAAM,EAAG,MAAQA,EAAE,YAChH,CAAC,EACDF,EAAE,KAAM,eAAgB,IAAM,CAC5B,IAAID,EACJ,GAAI,KAAK,MAAM,IAAI,SAAS,EAAG,CAC7B,IAAMG,EAAI,KAAK,MAAM,IAAI,SAAS,EAClC,GAAIA,EACF,OAAQH,EAAI,KAAK,MAAMG,CAAC,IAAM,KAAO,OAASH,EAAE,WAEtD,CAAC,EACDC,EAAE,KAAM,UAAW,MAAO8B,EAAI,CAAE,MAAO,EAAG,IAAM,CAC9C,IAAItB,EAAGiB,EACP,IAAI1B,EACE,EAAI,KAAK,MAAM,IAAI,MAAM,EAC/B,OAAO,GAAM+B,GAAK,MAAQA,EAAE,MAAS/B,EAAI,CAAE,KAAM,CAAE,KAAM,KAAK,MAAM,CAAC,CAAE,EAAG,MAAO,IAAK,EAAIA,EAAI,MAAM,KAAK,UAAU,EAAGA,EAAE,QAAUA,EAAE,MAAM,SAAW,IAAM,QAAQ,IACjK;AAAA;AAAA;AAAA,aAGKS,EAAIT,EAAE,QAAU,KAAO,OAASS,EAAE,UAAY,kBACnD,kCACA,mCACA,kCACF,EAAI,QAAQ,IACV;AAAA;AAAA;AAAA,aAGKiB,EAAI1B,EAAE,QAAU,KAAO,OAAS0B,EAAE,UAAY,wBACnD,+BACA,mCACA,kCACF,GAAI1B,CACN,CAAC,EACDC,EAAE,KAAM,UAAW,MAAO8B,EAAI,CAAE,MAAO,EAAG,IAAM,CAC9C,IAAI/B,EACEG,EAAI,KAAK,MAAM,KAAK,IAAI,EAAI,GAAG,EAAGM,EAAI,KAAK,MAAM,IAAI,SAAS,GAAK,GACzE,GAAI,CAACA,EACHT,EAAI,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAO,IAAII,GAAE,gCAAiC,GAAG,CAAE,MAC5E,CACH,IAAMsB,EAAI,KAAK,MAAMjB,CAAC,EAAGkB,EAAI,KAAK,MAAM,IAAI,MAAM,EAClDD,EAAE,YAAcvB,EAAIuB,EAAE,YAAc1B,EAAI,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAO,IAAII,GAAE,qBAAsB,GAAG,CAAE,EAAG,KAAK,MAAM,OAAO,SAAS,EAAG,KAAK,MAAM,OAAO,MAAM,GAAKuB,GAAMI,GAAK,MAAQA,EAAE,MAAS/B,EAAI,CAAE,KAAM,CAAE,KAAM,KAAK,MAAM2B,CAAC,CAAE,EAAG,MAAO,IAAK,EAAI3B,EAAI,MAAM,KAAK,UAAU,EAEpR,OAAOA,CACT,CAAC,EACDC,EAAE,KAAM,qBAAsB,MAAO8B,GAAM,CACzC,GAAI,CACF,IAAI/B,EACJ,GAAI,CAAC+B,EAAE,YACL,MAAM,IAAInB,EACR,gCACF,EACF,GAAM,CAAE,YAAaT,CAAE,EAAI4B,EAC3B/B,EAAI,MAAMwB,GAAE,MAAO,OAAQ,GAAG,KAAK,eAAgB,CACjD,QAAS,KAAK,QACd,KAAM,CACJ,YAAarB,CACf,EACA,MAAOkC,EACT,CAAC,EACD,GAAM,CAAE,KAAM5B,EAAG,MAAOiB,CAAE,EAAI1B,EAC9B,OAAO0B,EAAI,CAAE,KAAM,CAAE,MAAO,IAAK,EAAG,MAAOA,CAAE,EAAI,CAACjB,GAAKA,EAAE,QAAU,KAAO,CAAE,KAAM,CAAE,MAAO,IAAK,EAAG,MAAO,IAAIM,EAAI,EAAI,CAAE,KAAM,CAAE,MAAON,EAAE,KAAM,EAAG,MAAO,IAAK,CAChK,OAAST,EAAP,CACA,GAAIK,EAAEL,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,MAAO,IAAK,EAAG,MAAOA,CAAE,EAC3C,MAAMA,CACR,CACF,CAAC,EACDC,EAAE,KAAM,qBAAsB,MAAO8B,GAAM,CACzC,GAAI,CACF,IAAI/B,EACEG,EAAI,KAAK,eAAe,EAC9B,GAAI,CAACA,EACH,MAAM,IAAIS,EACR,0BACF,EACF,GAAI,CAACmB,EAAE,YACL,MAAM,IAAInB,EACR,gCACF,EACF,GAAM,CAAE,YAAaH,CAAE,EAAIsB,EAC3B/B,EAAI,MAAMwB,GAAE,MAAO,OAAQ,GAAG,KAAK,+BAAgC,CACjE,QAAS,KAAK,QACd,KAAM,CACJ,YAAaf,CACf,EACA,MAAO6B,GACP,IAAKnC,CACP,CAAC,EACD,GAAM,CAAE,KAAMuB,EAAG,MAAOC,CAAE,EAAI3B,EAC9B,OAAO2B,EAAI,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAOA,CAAE,EAAI,CAACD,GAAKA,EAAE,UAAY,KAAO,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAO,IAAIV,EAAI,GAAK,MAAM,KAAK,QAAQ,CAAE,MAAO,EAAG,CAAC,EAAG,CAAE,KAAM,CAAE,QAASU,EAAE,OAAQ,EAAG,MAAO,IAAK,EAC9M,OAAS1B,EAAP,CACA,GAAIK,EAAEL,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAOA,CAAE,EAC7C,MAAMA,CACR,CACF,CAAC,EACDC,EAAE,KAAM,SAAU,MAAO8B,GAAM,CAC7B,IAAI/B,EACJ,GAAI,CACF,IAAIG,EACJ,GAAI,CAAC4B,EAAE,MACL,MAAM,IAAInB,EACR,2BACF,EACF,GAAI,CAACmB,EAAE,SACL,MAAM,IAAInB,EACR,6BACF,EACF,GAAM,CAAE,MAAOH,EAAG,SAAUiB,EAAG,QAASC,CAAE,EAAII,EAC9C5B,EAAI,MAAMqB,GAAE,MAAO,OAAQ,GAAG,KAAK,cAAe,CAChD,QAAS,KAAK,QACd,WAAiCG,GAAE,gBACnC,KAAM,CACJ,MAAOlB,EACP,SAAUiB,EACV,MAAO1B,EAAyB2B,GAAE,OAAS,KAAO3B,EAAI,CAAC,CACzD,EACA,MAAO8B,EACT,CAAC,EACD,GAAM,CAAE,KAAMF,EAAG,MAAOH,CAAE,EAAItB,EAC9B,GAAIsB,EACF,MAAO,CAAE,KAAM,CAAE,KAAM,KAAM,QAAS,IAAK,EAAG,MAAOA,CAAE,EACzD,GAAI,CAACG,EACH,MAAO,CAAE,KAAM,CAAE,KAAM,KAAM,QAAS,IAAK,EAAG,MAAO,IAAIlB,EAAI,EAC/D,IAAM+B,EAAIb,EAAE,QAASc,EAAId,EAAE,KAC3B,OAAOa,IAAM,KAAK,QAAQ,KAAK,UAAUC,CAAC,CAAC,EAAG,KAAK,WAAW,KAAK,UAAUD,CAAC,CAAC,GAAI,CAAE,KAAM,CAAE,KAAMC,EAAG,QAASD,CAAE,EAAG,MAAO,IAAK,CAClI,OAAStC,EAAP,CACA,GAAIE,EAAEF,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,KAAM,KAAM,QAAS,IAAK,EAAG,MAAOA,CAAE,EACzD,MAAMA,CACR,CACF,CAAC,EACDF,EAAE,KAAM,qBAAsB,MAAO8B,GAAM,CACzC,GAAI,CACF,GAAI,CAACA,EAAE,MACL,MAAM,IAAInB,EACR,2BACF,EACF,GAAI,CAACmB,EAAE,SACL,MAAM,IAAInB,EACR,6BACF,EACF,IAAIZ,EACE,CAAE,MAAOG,EAAG,SAAUM,CAAE,EAAIsB,EAClC/B,EAAI,MAAMwB,GAAE,MAAO,OAAQ,GAAG,KAAK,YAAa,CAC9C,QAAS,KAAK,QACd,KAAM,CACJ,MAAOrB,EACP,SAAUM,CACZ,EACA,MAAOqB,EACT,CAAC,EACD,GAAM,CAAE,KAAMJ,EAAG,MAAOC,CAAE,EAAI3B,EAC9B,OAAO2B,EAAI,CAAE,KAAM,CAAE,KAAM,KAAM,QAAS,IAAK,EAAG,MAAOA,CAAE,EAAI,CAACD,GAAK,CAACA,EAAE,SAAW,CAACA,EAAE,KAAO,CAAE,KAAM,CAAE,KAAM,KAAM,QAAS,IAAK,EAAG,MAAO,IAAIhB,EAAI,GAAKgB,EAAE,UAAY,KAAK,QAAQ,KAAK,UAAUA,EAAE,IAAI,CAAC,EAAG,KAAK,WAAW,KAAK,UAAUA,EAAE,OAAO,CAAC,GAAI,CAAE,KAAM,CAAE,KAAMA,EAAE,KAAM,QAASA,EAAE,OAAQ,EAAG,MAAOC,CAAE,EAClT,OAAS3B,EAAP,CACA,GAAIK,EAAEL,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,KAAM,KAAM,QAAS,IAAK,EAAG,MAAOA,CAAE,EACzD,MAAMA,CACR,CACF,CAAC,EACDC,EAAE,KAAM,wBAAyB,MAAO8B,GAAM,CAC5C,GAAI,CACF,GAAI,CAACA,EAAE,MACL,MAAM,IAAInB,EACR,2BACF,EACF,IAAIZ,EACE,CAAE,MAAOG,CAAE,EAAI4B,EACrB/B,EAAI,MAAMwB,GAAE,MAAO,OAAQ,GAAG,KAAK,qBAAsB,CACvD,QAAS,KAAK,QACd,KAAM,CACJ,MAAOrB,CACT,EACA,MAAO8B,EACT,CAAC,EACD,GAAM,CAAE,KAAMxB,EAAG,MAAOiB,CAAE,EAAI1B,EAC9B,OAAO0B,EAAI,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAOA,CAAE,EAAI,CAACjB,GAAK,CAACA,EAAE,QAAU,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAO,IAAIE,EAAI,EAAI,CAAE,KAAM,CAAE,QAASF,EAAE,OAAQ,EAAG,MAAOiB,CAAE,CAC/J,OAAS1B,EAAP,CACA,GAAIK,EAAEL,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAOA,CAAE,EAC7C,MAAMA,CACR,CACF,CAAC,EACDC,EAAE,KAAM,yBAA0B,MAAO8B,GAAM,CAC7C,GAAI,CACF,GAAI,CAACA,EAAE,MACL,MAAM,IAAInB,EACR,2BACF,EACF,GAAI,CAACmB,EAAE,KACL,MAAM,IAAInB,EACR,sBACF,EACF,GAAI,CAACmB,EAAE,MACL,MAAM,IAAInB,EACR,iCACF,EACF,IAAIZ,EACE,CAAE,MAAOG,EAAG,KAAMM,EAAG,SAAUiB,CAAE,EAAIK,EAC3C/B,EAAI,MAAMwB,GAAE,MAAO,OAAQ,GAAG,KAAK,sBAAuB,CACxD,QAAS,KAAK,QACd,KAAM,CACJ,MAAOrB,EACP,KAAMM,EACN,SAAUiB,CACZ,EACA,MAAOQ,EACT,CAAC,EACD,GAAM,CAAE,KAAMP,EAAG,MAAOC,CAAE,EAAI5B,EAC9B,OAAO4B,EAAI,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAOA,CAAE,EAAI,CAACD,GAAK,CAACA,EAAE,QAAU,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAO,IAAIhB,EAAI,EAAI,CAAE,KAAM,CAAE,QAASgB,EAAE,OAAQ,EAAG,MAAOC,CAAE,CAC/J,OAAS5B,EAAP,CACA,GAAIK,EAAEL,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,QAAS,IAAK,EAAG,MAAOA,CAAE,EAC7C,MAAMA,CACR,CACF,CAAC,EACDC,EAAE,KAAM,UAAW,MAAO8B,EAAI,QAAU,KAAK,MAAM,OAAO,SAAS,EAAG,KAAK,MAAM,OAAO,MAAM,EAAGA,GAAKY,EAAO,SAAS,QAAQZ,CAAC,EAAG,CAAE,MAAO,IAAK,EAAE,EAClJ9B,EAAE,KAAM,YAAa,SAAY,CAC/B,GAAI,CACF,IAAI8B,EACJA,EAAI,MAAMP,GAAE,MAAO,MAAO,GAAG,KAAK,WAAY,CAC5C,QAAS,KAAK,QACd,MAAOW,EACT,CAAC,EACD,GAAM,CAAE,KAAMnC,EAAG,MAAOG,CAAE,EAAI4B,EAC9B,OAAO5B,EAAI,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAOA,CAAE,EAAI,CAACH,GAAK,CAACA,EAAE,KAAO,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAO,IAAIa,EAAI,GAAKb,EAAE,MAAQ,KAAK,QAAQ,KAAK,UAAUA,EAAE,IAAI,CAAC,EAAG,CAAE,KAAM,CAAE,KAAMA,EAAE,IAAK,EAAG,MAAO,IAAK,EACpM,OAAS+B,EAAP,CACA,GAAI1B,EAAE0B,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAOA,CAAE,EAC1C,MAAMA,CACR,CACF,CAAC,EACD9B,EAAE,KAAM,YAAa,SAAY,CAC/B,GAAI,CACF,IAAI8B,EACE/B,EAAI,KAAK,eAAe,EAC9B,GAAI,CAACA,EACH,MAAM,IAAIY,EACR,0BACF,EACFmB,EAAI,MAAMP,GAAE,MAAO,MAAO,GAAG,KAAK,SAAU,CAC1C,QAAS,KAAK,QACd,MAAOY,GACP,IAAKpC,CACP,CAAC,EACD,GAAM,CAAE,KAAMG,EAAG,MAAOM,CAAE,EAAIsB,EAC9B,OAAOtB,EAAI,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAOA,CAAE,EAAI,CAACN,GAAK,CAACA,EAAE,KAAO,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAO,IAAIW,EAAI,GAAKX,EAAE,MAAQ,KAAK,QAAQ,KAAK,UAAUA,EAAE,IAAI,CAAC,EAAG,CAAE,KAAM,CAAE,KAAMA,EAAE,IAAK,EAAG,MAAO,IAAK,EACpM,OAAS4B,EAAP,CACA,GAAI1B,EAAE0B,CAAC,EACL,MAAO,CAAE,KAAM,CAAE,KAAM,IAAK,EAAG,MAAOA,CAAE,EAC1C,MAAMA,CACR,CACF,CAAC,EACD9B,EAAE,KAAM,gBAAiB,MAAO8B,GAAM,CACpC,GAAI,CACF,IAAM/B,EAAI,KAAK,eAAe,EAC9B,GAAI,CAACA,EACH,MAAM,IAAIY,EACR,0BACF,EACF,IAAIT,EACJA,EAAI,MAAMqB,GAAE,MAAO,QAAS,GAAG,KAAK,cAAe,CACjD,QAAS,KAAK,QACd,KAAMO,GAAK,CAAC,EACZ,MAAOQ,GACP,IAAKvC,CACP,CAAC,EACD,GAAM,CAAE,KAAMS,EAAG,MAAOiB,CAAE,EAAIvB,EAC9B,GAAIuB,EACF,MAAO,CAAE,KAAM,KAAM,MAAOA,CAAE,EAChC,GAAI,CAACjB,GAAKA,EAAE,QAAU,KACpB,MAAO,CAAE,KAAM,KAAM,MAAO,IAAIQ,EAAI,EACtC,GAAM,CAAE,KAAM,CAAE,KAAMU,CAAE,CAAE,EAAI,MAAM,KAAK,QAAQ,CAAE,MAAO,EAAG,CAAC,EAC9D,OAAOA,IAAMA,EAAE,KAAOlB,EAAG,KAAK,QAAQ,KAAK,UAAUkB,CAAC,CAAC,GAAI,CAAE,KAAMlB,EAAG,MAAO,IAAK,CACpF,OAAST,EAAP,CACA,GAAIK,EAAEL,CAAC,EACL,MAAO,CAAE,KAAM,KAAM,MAAOA,CAAE,EAChC,MAAMA,CACR,CACF,CAAC,EACG,KAAK,MAAQ,IAAIE,GAAE,KAAK,EAAG,KAAK,IAAM,gCAAiC,EACzE,KAAK,QAAU,CAAE,eAAgB,mBAAoB,YAAa,CAAE,MACjE,CACH,KAAK,QAAU,CAAC,EAAG,QAAQ,MAAM,mHAAmH,EACpJ,OAEJ,CACF,EACA,QAAQ,IAAI,6BAA6B,EACzC,IAAM0C,GAAI,IAAI1C,GAAE,KAAK,EAAG2C,GAAID,GAAE,IAAI,SAAS,EAAGE,GAAI,IAAIN,GAAEK,EAAC,ECxgBwN,IAAME,GAASC,GAAY,CAAC,KAAK,KAAK,gBAAgB,GAAM,SAAS,EAAK,CAAC,EAAywC,SAASC,GAAcC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,CAAK,EAAEC,GAAS,EAAE,GAAGD,EAAM,KAAK,OAAO,KAAK,IAAIE,EAAUH,EAAM,WAAW,GAAG,OAAIC,EAAM,WAAUE,GAAW,aAAiCC,EAAKL,EAAU,CAAC,GAAGC,EAAM,UAAUG,EAAU,KAAK,CAAC,CAAC,CAAE,CAAE,CCC5kD,IAAME,GAAgB,CAAC,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,cAAc,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUF,GAA6BE,EAAM,UAAU,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMvB,IAAWA,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAhC,EAAW,SAAAV,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,YAAAS,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBlB,GAAuBH,EAAMvB,CAAQ,EAAO,CAAC,sBAAA6C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKL,GAAqB,MAAMA,EAAU,GAAGa,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKL,GAAqB,MAAMA,EAAU,GAAGa,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAaN,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKL,GAAqB,MAAMA,EAAU,GAAGa,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQG,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAE,OAAoB3C,EAAK4C,EAAY,CAAC,GAAGtB,GAA4CmB,GAAgB,SAAsBzC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBgD,EAAM3C,EAAO,OAAO,CAAC,GAAGsB,EAAU,aAAa,YAAY,UAAUsB,EAAG/D,GAAkB,GAAG4D,GAAsB,eAAetB,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiB,GAAK,aAAa,SAAS,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAMO,EAAa,YAAY,IAAIP,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BuB,EAAK,MAAM,CAAC,GAAGnB,CAAK,EAAE,GAAGnC,GAAqB,CAAC,oBAAoB,CAAC,mBAAmB,OAAU,MAAMqD,EAAY,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,aAAa,aAAa,mBAAmB,cAAc,MAAMD,CAAY,CAAC,EAAEZ,EAAYE,CAAc,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,EAAe/B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,mHAAmH,gQAAgQ,gQAAgQ,2IAA2I,EAQjkMC,GAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECR1J,IAAMM,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAgCE,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAME,IAAWA,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAuBG,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjB,CAAQ,EAAEkB,EAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAT,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBtB,GAAuBD,EAAME,CAAQ,EAAQsB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKyC,GAAK,CAAC,KAAKnB,EAAU,aAAa,GAAM,aAAa,GAAK,SAAsBtB,EAAKE,EAAO,EAAE,CAAC,GAAGqB,EAAU,aAAa,OAAO,UAAU,GAAGmB,EAAGC,GAAkB,GAAGN,EAAsB,gBAAgBlB,EAAUM,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBO,EAAiB,SAAS,YAAY,WAAW,IAAIL,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIb,GAA6BmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAsBlB,EAAK4C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBZ,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,kFAAkF,iSAAiS,6LAA6L,0WAA0W,EAS//HC,GAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,OAAO,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT4U,IAAMM,GAAUC,EAASC,EAAI,EAAQC,GAAcF,EAASG,EAAQ,EAAQC,GAAuBC,GAAcC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASpB,EAAaqB,CAAQ,EAAQC,GAAwB,CAAC,2BAA2B,YAAY,sBAAsB,YAAY,gBAAgB,YAAY,aAAa,YAAY,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,YAAY,UAAUJ,GAA4CE,EAAM,SAAS,CAAE,EAAQG,GAAuB,CAACH,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,UAAAiC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzC,CAAQ,EAAE0C,EAAgB,CAAC,WAAA/C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8C,EAAiBlB,GAAuBH,EAAMtB,CAAQ,EAAO,CAAC,sBAAA4C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAgBH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAgBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAiBN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAiBP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAgBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASlB,CAAW,EAAmCmB,EAAa,IAAQnB,IAAc,YAA6CoB,GAAa,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASpB,CAAW,EAAmCqB,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBjD,EAAKkD,EAAY,CAAC,GAAG7B,GAA4CwB,GAAgB,SAAsB7C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKnB,EAAO,IAAI,CAAC,GAAG0C,EAAU,UAAU4B,EAAGpE,GAAkB,GAAGgE,GAAsB,gBAAgB3B,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6ByB,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,YAAY,gBAAgB,8EAA8E,qBAAqB,YAAY,GAAGrB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,eAAe,OAAO,gBAAgB,wEAAwE,qBAAqB,MAAM,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,OAAO,gBAAgB,wEAAwE,qBAAqB,MAAM,EAAE,UAAU,CAAC,eAAe,OAAO,gBAAgB,wEAAwE,qBAAqB,MAAM,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,CAAC,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,0BAA0B,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,eAAe,CAAC,EAAEuC,EAAYE,CAAc,EAAE,SAAsB0B,EAAMvE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBiD,EAAiB,SAAS,YAAY,SAAS,CAAcsB,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBiD,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKnB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBiD,EAAiB,SAAS,YAAY,SAAsB9B,EAAKqD,EAA0B,CAAC,GAAGpE,GAAqB,CAAC,UAAU,CAAC,MAAM,MAAM,CAAC,EAAEuC,EAAYE,CAAc,EAAE,SAAsB1B,EAAKnB,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiD,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKxB,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8C,EAAU,MAAM,OAAO,GAAGrC,GAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAEuC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgB,GAAY,GAAgB1C,EAAKqD,EAA0B,CAAC,SAAsBrD,EAAKnB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiD,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKtB,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUwD,EAAgB,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGjD,GAAqB,CAAC,UAAU,CAAC,UAAUoD,EAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,EAAgB,EAAE,UAAU,CAAC,UAAUF,CAAe,EAAE,UAAU,CAAC,UAAUG,EAAgB,QAAQ,WAAW,CAAC,EAAEf,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiB,EAAa,GAAgB3C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEa,EAAa,GAAgB3C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEa,EAAa,GAAgB3C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEa,EAAa,GAAgB3C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWE,EAAS,CAAC,SAAsBF,EAAKnB,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEa,EAAa,GAAgBS,EAAMvE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBiD,EAAiB,SAAS,YAAY,SAAS,CAACc,GAAa,GAAgB5C,EAAKrB,GAAuB,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBmD,EAAiB,SAAS,WAAW,CAAC,EAAe9B,EAAKnB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsB9B,EAAKnB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBiD,EAAiB,SAAS,YAAY,SAAsB9B,EAAKnB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBiD,EAAiB,SAAS,YAAY,SAAsB9B,EAAKnB,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,kFAAkF,yQAAyQ,2SAA2S,6VAA6V,+RAA+R,oHAAoH,yGAAyG,4MAA4M,oSAAoS,mUAAmU,iSAAiS,+GAA+G,0sDAA0sD,+GAA+G,qJAAqJ,4GAA4G,iJAAiJ,wEAAwE,yUAAyU,gRAAgR,8IAA8I,sOAAsO,gIAAgI,wIAAwI,wOAAwO,uFAAuF,gIAAgI,6hEAA6hE,sEAAsE,8DAA8D,+aAA+a,0LAA0L,sLAAsL,kEAAkE,8IAA8I,kvCAAkvC,4LAA4L,gIAAgI,0FAA0F,wyDAAwyD,+bAA+b,EASvwwBC,GAAgBC,EAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,aAAa,gBAAgB,sBAAsB,0BAA0B,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlF,GAAU,GAAGG,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV3mEqF,EAAU,UAAU,CAAC,iBAAiB,iBAAiB,uBAAuB,sBAAsB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,mFAAmF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,mFAAmF,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,w+BAAw+B,EAAeC,GAAU,eCQ5vD,SAASC,GAAEC,EAAE,CAAC,GAAG,CAACC,EAAEF,CAAC,EAAEG,GAAE,IAAI,EAAEC,GAAE,IAAI,CAAC,IAAIC,EAAEJ,EAAE,cAAcK,EAAED,CAAC,CAAE,EAAE,CAACJ,EAAE,cAAcA,EAAE,YAAYA,EAAE,kBAAkBA,EAAE,QAAQA,EAAE,QAAQ,CAAC,EAAE,IAAIK,EAAED,GAAG,CAAC,IAAIE,EAAE,CAAC,CAAC,gBAAgB,cAAc,EAAE,CAAC,iBAAiB,eAAe,CAAC,EAAEC,EAAEH,EAAE,SAAS,UAAU,EAAEH,EAAEG,EAAE,SAAS,gBAAgB,EAAEC,EAAED,EAAE,SAAS,kBAAkB,EAAEI,EAAEJ,EAAE,SAAS,mBAAmB,EAAE,GAAGA,EAAE,SAAS,SAAS,EAAE,CAC1X,IAAIG,EAAE,6BAA6BN,EAAEG,EAAE,MAAMG,CAAC,EAAE,GAAGN,EAAE,CACrD,IAAIK,EAAEL,EAAE,CAAC,EAAE,QAAQA,EAAE,CAAC,EAAED,EAAE,WAAW,EAAEI,EAAEA,EAAE,QAAQG,EAAED,CAAC,OACtDA,EAAE,KAAK,CAAC,WAAW,iBAAiBN,EAAE,cAAc,CAAC,EAAGO,GAAGF,EAAEC,EAAE,KAAK,CAAC,SAAS,iBAAiBN,EAAE,gCAAgCA,EAAE,UAAU,CAAC,EAAEM,EAAE,KAAK,CAAC,SAAS,iBAAiBN,EAAE,cAAc,CAAC,EAAEC,GAAGK,EAAE,KAAK,CAAC,qCAAqC,iBAAiBN,EAAE,oBAAoB,CAAC,GAAGM,EAAE,KAAK,CAAC,SAAS,eAAeN,EAAE,cAAc,CAAC,EAAEI,EAAE,SAAS,YAAY,EAAEE,EAAE,KAAK,CAAC,mBAAmB,oBAAoB,CAAC,EAAEA,EAAE,KAAK,CAAC,OAAO,yBAAyB,CAAC,EAAEE,EAAEF,EAAE,KAAK,CAAC,0BAA0B,oBAAoBN,EAAE,WAAW,CAAC,EAAEM,EAAE,KAAK,CAAC,SAAS,0BAA0BN,EAAE,WAAW,CAAC,EAAEM,EAAE,QAAQ,CAAC,CAACA,EAAEC,CAAC,IAAI,CAACH,EAAEA,EAAE,QAAQE,EAAEC,CAAC,CAAE,CAAC,EAAER,EAAEK,CAAC,CAAE,EAAEI,EAAE,CAAC,QAAQ,GAAGR,EAAE,kBAAkB,QAAQ,OAAO,cAAc,SAAS,WAAW,SAAS,eAAe,SAAS,SAAS,SAAS,EAAE,OAAoBS,EAAE,MAAM,CAAC,wBAAwB,CAAC,OAAOR,CAAC,EAAE,MAAMO,CAAC,CAAC,CAAE,CAACT,GAAE,aAAa,CAAC,cAAc,0lBAA0lB,YAAY,UAAU,cAAc,EAAE,kBAAkB,EAAE,QAAQ,OAAO,SAAS,OAAO,EAAEW,EAAEX,GAAE,CAAC,cAAc,CAAC,KAAKY,EAAE,OAAO,MAAM,WAAW,gBAAgB,EAAE,EAAE,YAAY,CAAC,KAAKA,EAAE,MAAM,MAAM,QAAQ,aAAa,SAAS,EAAE,kBAAkB,CAAC,KAAKA,EAAE,OAAO,MAAM,SAAS,aAAa,EAAE,IAAI,EAAE,KAAK,GAAG,eAAe,GAAG,OAAO,GAAG,CAAC,EAAE,cAAc,SAAS,UAAU,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAE,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,KAAK,EAAE,eAAe,EAAE,EAAE,QAAQ,CAAC,KAAKA,EAAE,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,QAAQ,QAAQ,EAAE,aAAa,CAAC,OAAO,QAAQ,QAAQ,EAAE,aAAa,OAAO,OAAO,GAAG,CAAC,EAAE,cAAc,SAAS,UAAU,CAAC,EAAE,SAAS,CAAC,KAAKA,EAAE,KAAK,MAAM,YAAY,QAAQ,CAAC,QAAQ,QAAQ,OAAO,EAAE,aAAa,CAAC,QAAQ,QAAQ,OAAO,EAAE,aAAa,QAAQ,OAAO,GAAG,CAAC,EAAE,cAAc,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,IAAOC,GAAQb,GCVh7D,IAAMc,GAASC,EAASC,EAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,cAAc,YAAY,wBAAwB,YAAY,iBAAiB,YAAY,aAAa,YAAY,qBAAqB,YAAY,eAAe,YAAY,eAAe,YAAY,cAAc,YAAY,gBAAgB,YAAY,qBAAqB,YAAY,cAAc,YAAY,oBAAoB,YAAY,iBAAiB,YAAY,UAAU,YAAY,OAAO,YAAY,MAAM,YAAY,MAAM,YAAY,KAAK,YAAY,UAAU,YAAY,SAAS,YAAY,SAAS,YAAY,OAAO,YAAY,MAAM,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKL,GAAmCI,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,kEAAkE,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMvB,IAAWA,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAuBK,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAjC,EAAW,SAAAV,CAAQ,EAAE4C,EAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBlB,GAAuBJ,EAAMvB,CAAQ,EAAQ8C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBrC,EAAKsC,EAAY,CAAC,GAAGf,GAA4CY,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGuB,EAAU,UAAUc,EAAGxD,GAAkB,GAAGsD,EAAsB,gBAAgBf,EAAUK,CAAU,EAAE,mBAAmB,QAAQ,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BgB,EAAK,MAAM,CAAC,GAAGZ,CAAK,EAAE,GAAGpC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,uBAAuB,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAEyC,EAAYE,CAAc,EAAE,SAAsB5B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,sBAAsB,KAAK,MAAM,SAAsBhC,EAAKnB,GAAI,CAAC,YAAY2C,EAAU,cAAc,EAAE,kBAAkB,EAAE,cAAc,uTAAuT,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,OAAO,SAAS,QAAQ,KAAK,MAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGvC,GAAqB,CAAC,UAAU,CAAC,cAAc,oVAAoV,EAAE,UAAU,CAAC,cAAc,qVAAqV,EAAE,UAAU,CAAC,cAAc,kdAAkd,EAAE,UAAU,CAAC,cAAc,yhBAAyhB,EAAE,UAAU,CAAC,cAAc,0gBAA0gB,EAAE,UAAU,CAAC,cAAc,yTAAyT,EAAE,UAAU,CAAC,cAAc,6QAA6Q,EAAE,UAAU,CAAC,cAAc,siEAAsiE,EAAE,UAAU,CAAC,cAAc,6WAA6W,EAAE,UAAU,CAAC,cAAc,urBAAurB,EAAE,UAAU,CAAC,cAAc,8WAA8W,EAAE,UAAU,CAAC,cAAc,6fAA6f,EAAE,UAAU,CAAC,cAAc,kRAAkR,EAAE,UAAU,CAAC,cAAc,mdAAmd,EAAE,UAAU,CAAC,cAAc,4qCAA4qC,EAAE,UAAU,CAAC,cAAc,ohBAAohB,EAAE,UAAU,CAAC,cAAc,6WAA6W,EAAE,UAAU,CAAC,cAAc,upBAAupB,EAAE,UAAU,CAAC,cAAc,sSAAsS,EAAE,UAAU,CAAC,cAAc,iSAAiS,EAAE,UAAU,CAAC,cAAc,yjBAAyjB,EAAE,UAAU,CAAC,cAAc,+QAA+Q,EAAE,UAAU,CAAC,cAAc,yUAAyU,EAAE,UAAU,CAAC,cAAc,iXAAiX,EAAE,UAAU,CAAC,cAAc,0lBAA0lB,EAAE,UAAU,CAAC,cAAc,gPAAgP,CAAC,EAAEyC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,mGAAmG,8HAA8H,4uCAA4uC,EAQr4sBC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,qBAAqB,cAAc,cAAc,eAAe,iBAAiB,UAAU,SAAS,cAAc,OAAO,YAAY,gBAAgB,eAAe,wBAAwB,iBAAiB,WAAW,QAAQ,QAAQ,qBAAqB,oBAAoB,WAAW,QAAQ,SAAS,aAAa,OAAO,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,yFAAyF,MAAM,QAAQ,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,GAAG9D,EAAQ,CAAC,ECRjhB,IAAMoE,GAAUC,EAASC,EAAI,EAAQC,GAAaC,GAAoBF,EAAI,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,EAAE,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAqB,CAAC,aAAa,YAAY,cAAc,YAAY,wBAAwB,YAAY,iBAAiB,YAAY,aAAa,YAAY,qBAAqB,YAAY,eAAe,YAAY,eAAe,YAAY,cAAc,YAAY,gBAAgB,YAAY,qBAAqB,YAAY,cAAc,YAAY,oBAAoB,YAAY,iBAAiB,YAAY,UAAU,YAAY,OAAO,YAAY,MAAM,YAAY,MAAM,YAAY,KAAK,YAAY,UAAU,YAAY,SAAS,YAAY,SAAS,YAAY,OAAO,YAAY,MAAM,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,WAAW,EAAQC,GAAwB,CAAC,uBAAuB,YAAY,gBAAgB,YAAY,KAAK,YAAY,QAAQ,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,MAAAC,EAAM,GAAAC,EAAG,MAAAC,EAAM,SAAAC,EAAS,KAAAC,EAAK,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAgCC,EAAMC,EAAMC,EAAuCC,EAAMC,EAA+BC,EAAMC,EAAM,MAAM,CAAC,GAAGT,EAAM,UAAUJ,GAAwDI,EAAM,UAAU,WAAWC,EAAKT,GAAmCQ,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,QAAQ,UAAUH,GAA6BE,EAAM,UAAU,WAAWI,GAAOD,GAAOD,EAAgChB,GAAqBS,CAAS,KAAK,MAAMO,IAAkC,OAAOA,EAAgCP,KAAa,MAAMQ,IAAQ,OAAOA,EAAMH,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,YAAY,UAAUV,GAAgCM,EAAM,UAAU,UAAUH,GAA2DG,EAAM,UAAU,SAASM,GAAOD,EAAuClB,GAAwBa,EAAM,OAAO,KAAK,MAAMK,IAAyC,OAAOA,EAAuCL,EAAM,WAAW,MAAMM,IAAQ,OAAOA,EAAM,YAAY,UAAUhB,GAAmCU,EAAM,UAAU,WAAWS,GAAOD,GAAOD,EAA+BrB,GAAqBO,CAAQ,KAAK,MAAMc,IAAiC,OAAOA,EAA+Bd,KAAY,MAAMe,IAAQ,OAAOA,EAAMR,EAAM,aAAa,MAAMS,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACV,EAAMjC,IAAWA,EAAS,KAAK,GAAG,EAAEiC,EAAM,iBAAuBW,GAA6BC,EAAW,SAASZ,EAAMa,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlD,EAAQ,UAAAmD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAExC,GAASY,CAAK,EAAO,CAAC,YAAA6B,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlE,EAAQ,EAAEmE,EAAgB,CAAC,WAAAxE,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuE,EAAiBzB,GAAuBV,EAAMjC,EAAQ,EAAO,CAAC,sBAAAqE,GAAsB,MAAAC,EAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAYH,GAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKN,GAAqB,MAAMA,EAAU,GAAGc,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAmBL,GAAsB,SAASI,KAAO,CAAC,GAAGb,GAAqB,MAAMA,EAAU,GAAGa,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQE,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,IAAC,kBAAkB,iBAAiB,EAAE,SAASb,CAAc,GAAiBF,IAAc,aAA6CgB,GAAsBC,EAAM,EAAQC,GAAsB,CAAa7B,EAAS,EAAQ8B,GAAkBC,GAAqB,EAAE,OAAoBnE,EAAKoE,EAAY,CAAC,GAAG/B,GAA4C0B,GAAgB,SAAsB/D,EAAKC,GAAS,CAAC,QAAQhB,GAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMH,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMC,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEyD,EAAYE,CAAc,EAAE,SAAsBjD,EAAKqE,GAAK,CAAC,KAAK9B,EAAU,aAAa,GAAK,SAAsB+B,EAAMpE,EAAO,EAAE,CAAC,GAAG4C,EAAU,UAAU,GAAGyB,EAAG1F,GAAkB,GAAGoF,GAAsB,iBAAiB7B,EAAUY,CAAU,mBAAmB,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,aAAaS,GAAmB,MAAMF,EAAY,YAAY,IAAIP,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAInB,GAA6B6B,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,EAAE,GAAGzB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,kBAAkB,EAAE,kBAAkB,CAAC,gBAAgB,kBAAkB,EAAE,kBAAkB,CAAC,iBAAiB,sEAAsE,gBAAgB,kBAAkB,EAAE,oBAAoB,CAAC,gBAAgB,mBAAmB,QAAQ,EAAE,EAAE,kBAAkB,CAAC,QAAQ,EAAE,EAAE,oBAAoB,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,EAAE,GAAGpD,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,sBAAsB,CAAC,EAAEgE,EAAYE,CAAc,EAAE,SAAS,CAACT,GAAwBxC,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,mBAAmB,YAAY,iBAAiBmD,EAAiB,SAAS,sBAAsB,KAAK,YAAY,SAAsBrD,EAAKxB,GAAK,CAAC,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQiE,EAAU,MAAM,OAAO,GAAG1D,GAAqB,CAAC,UAAU,CAAC,UAAU,qEAAqE,EAAE,UAAU,CAAC,UAAU,qEAAqE,EAAE,UAAU,CAAC,UAAU,qEAAqE,EAAE,UAAU,CAAC,UAAU,qEAAqE,CAAC,EAAEgE,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejD,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6C,EAAYE,CAAc,CAAC,CAAC,EAAEP,GAAwB1C,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,aAAa,iBAAiBmD,EAAiB,SAAS,sBAAsB,KAAK,aAAa,SAAsBrD,EAAKxB,GAAK,CAAC,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQmE,EAAU,MAAM,OAAO,GAAG5D,GAAqB,CAAC,UAAU,CAAC,UAAU,qEAAqE,EAAE,UAAU,CAAC,UAAU,qEAAqE,EAAE,UAAU,CAAC,UAAU,qEAAqE,EAAE,UAAU,CAAC,UAAU,qEAAqE,CAAC,EAAEgE,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,GAAY,GAAgB9D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,QAAQ,CAAC,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,sEAAsE,QAAQ,GAAG,EAAE,kBAAkB,CAAC,gBAAgB,sEAAsE,QAAQ,GAAG,EAAE,UAAU,CAAC,gBAAgB,sEAAsE,QAAQ,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,kFAAkF,kFAAkF,iXAAiX,iJAAiJ,2KAA2K,mLAAmL,6WAA6W,kIAAkI,wEAAwE,+DAA+D,yEAAyE,0KAA0K,0IAA0I,GAAeA,GAAI,+bAA+b,EASn9eC,GAAgBC,EAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,gBAAgB,uBAAuB,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,YAAY,GAAG,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAM,MAAM,iBAAiB,KAAKA,EAAY,OAAO,EAAE,UAA6DtG,IAAa,SAAa,CAAC,GAAGA,GAAa,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,WAAW,EAAE,UAAU,CAAC,aAAa,GAAM,MAAM,kBAAkB,KAAKsG,EAAY,OAAO,EAAE,UAA6DtG,IAAa,SAAa,CAAC,GAAGA,GAAa,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,YAAY,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKsG,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGrG,GAAU,GAAG2G,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV/1FC,EAAU,UAAU,CAAC,eAAe,aAAa,mBAAmB,oBAAoB,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,giCAAgiC,EAAeC,GAAU,eCCz9B,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,SAAS,YAAY,UAAU,YAAY,KAAK,YAAY,SAAS,YAAY,QAAQ,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAST,CAAW,EAAmCU,EAAa,IAAQV,IAAc,YAA6CW,EAAa,IAAQX,IAAc,YAA6CY,EAAa,IAAQZ,IAAc,YAA6Ca,GAAa,IAAQb,IAAc,YAA6Cc,EAAa,IAAQd,IAAc,YAA6Ce,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAE,OAAoBxC,EAAKyC,EAAY,CAAC,GAAGpB,GAA4CiB,GAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsB6C,EAAMxC,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUqB,EAAG5D,GAAkB,GAAGyD,GAAsB,gBAAgBpB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAS,CAACO,EAAY,GAAgBhC,EAAK4C,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,qHAAqH,gBAAgB,GAAG,eAAe,GAAG,iBAAiBf,EAAiB,SAAS,YAAY,IAAI,4VAA4V,mBAAmB,EAAI,CAAC,EAAEI,EAAa,GAAgBjC,EAAK4C,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,qHAAqH,gBAAgB,GAAG,eAAe,GAAG,iBAAiBf,EAAiB,SAAS,YAAY,IAAI,wWAAwW,mBAAmB,EAAI,CAAC,EAAEK,EAAa,GAAgBlC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,qHAAqH,gBAAgB,GAAG,eAAe,GAAG,iBAAiBf,EAAiB,SAAS,YAAY,IAAI,wdAAwd,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgBnC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,qHAAqH,gBAAgB,GAAG,eAAe,GAAG,iBAAiBf,EAAiB,SAAS,YAAY,IAAI,uYAAuY,mBAAmB,EAAI,CAAC,EAAEO,GAAa,GAAgBpC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,qHAAqH,gBAAgB,GAAG,eAAe,GAAG,iBAAiBf,EAAiB,SAAS,YAAY,IAAI,4gBAA4gB,mBAAmB,EAAI,CAAC,EAAEQ,EAAa,GAAgBrC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,qHAAqH,gBAAgB,GAAG,eAAe,GAAG,iBAAiBf,EAAiB,SAAS,YAAY,IAAI,igBAAigB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,mGAAmG,wUAAwU,mTAAmT,EAOhvTC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,YAAY,WAAW,WAAW,OAAO,SAAS,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,ECPxF,IAAMM,GAAgBC,EAASC,EAAU,EAAQC,GAAgB,CAAC,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,SAAS,YAAY,UAAU,YAAY,KAAK,YAAY,SAAS,YAAY,QAAQ,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUL,GAAsCK,EAAM,UAAU,UAAUF,GAAgCE,EAAM,UAAU,SAASE,GAAMD,EAAuCR,GAAwBO,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMxB,IAAWA,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAErB,GAASM,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAlC,EAAW,SAAAV,CAAQ,EAAE6C,EAAgB,CAAC,WAAAlD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,YAAAS,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiD,EAAiBnB,GAAuBH,EAAMxB,CAAQ,EAAQ+C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGhB,GAA4Ca,EAAgB,SAAsBpC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKwC,GAAK,CAAC,KAAKhB,EAAU,SAAsBxB,EAAKE,EAAO,EAAE,CAAC,GAAGwB,EAAU,aAAa,UAAU,UAAU,GAAGe,EAAG1D,GAAkB,GAAGuD,EAAsB,gBAAgBhB,EAAUM,CAAU,mBAAmB,qBAAqBH,EAAU,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIb,GAA6BiB,EAAK,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,QAAQ,EAAE,GAAGb,CAAK,EAAE,SAAS,CAAC,oBAAoB,CAAC,QAAQ,EAAE,EAAE,oBAAoB,CAAC,QAAQ,EAAE,EAAE,oBAAoB,CAAC,QAAQ,EAAE,EAAE,oBAAoB,CAAC,QAAQ,EAAE,EAAE,oBAAoB,CAAC,QAAQ,EAAE,EAAE,oBAAoB,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAGpC,GAAqB,CAAC,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,aAAa,WAAW,mBAAmB,UAAU,EAAE,UAAU,CAAC,aAAa,YAAY,mBAAmB,WAAW,EAAE,UAAU,CAAC,aAAa,UAAU,mBAAmB,SAAS,EAAE,UAAU,CAAC,aAAa,WAAW,mBAAmB,UAAU,EAAE,UAAU,CAAC,aAAa,UAAU,mBAAmB,SAAS,CAAC,EAAE0C,EAAYE,CAAc,EAAE,SAAsB7B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB+B,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAKpB,GAAW,CAAC,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGK,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE0C,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,wWAAwW,yGAAyG,2WAA2W,sWAAsW,EAQlnOC,GAAgBC,EAAQ7B,GAAU2B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,UAAU,YAAY,WAAW,WAAW,SAAS,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,SAAS,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,GAAGjE,EAAe,CAAC,ECRuP,IAAMuE,GAAUC,EAASC,EAAI,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAkBJ,EAASK,EAAY,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,KAAK,WAAWD,EAAW,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,IAAI,WAAWF,EAAW,EAAQG,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMzB,IAAWA,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,GAAGoC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,EAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBjB,GAAuBH,EAAMzB,CAAQ,EAAQ8C,EAAWC,EAAO,IAAI,EAAQC,EAAOC,GAAU,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAahB,EAAS,EAAQiB,EAAkBC,GAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGlB,GAA4Ca,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,OAAO,CAAC,GAAGoB,EAAU,UAAUkB,EAAG5D,GAAkB,GAAGwD,EAAsB,gBAAgBhB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,GAAGX,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEyC,EAAYE,CAAc,EAAE,SAAsBgB,EAAMvC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAcY,EAAMvC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAK1B,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemE,EAAMvC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKxB,GAAO,CAAC,UAAU,GAAM,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,UAAU,+BAA+B,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK2C,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B5C,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKxB,GAAO,CAAC,UAAU,GAAM,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,UAAUoE,EAAc,CAAC,EAAE,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAG9D,GAAqB,CAAC,UAAU,CAAC,UAAU8D,EAAc,CAAC,CAAC,CAAC,EAAErB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAK2C,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6B7C,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKxB,GAAO,CAAC,UAAU,GAAM,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,UAAUqE,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAG/D,GAAqB,CAAC,UAAU,CAAC,UAAU+D,EAAe,CAAC,CAAC,CAAC,EAAEtB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKxB,GAAO,CAAC,UAAU,GAAM,UAAU,SAAS,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKxB,GAAO,CAAC,UAAU,GAAM,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAMvC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAcY,EAAMvC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,WAAWxC,GAAU,SAASC,GAAW,SAAsBU,EAAKtB,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,2BAA2B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,WAAWxC,GAAU,SAASC,GAAW,SAAsBU,EAAKtB,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,oCAAoC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,WAAWxC,GAAU,SAASC,GAAW,SAAsBU,EAAKtB,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,yCAAyC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,WAAWxC,GAAU,SAASC,GAAW,SAAsBU,EAAKtB,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,0CAA0C,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+D,EAAMvC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,kFAAkF,6QAA6Q,oTAAoT,mSAAmS,yGAAyG,wRAAwR,2QAA2Q,8RAA8R,oSAAoS,iOAAiO,4RAA4R,oUAAoU,gHAAgH,q5DAAq5D,iEAAiE,kFAAkF,sFAAsF,gEAAgE,6EAA6E,ygCAAygC,GAAeA,EAAG,EAQ9mhBC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5E,GAAU,GAAGG,GAAY,GAAGE,GAAkB,GAAG6E,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT3/DC,EAAU,UAAU,CAAC,eAAe,aAAa,mBAAmB,oBAAoB,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,giCAAgiC,EAAeC,GAAU,eCC13B,IAAMC,GAASC,EAASC,EAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,cAAc,YAAY,wBAAwB,YAAY,iBAAiB,YAAY,aAAa,YAAY,qBAAqB,YAAY,eAAe,YAAY,eAAe,YAAY,cAAc,YAAY,gBAAgB,YAAY,qBAAqB,YAAY,cAAc,YAAY,oBAAoB,YAAY,iBAAiB,YAAY,UAAU,YAAY,OAAO,YAAY,MAAM,YAAY,MAAM,YAAY,KAAK,YAAY,UAAU,YAAY,SAAS,YAAY,SAAS,YAAY,OAAO,YAAY,MAAM,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKL,GAAmCI,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,kEAAkE,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMvB,IAAWA,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAuBK,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAjC,EAAW,SAAAV,CAAQ,EAAE4C,EAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBlB,GAAuBJ,EAAMvB,CAAQ,EAAQ8C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBrC,EAAKsC,EAAY,CAAC,GAAGf,GAA4CY,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKE,EAAO,IAAI,CAAC,GAAGuB,EAAU,UAAUc,EAAGxD,GAAkB,GAAGsD,EAAsB,gBAAgBf,EAAUK,CAAU,EAAE,mBAAmB,QAAQ,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BgB,EAAK,MAAM,CAAC,GAAGZ,CAAK,EAAE,GAAGpC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,uBAAuB,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAEyC,EAAYE,CAAc,EAAE,SAAsB5B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,sBAAsB,KAAK,MAAM,SAAsBhC,EAAKnB,GAAI,CAAC,YAAY2C,EAAU,cAAc,EAAE,kBAAkB,EAAE,cAAc,uTAAuT,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,OAAO,SAAS,QAAQ,KAAK,MAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGvC,GAAqB,CAAC,UAAU,CAAC,cAAc,oVAAoV,EAAE,UAAU,CAAC,cAAc,qVAAqV,EAAE,UAAU,CAAC,cAAc,kdAAkd,EAAE,UAAU,CAAC,cAAc,yhBAAyhB,EAAE,UAAU,CAAC,cAAc,0gBAA0gB,EAAE,UAAU,CAAC,cAAc,yTAAyT,EAAE,UAAU,CAAC,cAAc,6QAA6Q,EAAE,UAAU,CAAC,cAAc,siEAAsiE,EAAE,UAAU,CAAC,cAAc,6WAA6W,EAAE,UAAU,CAAC,cAAc,urBAAurB,EAAE,UAAU,CAAC,cAAc,8WAA8W,EAAE,UAAU,CAAC,cAAc,6fAA6f,EAAE,UAAU,CAAC,cAAc,kRAAkR,EAAE,UAAU,CAAC,cAAc,mdAAmd,EAAE,UAAU,CAAC,cAAc,4qCAA4qC,EAAE,UAAU,CAAC,cAAc,ohBAAohB,EAAE,UAAU,CAAC,cAAc,6WAA6W,EAAE,UAAU,CAAC,cAAc,upBAAupB,EAAE,UAAU,CAAC,cAAc,sSAAsS,EAAE,UAAU,CAAC,cAAc,iSAAiS,EAAE,UAAU,CAAC,cAAc,yjBAAyjB,EAAE,UAAU,CAAC,cAAc,+QAA+Q,EAAE,UAAU,CAAC,cAAc,yUAAyU,EAAE,UAAU,CAAC,cAAc,iXAAiX,EAAE,UAAU,CAAC,cAAc,0lBAA0lB,EAAE,UAAU,CAAC,cAAc,gPAAgP,CAAC,EAAEyC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,mGAAmG,8HAA8H,4uCAA4uC,EAQr4sBC,GAAgBC,EAAQ3B,GAAUyB,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,qBAAqB,cAAc,cAAc,eAAe,iBAAiB,UAAU,SAAS,cAAc,OAAO,YAAY,gBAAgB,eAAe,wBAAwB,iBAAiB,WAAW,QAAQ,QAAQ,qBAAqB,oBAAoB,WAAW,QAAQ,SAAS,aAAa,OAAO,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,yFAAyF,MAAM,QAAQ,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,GAAG9D,EAAQ,CAAC,ECR1oB,IAAMoE,GAAUC,EAASC,EAAI,EAAQC,GAAgB,CAAC,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAA9B,EAAW,SAAAV,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,gBAAAD,GAAgB,YAAAS,GAAY,QAAAD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQT,IAAc,YAA6CU,EAAsBC,EAAM,EAAQC,EAAsB,CAAaf,EAAS,EAAE,OAAoBpB,EAAKoC,EAAY,CAAC,GAAGf,GAA4CY,EAAgB,SAAsBjC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBwC,EAAMnC,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGoD,EAAsB,gBAAgBf,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,GAAGX,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qEAAqE,CAAC,EAAE,GAAGlC,GAAqB,CAAC,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAS,CAACO,EAAY,GAAgBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKpB,GAAK,CAAC,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAEoD,EAAY,GAAgBhC,EAAKuC,EAAS,CAAC,sBAAsB,GAAK,SAAsBvC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,QAAQ,EAAE,EAAE,SAAS,CAAC,oBAAoB,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,gVAAgV,oKAAoK,gHAAgH,kHAAkH,yWAAyW,yHAAyH,yEAAyE,8DAA8D,4MAA4M,gJAAgJ,GAAeA,EAAG,EAOz2OC,GAAgBC,EAAQ7B,GAAU2B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,GAAG/D,GAAU,GAAeqE,EAAK,CAAC,ECRxN,SAASC,GAAUC,EAAM,CAAC,GAAK,CAAC,SAAAC,EAAS,gBAAAC,EAAgB,cAAAC,EAAc,UAAAC,EAAU,eAAAC,CAAc,EAAEL,EAAW,CAACM,EAAUC,CAAY,EAAQC,GAAS,EAAI,EAAQC,GAAU,IAAI,CAAC,WAAW,IAAIF,EAAa,EAAK,EAAEN,EAAS,GAAG,CACjZ,EAAE,CAACA,CAAQ,CAAC,EACb,IAAMS,EAAa,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,SAASN,CAAS,CAAC,EAAE,QAAQ,CAAC,EAAE,SAAS,WAAW,CAAC,SAASA,CAAS,CAAC,EAAE,UAAU,CAAC,MAAM,EAAE,WAAW,CAAC,SAASA,CAAS,CAAC,EAAE,UAAU,CAAC,EAAE,SAAS,WAAW,CAAC,SAASA,CAAS,CAAC,EAAE,WAAW,CAAC,EAAE,QAAQ,WAAW,CAAC,SAASA,CAAS,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,QAAQ,EAAE,WAAW,CAAC,SAASA,CAAS,CAAC,EAAE,aAAa,CAAC,EAAE,SAAS,uBAAuB,MAAM,wBAAwB,MAAM,WAAW,CAAC,SAASA,CAAS,CAAC,EAAE,eAAe,CAAC,EAAE,QAAQ,oBAAoB,MAAM,qBAAqB,MAAM,WAAW,CAAC,SAASA,CAAS,CAAC,CAAC,EAC7jBO,EAAe,CAAC,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,WAAW,IAAI,IAAI,KAAK,GAAG,EAAE,OAAoBC,EAAKC,GAAgB,CAAC,SAASP,GAAwBM,EAAKE,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,KAAKJ,EAAaP,CAAa,EAAE,MAAM,CAAC,SAAS,QAAQ,IAAI,EAAE,KAAK,EAAE,MAAM,QAAQ,OAAO,QAAQ,gBAAgBD,EAAgB,OAAO,IAAI,EAAE,SAAsBU,EAAK,MAAM,CAAC,MAAMD,EAAe,SAAgEN,GAAe,OAAQ,GAAGA,EAAe,IAAI,CAACU,EAAMC,IAAqBJ,EAAWK,EAAS,CAAC,SAASF,CAAK,EAAEC,CAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACE,EAAoBnB,GAAU,CAAC,SAAS,CAAC,KAAKoB,EAAY,OAAO,MAAM,WAAW,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,IAAI,KAAK,GAAG,eAAe,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,SAAS,EAAE,cAAc,CAAC,KAAKA,EAAY,KAAK,MAAM,iBAAiB,QAAQ,CAAC,UAAU,UAAU,YAAY,YAAY,aAAa,YAAY,eAAe,gBAAgB,EAAE,aAAa,CAAC,WAAW,WAAW,aAAa,aAAa,cAAc,aAAa,iBAAiB,kBAAkB,EAAE,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,GAAG,IAAI,GAAG,IAAI,EAAE,KAAK,IAAI,KAAK,GAAG,eAAe,EAAI,EAAE,eAAe,CAAC,KAAKA,EAAY,MAAM,MAAM,gBAAgB,gBAAgB,CAAC,KAAKA,EAAY,iBAAiB,CAAC,CAAC,CAAC,ECHl4CC,EAAU,UAAU,CAAC,0BAA0B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,gkBAAgkB,snBAAsnB,knBAAknB,EAAeC,GAAU,eCA7kEC,EAAU,UAAU,CAAC,qBAAqB,iBAAiB,uBAAuB,mBAAmB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4EAA4E,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,mFAAmF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,+EAA+E,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,y+BAAy+B,+hCAA+hC,2hCAA2hC,EAAeC,GAAU",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "k", "_", "t", "e", "o", "p", "s", "w", "h", "R", "T", "f", "n", "S", "x", "l", "U", "O", "I", "J", "N", "y", "m", "P", "A", "F", "j", "d", "c", "a", "i", "u", "b", "E", "r", "D", "K", "$", "L", "Y", "q", "z", "C", "M", "g", "v", "window", "G", "H", "W", "useStore", "createStore", "withLoggedOut", "Component", "props", "store", "useStore", "className", "p", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "k0y1V8ihR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1suunwd", "args", "onTap1pc1hf8", "onTap1gt1zl3", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "css", "FramerNtA_kHvzp", "withCSS", "NtA_kHvzp_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "uhuEGmP0b", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "Image2", "css", "FramerPGAi0Bfw8", "withCSS", "PGAi0Bfw8_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "PGAi0Bfw8_default", "MenuIconFonts", "NtA_kHvzp_default", "MotionDivWithLoggedOut", "withLoggedOut", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "logoLink", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "yyXaLK9Jc", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "k0y1V8ihR40fe6z", "args", "k0y1V8ihRiwquat", "k0y1V8ihR1s3vsew", "k0y1V8ihR147792s", "k0y1V8ihRunfv1g", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText", "css", "FramerBfpZeIo8n", "withCSS", "BfpZeIo8n_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "s", "i", "l", "ye", "ue", "e", "r", "t", "o", "n", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eQEFFdws4", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "css", "FrameraUtUp84ZS", "withCSS", "aUtUp84ZS_default", "addPropertyControls", "ControlType", "addFonts", "IconFonts", "getFonts", "aUtUp84ZS_default", "IconControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "hover", "id", "learn", "leftIcon", "link", "rightIcon", "showLeftIcon", "showRightIcon", "tap", "width", "props", "_ref", "_humanReadableEnumMap_rightIcon", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_humanReadableEnumMap_leftIcon", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "aT5nRnRI1", "JxBpRyYNz", "AFz2Sv8SP", "y8JKFgz2o", "mJj6skhTn", "Jryr1RvH5", "I3m7fUWtv", "WMPF8uXCF", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapp6mt4x", "args", "onMouseEnterf4cmho", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText", "css", "Framernf4m8S4HC", "withCSS", "nf4m8S4HC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "SVG", "css", "FrameryY3mXqYA5", "withCSS", "yY3mXqYA5_default", "addPropertyControls", "ControlType", "addFonts", "IconSocialFonts", "getFonts", "yY3mXqYA5_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursor", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TNlKw2Bhv", "RPopBzcfs", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "cx", "css", "FramerEIfSx8f3v", "withCSS", "EIfSx8f3v_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "PGAi0Bfw8_default", "ButtonFonts", "nf4m8S4HC_default", "SocialButtonFonts", "EIfSx8f3v_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "RichText", "css", "FramerF801woTAj", "withCSS", "F801woTAj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SVGFonts", "getFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eQEFFdws4", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "css", "FrameraUtUp84ZS", "withCSS", "aUtUp84ZS_default", "addPropertyControls", "ControlType", "addFonts", "IconFonts", "getFonts", "aUtUp84ZS_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "RichText", "css", "FramerITTHT9C01", "withCSS", "ITTHT9C01_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "PreLoader", "props", "duration", "backgroundColor", "exitAnimation", "exitSpeed", "connectedFrame", "isVisible", "setIsVisible", "ye", "ue", "exitVariants", "containerStyle", "p", "AnimatePresence", "motion", "frame", "index", "x", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
