{"$schema":"https://ui.shadcn.com/schema/registry-item.json","author":"Eduardo Calvo <educlopez93@gmail.com>","css":{},"dependencies":["lucide-react","motion","class-variance-authority","@radix-ui/react-slot"],"description":"Shared components for SmoothUI blocks","devDependencies":[],"files":[{"content":"\"use client\";\n\nimport { motion, useReducedMotion, type Variants } from \"motion/react\";\nimport React, { type ReactNode } from \"react\";\n\nexport type PresetType =\n  | \"fade\"\n  | \"slide\"\n  | \"scale\"\n  | \"blur\"\n  | \"blur-slide\"\n  | \"zoom\"\n  | \"flip\"\n  | \"bounce\"\n  | \"rotate\"\n  | \"swing\";\n\nexport interface AnimatedGroupProps {\n  as?: React.ElementType;\n  asChild?: React.ElementType;\n  children: ReactNode;\n  className?: string;\n  preset?: PresetType;\n  variants?: {\n    container?: Variants;\n    item?: Variants;\n  };\n}\n\nconst defaultContainerVariants: Variants = {\n  visible: {\n    transition: {\n      staggerChildren: 0.1,\n    },\n  },\n};\n\nconst defaultItemVariants: Variants = {\n  hidden: { opacity: 0 },\n  visible: { opacity: 1 },\n};\n\nconst presetVariants: Record<PresetType, Variants> = {\n  blur: {\n    hidden: { filter: \"blur(4px)\" },\n    visible: { filter: \"blur(0px)\" },\n  },\n  \"blur-slide\": {\n    hidden: { filter: \"blur(4px)\", y: 20 },\n    visible: { filter: \"blur(0px)\", y: 0 },\n  },\n  bounce: {\n    hidden: { y: -50 },\n    visible: {\n      transition: { damping: 10, stiffness: 400, type: \"spring\" as const },\n      y: 0,\n    },\n  },\n  fade: {},\n  flip: {\n    hidden: { rotateX: -90 },\n    visible: {\n      rotateX: 0,\n      transition: { damping: 20, stiffness: 300, type: \"spring\" as const },\n    },\n  },\n  rotate: {\n    hidden: { rotate: -180 },\n    visible: {\n      rotate: 0,\n      transition: { damping: 15, stiffness: 200, type: \"spring\" as const },\n    },\n  },\n  scale: {\n    hidden: { scale: 0.8 },\n    visible: { scale: 1 },\n  },\n  slide: {\n    hidden: { y: 20 },\n    visible: { y: 0 },\n  },\n  swing: {\n    hidden: { rotate: -10 },\n    visible: {\n      rotate: 0,\n      transition: { damping: 8, stiffness: 300, type: \"spring\" as const },\n    },\n  },\n  zoom: {\n    hidden: { scale: 0.5 },\n    visible: {\n      scale: 1,\n      transition: { damping: 20, stiffness: 300, type: \"spring\" as const },\n    },\n  },\n};\n\nconst reducedContainerVariants: Variants = {\n  hidden: { opacity: 1 },\n  visible: { opacity: 1, transition: { staggerChildren: 0 } },\n};\n\nconst reducedItemVariants: Variants = {\n  hidden: { opacity: 1 },\n  visible: { opacity: 1 },\n};\n\nconst addDefaultVariants = (variants: Variants) => ({\n  hidden: { ...defaultItemVariants.hidden, ...variants.hidden },\n  visible: { ...defaultItemVariants.visible, ...variants.visible },\n});\n\nfunction AnimatedGroup({\n  children,\n  className,\n  variants,\n  preset,\n  as = \"div\",\n  asChild = \"div\",\n}: AnimatedGroupProps) {\n  const shouldReduceMotion = useReducedMotion();\n\n  const selectedVariants = {\n    container: addDefaultVariants(defaultContainerVariants),\n    item: addDefaultVariants(preset ? presetVariants[preset] : {}),\n  };\n  const containerVariants = shouldReduceMotion\n    ? reducedContainerVariants\n    : (variants?.container ?? selectedVariants.container);\n  const itemVariants = shouldReduceMotion\n    ? reducedItemVariants\n    : (variants?.item ?? selectedVariants.item);\n\n  const MotionComponent = motion(as);\n\n  const MotionChild = motion(asChild);\n\n  return (\n    <MotionComponent\n      animate=\"visible\"\n      className={className}\n      initial=\"hidden\"\n      variants={containerVariants}\n    >\n      {React.Children.map(children, (child, index) => (\n        <MotionChild\n          // biome-ignore lint/suspicious/noArrayIndexKey: React.Children order is stable\n          key={index}\n          variants={itemVariants}\n        >\n          {child}\n        </MotionChild>\n      ))}\n    </MotionComponent>\n  );\n}\n\nexport { AnimatedGroup };\n","path":"animated-group.tsx","target":"components/smoothui/shared/animated-group.tsx","type":"registry:component"},{"content":"\"use client\";\n\nimport { motion, useReducedMotion } from \"motion/react\";\nimport type { ElementType, ReactNode } from \"react\";\n\ninterface AnimatedTextProps {\n  as?: ElementType;\n  children: ReactNode;\n  className?: string;\n  delay?: number;\n}\n\nexport function AnimatedText({\n  as: Tag = \"span\",\n  children,\n  className,\n  delay = 0,\n}: AnimatedTextProps) {\n  const shouldReduceMotion = useReducedMotion();\n\n  return (\n    <motion.div\n      animate={\n        shouldReduceMotion\n          ? { opacity: 1 }\n          : { filter: \"blur(0px)\", opacity: 1, y: 0 }\n      }\n      initial={\n        shouldReduceMotion\n          ? { opacity: 1 }\n          : { filter: \"blur(12px)\", opacity: 0, y: 12 }\n      }\n      transition={\n        shouldReduceMotion\n          ? { duration: 0 }\n          : {\n              bounce: 0.3,\n              delay,\n              duration: 1.5,\n              type: \"spring\" as const,\n            }\n      }\n    >\n      <Tag className={className}>{children}</Tag>\n    </motion.div>\n  );\n}\n","path":"animated-text.tsx","target":"components/smoothui/shared/animated-text.tsx","type":"registry:component"},{"content":"\"use client\";\n\nimport { cn } from \"@/lib/utils\";\nimport SmoothButton from \"@/components/smoothui/smooth-button\";\nimport { Menu, X } from \"lucide-react\";\nimport { AnimatePresence, motion, useReducedMotion } from \"motion/react\";\nimport { useState } from \"react\";\n\nconst menuItems = [\n  { href: \"#link\", id: \"features\", name: \"Features\" },\n  { href: \"#link\", id: \"pricing\", name: \"Pricing\" },\n  { href: \"#link\", id: \"about\", name: \"About\" },\n];\n\n// Animation constants\nconst ANIMATION_DURATION = 0.2;\nconst STAGGER_DELAY = 0.05;\nconst EASE_OUT_QUART_X1 = 0.22;\nconst EASE_OUT_QUART_Y1 = 1;\nconst EASE_OUT_QUART_X2 = 0.36;\nconst EASE_OUT_QUART_Y2 = 1;\nconst EASE_OUT_QUART = [\n  EASE_OUT_QUART_X1,\n  EASE_OUT_QUART_Y1,\n  EASE_OUT_QUART_X2,\n  EASE_OUT_QUART_Y2,\n] as const;\nconst ROTATION_ANGLE = 180;\nconst SCALE_MIN = 0;\nconst SCALE_MAX = 1;\nconst TRANSLATE_Y_OFFSET = -10;\nconst TRANSLATE_X_OFFSET = -10;\n\nexport const HeroHeader = () => {\n  const shouldReduceMotion = useReducedMotion();\n  const [menuState, setMenuState] = useState(false);\n\n  return (\n    <div className=\"relative\">\n      <header>\n        <nav className=\"absolute top-0 left-0 z-20 w-full transition-all duration-300\">\n          <div className=\"mx-auto max-w-5xl px-6\">\n            <div className=\"relative flex flex-wrap items-center justify-between gap-6 py-6 transition-all duration-200 lg:gap-0\">\n              <div className=\"flex w-full justify-between gap-6 lg:w-auto\">\n                <a\n                  aria-label=\"SmoothUI home\"\n                  className=\"flex items-center gap-2\"\n                  href=\"/\"\n                >\n                  <span className=\"sr-only\">SmoothUI</span>\n                  <img\n                    alt=\"SmoothUI logo\"\n                    className={cn(\"h-6 w-auto\", \"dark:hidden\")}\n                    draggable={false}\n                    height={120}\n                    src=\"/brand/logo-smoothui-light-1000w.png\"\n                    width={609}\n                  />\n                  <img\n                    alt=\"SmoothUI logo\"\n                    className={cn(\"hidden h-6 w-auto\", \"dark:block\")}\n                    draggable={false}\n                    height={120}\n                    src=\"/brand/logo-smoothui-dark-1000w.png\"\n                    width={609}\n                  />\n                </a>\n\n                <button\n                  aria-label={menuState === true ? \"Close Menu\" : \"Open Menu\"}\n                  className=\"relative z-20 -m-2.5 -mr-4 block cursor-pointer p-2.5 lg:hidden\"\n                  onClick={() => setMenuState(!menuState)}\n                  type=\"button\"\n                >\n                  <AnimatePresence mode=\"wait\">\n                    {menuState ? (\n                      <motion.div\n                        animate={\n                          shouldReduceMotion\n                            ? { opacity: 1 }\n                            : { opacity: 1, rotate: 0, scale: SCALE_MAX }\n                        }\n                        exit={\n                          shouldReduceMotion\n                            ? { opacity: 0, transition: { duration: 0 } }\n                            : {\n                                opacity: 0,\n                                rotate: -ROTATION_ANGLE,\n                                scale: SCALE_MIN,\n                              }\n                        }\n                        initial={\n                          shouldReduceMotion\n                            ? { opacity: 1 }\n                            : {\n                                opacity: 0,\n                                rotate: ROTATION_ANGLE,\n                                scale: SCALE_MIN,\n                              }\n                        }\n                        key=\"close\"\n                        transition={\n                          shouldReduceMotion\n                            ? { duration: 0 }\n                            : {\n                                duration: ANIMATION_DURATION,\n                                ease: EASE_OUT_QUART,\n                              }\n                        }\n                      >\n                        <X className=\"m-auto size-6\" />\n                      </motion.div>\n                    ) : (\n                      <motion.div\n                        animate={\n                          shouldReduceMotion\n                            ? { opacity: 1 }\n                            : { opacity: 1, rotate: 0, scale: SCALE_MAX }\n                        }\n                        exit={\n                          shouldReduceMotion\n                            ? { opacity: 0, transition: { duration: 0 } }\n                            : {\n                                opacity: 0,\n                                rotate: ROTATION_ANGLE,\n                                scale: SCALE_MIN,\n                              }\n                        }\n                        initial={\n                          shouldReduceMotion\n                            ? { opacity: 1 }\n                            : {\n                                opacity: 0,\n                                rotate: -ROTATION_ANGLE,\n                                scale: SCALE_MIN,\n                              }\n                        }\n                        key=\"menu\"\n                        transition={\n                          shouldReduceMotion\n                            ? { duration: 0 }\n                            : {\n                                duration: ANIMATION_DURATION,\n                                ease: EASE_OUT_QUART,\n                              }\n                        }\n                      >\n                        <Menu className=\"m-auto size-6\" />\n                      </motion.div>\n                    )}\n                  </AnimatePresence>\n                </button>\n\n                <div className=\"m-auto hidden size-fit lg:block\">\n                  <ul className=\"flex gap-1\">\n                    {menuItems.map((item) => (\n                      <li key={item.id}>\n                        <SmoothButton asChild size=\"sm\" variant=\"ghost\">\n                          <a className=\"text-base\" href={item.href}>\n                            <span>{item.name}</span>\n                          </a>\n                        </SmoothButton>\n                      </li>\n                    ))}\n                  </ul>\n                </div>\n              </div>\n\n              <AnimatePresence>\n                {menuState ? (\n                  <motion.div\n                    animate={\n                      shouldReduceMotion\n                        ? { opacity: 1 }\n                        : { opacity: 1, scale: SCALE_MAX, y: 0 }\n                    }\n                    className=\"mb-6 w-full flex-wrap items-center justify-end space-y-8 rounded-3xl border bg-background p-6 shadow-2xl shadow-zinc-300/20 md:flex-nowrap lg:m-0 lg:flex lg:w-fit lg:gap-6 lg:space-y-0 lg:border-transparent lg:bg-transparent lg:p-0 lg:shadow-none dark:shadow-none dark:lg:bg-transparent\"\n                    exit={\n                      shouldReduceMotion\n                        ? { opacity: 0, transition: { duration: 0 } }\n                        : { opacity: 0, scale: 0.95, y: TRANSLATE_Y_OFFSET }\n                    }\n                    initial={\n                      shouldReduceMotion\n                        ? { opacity: 1 }\n                        : { opacity: 0, scale: 0.95, y: TRANSLATE_Y_OFFSET }\n                    }\n                    transition={\n                      shouldReduceMotion\n                        ? { duration: 0 }\n                        : {\n                            duration: ANIMATION_DURATION,\n                            ease: EASE_OUT_QUART,\n                          }\n                    }\n                  >\n                    <div className=\"lg:hidden\">\n                      <ul className=\"space-y-6 text-base\">\n                        {menuItems.map((item, index) => (\n                          <motion.li\n                            animate={\n                              shouldReduceMotion\n                                ? { opacity: 1 }\n                                : { opacity: 1, x: 0 }\n                            }\n                            initial={\n                              shouldReduceMotion\n                                ? { opacity: 1 }\n                                : { opacity: 0, x: TRANSLATE_X_OFFSET }\n                            }\n                            key={item.id}\n                            transition={\n                              shouldReduceMotion\n                                ? { duration: 0 }\n                                : {\n                                    delay: index * STAGGER_DELAY,\n                                    duration: ANIMATION_DURATION,\n                                    ease: EASE_OUT_QUART,\n                                  }\n                            }\n                          >\n                            <a\n                              className=\"block text-muted-foreground duration-150 hover:text-accent-foreground\"\n                              href={item.href}\n                              onClick={() => setMenuState(false)}\n                            >\n                              <span>{item.name}</span>\n                            </a>\n                          </motion.li>\n                        ))}\n                      </ul>\n                    </div>\n                    <motion.div\n                      animate={\n                        shouldReduceMotion\n                          ? { opacity: 1 }\n                          : { opacity: 1, y: 0 }\n                      }\n                      className=\"flex w-full flex-col space-y-3 sm:flex-row sm:gap-3 sm:space-y-0 md:w-fit\"\n                      initial={\n                        shouldReduceMotion\n                          ? { opacity: 1 }\n                          : { opacity: 0, y: 10 }\n                      }\n                      transition={\n                        shouldReduceMotion\n                          ? { duration: 0 }\n                          : {\n                              delay:\n                                menuItems.length * STAGGER_DELAY +\n                                STAGGER_DELAY,\n                              duration: ANIMATION_DURATION,\n                              ease: EASE_OUT_QUART,\n                            }\n                      }\n                    >\n                      <SmoothButton\n                        onClick={() => setMenuState(false)}\n                        size=\"sm\"\n                        type=\"button\"\n                        variant=\"ghost\"\n                      >\n                        <span>Login</span>\n                      </SmoothButton>\n                      <SmoothButton\n                        onClick={() => setMenuState(false)}\n                        size=\"sm\"\n                        type=\"button\"\n                      >\n                        <span>Sign Up</span>\n                      </SmoothButton>\n                    </motion.div>\n                  </motion.div>\n                ) : null}\n              </AnimatePresence>\n            </div>\n          </div>\n        </nav>\n      </header>\n    </div>\n  );\n};\n","path":"hero-header.tsx","target":"components/smoothui/shared/hero-header.tsx","type":"registry:component"},{"content":"export { default as Button } from \"@/components/smoothui/smooth-button\";\nexport type { AnimatedGroupProps, PresetType } from \"./animated-group\";\nexport { AnimatedGroup } from \"./animated-group\";\nexport { AnimatedText } from \"./animated-text\";\nexport { HeroHeader } from \"./hero-header\";\nexport {\n  Canpoy,\n  Canva,\n  Casetext,\n  Clearbit,\n  Descript,\n  Duolingo,\n  Faire,\n  IDEO,\n  KhanAcademy,\n  Quizlet,\n  Ramp,\n  Strava,\n} from \"./logos\";\n","path":"index.ts","target":"components/smoothui/shared/index.ts","type":"registry:component"},{"content":"import React from \"react\";\n\nfunction Canpoy() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10582)\">\n        <path\n          d=\"M94.9238 63.2042V78.329H97.4549V73.0816C98.4272 74.0385 99.7236 74.625 101.144 74.625C104.138 74.625 106.561 72.0476 106.561 68.8683C106.561 65.689 104.138 63.1116 101.144 63.1116C99.7236 63.1116 98.4272 63.698 97.4549 64.6549V63.2042H94.9238ZM97.4704 69.4239C97.4086 69.0535 97.4086 68.6831 97.4704 68.3127C97.5167 67.9886 97.6093 67.6799 97.7482 67.3712C98.489 65.7198 100.233 64.9173 101.884 65.4729C103.273 65.9359 104.199 67.2632 104.215 68.822C104.246 71.3685 101.838 73.0816 99.523 72.1556C98.3964 71.6926 97.6401 70.6123 97.4704 69.4239Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M64.5501 63.1424V64.6549C63.5778 63.698 62.2814 63.1116 60.8615 63.1116C57.8674 63.1116 55.4443 65.689 55.4443 68.8683C55.4443 72.0476 57.8674 74.625 60.8615 74.625C62.2814 74.625 63.5778 74.0385 64.5501 73.0816V74.5478H67.0812V63.127H64.5501V63.1424ZM62.4974 72.1402C60.1824 73.0662 57.7594 71.3531 57.8057 68.8065C57.8365 67.2477 58.7625 65.9205 60.1361 65.4575C61.7875 64.9019 63.5161 65.7044 64.2723 67.3558C64.4112 67.6645 64.5038 67.9731 64.5501 68.2972C64.6118 68.6676 64.6118 69.038 64.5501 69.4084C64.3649 70.6123 63.6241 71.6926 62.4974 72.1402Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M38.6221 74.5479L32.6802 58.9755C32.2017 57.7562 31.0751 57 29.8404 57H26.3524C25.1332 57 23.9911 57.7562 23.5281 58.9755L17.6325 74.1466C17.4936 74.4862 17.401 74.8411 17.3393 75.1961C17.3084 75.3504 17.293 75.5202 17.293 75.69C17.293 77.3877 18.6202 78.7149 20.3179 78.7149H35.7977C35.7977 78.7149 35.7977 78.7149 35.8132 78.7149C37.0015 78.7149 38.0819 77.9896 38.5603 76.9092C38.8536 76.1838 38.8999 75.3504 38.6221 74.5479ZM30.7818 75.5974H21.5372C21.4446 75.5974 21.1976 75.5665 21.0742 75.4893C20.6575 75.2115 20.3951 74.7485 20.5803 74.1775L25.2104 62.4789C25.303 62.2011 25.5808 61.8461 26.1981 61.8461C26.5994 61.8461 26.9543 62.0622 27.1087 62.4789L31.7696 74.1775C31.8313 74.3164 31.8313 74.4553 31.8313 74.5479C31.8313 75.1189 31.3529 75.5974 30.7818 75.5974Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M54.4877 72.2484C53.9321 73.0046 53.2376 73.5911 52.4042 74.0232C51.4936 74.4862 50.4904 74.7177 49.4101 74.7177C47.6507 74.7177 46.2154 74.1621 45.0578 73.0663C43.9158 71.9706 43.3447 70.5661 43.3447 68.853C43.3447 67.109 43.9312 65.6737 45.0887 64.547C46.2617 63.4204 47.7124 62.8494 49.441 62.8494C50.475 62.8494 51.4319 63.0654 52.3116 63.4821C53.037 63.8371 53.6697 64.3155 54.1945 64.9175L52.2344 66.7386C51.4627 65.7817 50.5367 65.3033 49.4255 65.3033C48.4686 65.3033 47.6661 65.6274 47.0488 66.2756C46.416 66.9238 46.1073 67.7572 46.1073 68.7758C46.1073 69.8099 46.4314 70.6433 47.0796 71.2915C47.7278 71.9397 48.5149 72.2638 49.4564 72.2638C50.6602 72.2638 51.6942 71.7391 52.5277 70.6741L54.4877 72.2484Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M91.8834 72.9581C90.7413 74.0848 89.306 74.6404 87.5775 74.6404C85.8489 74.6404 84.4136 74.0693 83.2561 72.9427C82.114 71.8161 81.543 70.3962 81.543 68.6985C81.543 66.9854 82.114 65.5655 83.2561 64.4388C84.3982 63.3122 85.8335 62.7566 87.5775 62.7566C89.306 62.7566 90.7413 63.3122 91.8834 64.4388C93.0255 65.5655 93.5965 66.9854 93.5965 68.6985C93.5965 70.4116 93.0255 71.8315 91.8834 72.9581ZM85.2007 71.2296C85.8335 71.8778 86.6206 72.2019 87.5775 72.2019C88.5343 72.2019 89.3369 71.8778 89.9542 71.2141C90.5716 70.5505 90.8802 69.7171 90.8802 68.6985C90.8802 67.6799 90.5716 66.8465 89.9542 66.1983C89.3369 65.5501 88.5498 65.226 87.5775 65.226C86.6052 65.226 85.8026 65.5501 85.1853 66.1983C84.5679 66.8465 84.2593 67.6799 84.2593 68.6985C84.2593 69.7325 84.5679 70.5814 85.2007 71.2296Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M80.2153 67.8034V74.5478H77.252V68.3744C77.252 67.4175 77.0205 66.7076 76.5421 66.2137C76.0637 65.7199 75.4 65.4729 74.5666 65.4729C73.3937 65.4729 72.4522 66.0594 71.6342 66.8619V74.5478H68.9951V63.127H71.5879V64.3463C72.6529 63.59 73.8875 63.0344 75.3229 63.0344C76.8045 63.0344 77.9928 63.4511 78.888 64.3C79.7677 65.1488 80.2153 66.3063 80.2153 67.8034Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M118.706 63.0344L111.576 78.2364H108.983L111.453 73.0508L106.452 63.0344H109.184L112.795 70.2264L116.222 63.0344H118.706Z\"\n          fill=\"currentColor\"\n        />\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16329_10582\">\n          <rect\n            fill=\"white\"\n            height=\"21.6995\"\n            transform=\"translate(17 57)\"\n            width=\"102\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction Canva() {\n  const id1 = React.useId();\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <mask\n        height=\"25\"\n        id={id1}\n        maskUnits=\"userSpaceOnUse\"\n        style={{ maskType: \"luminance\" }}\n        width=\"76\"\n        x=\"30\"\n        y=\"56\"\n      >\n        <path\n          d=\"M105.335 72.5994C105.24 72.5994 105.05 72.6944 105.05 72.8844C104.292 75.0664 103.248 76.3949 102.393 76.3949C101.918 76.3949 101.73 75.8249 101.73 74.9714C101.73 72.7894 103.058 68.1405 103.722 66.0535C103.817 65.7685 103.817 65.5785 103.817 65.39C103.817 64.82 103.437 64.4415 102.678 64.4415C101.825 64.4415 100.781 64.8215 99.9261 66.4335C99.6411 65.01 98.5976 64.3465 97.2691 64.3465C95.6556 64.3465 94.1386 65.39 92.9051 67.0035C91.6716 68.6169 90.1531 69.1854 89.1096 68.9005C89.8681 66.9085 90.2481 65.485 90.2481 64.4415C90.2481 62.733 89.3946 61.6895 88.0661 61.6895C85.9791 61.6895 84.8406 63.6815 84.8406 65.77C84.8406 67.3835 85.5991 68.9954 87.1176 69.8504C85.7891 72.8859 83.7972 75.6379 83.1322 75.6379C82.1837 75.6379 81.8987 70.9889 81.9937 67.5734C81.9937 65.6765 82.1837 65.5815 82.1837 65.0115C82.1837 64.6315 81.9937 64.4415 81.1402 64.4415C79.1482 64.4415 78.4832 66.15 78.3882 68.142C78.3882 68.9005 78.1982 69.6604 78.0082 70.3239C77.1547 73.3594 75.4462 75.6379 74.3077 75.6379C73.7377 75.6379 73.6442 75.0679 73.6442 74.4044C73.6442 72.2224 74.8777 69.4704 74.8777 67.1935C74.8777 65.485 74.1192 64.4415 72.6957 64.4415C71.0822 64.4415 68.8053 66.4335 66.8133 70.1339C67.4768 67.287 67.7618 64.5365 65.7698 64.5365C65.2948 64.5365 64.9163 64.6315 64.5363 64.8215C64.2513 64.9165 64.0613 65.2015 64.1563 65.485C64.3463 68.5205 61.6893 76.2064 59.2223 76.2064C58.7473 76.2064 58.5588 75.7314 58.5588 74.9729C58.5588 72.7909 59.8873 68.2369 60.5508 66.055C60.6458 65.77 60.6458 65.58 60.6458 65.2965C60.6458 64.7265 60.2658 64.443 59.5073 64.443C58.6538 64.443 57.6103 64.823 56.7553 66.435C56.4703 65.0115 55.4268 64.348 54.0984 64.348C51.8214 64.348 49.3544 66.7199 48.3109 69.7554C46.8874 73.8359 43.8519 77.8199 39.8664 77.8199C36.261 77.8199 34.364 74.7844 34.364 70.0404C33.889 63.3045 38.918 57.7055 42.6184 57.7055C44.4204 57.7055 45.2754 58.844 45.2754 60.5525C45.2754 62.6395 44.1369 63.683 44.1369 64.443C44.1369 64.728 44.3269 64.918 44.7069 64.918C46.3204 64.918 48.2174 63.021 48.2174 60.364C48.2174 57.707 46.1304 56 42.4299 56C36.2625 55.9955 30 62.163 30 70.1325C30 76.4899 33.1305 80.2839 38.5394 80.2839C42.2399 80.2839 45.4654 77.4369 47.1739 74.0214C47.3639 76.7734 48.5974 78.2904 50.5894 78.2904C52.2978 78.2904 53.7198 77.2469 54.7633 75.4435C55.1433 77.3404 56.2818 78.1954 57.6103 78.1954C59.2238 78.1954 60.5523 77.1519 61.8793 75.2535C61.8793 76.7719 62.1643 78.1004 63.4928 78.1004C64.0628 78.1004 64.8213 78.0054 64.9163 77.4369C66.2448 71.8395 69.6602 67.2855 70.6087 67.2855C70.8937 67.2855 70.9887 67.5705 70.9887 67.949C70.9887 69.4675 69.9452 72.598 69.9452 74.59C69.9452 76.7719 70.8937 78.1954 72.7922 78.1954C74.8792 78.1954 77.0612 75.6334 78.3897 71.838C78.8647 75.3485 79.8132 78.1954 81.3317 78.1954C83.1336 78.1954 86.4556 74.305 88.4476 70.226C89.2061 70.321 90.4396 70.321 91.4831 69.4675C91.0081 70.701 90.7246 72.0295 90.7246 73.3579C90.7246 77.1534 92.5266 78.1969 94.1401 78.1969C95.8486 78.1969 97.2706 77.1534 98.3141 75.3499C98.694 76.9634 99.5475 78.1019 101.161 78.1019C103.723 78.1019 106 75.4449 106 73.3579C105.904 72.9794 105.619 72.5994 105.335 72.5994ZM52.1064 76.2049C51.0629 76.2049 50.6829 75.1614 50.6829 73.6429C50.6829 70.986 52.4849 66.432 54.4783 66.432C55.3318 66.432 55.6168 67.4755 55.6168 68.709C55.6168 71.3659 53.9098 76.2049 52.1064 76.2049ZM87.5911 68.1405C86.9276 67.382 86.7376 66.432 86.7376 65.4835C86.7376 64.345 87.1176 63.4915 87.5911 63.4915C88.0661 63.4915 88.2546 63.9665 88.2546 64.63C88.2561 65.6735 87.8761 67.287 87.5911 68.1405ZM95.6571 76.2049C94.6136 76.2049 94.2336 74.9714 94.2336 73.6429C94.2336 71.081 96.0356 66.432 98.0291 66.432C98.8826 66.432 99.1676 67.4755 99.1676 68.709C99.1676 71.3659 97.4591 76.2049 95.6571 76.2049Z\"\n          fill=\"white\"\n        />\n      </mask>\n      <g mask={`url(#${id1})`}>\n        <path\n          d=\"M106.187 54.666H29.7139V81.5163H106.187V54.666Z\"\n          fill=\"currentColor\"\n        />\n      </g>\n    </svg>\n  );\n}\n\nfunction Casetext() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10575)\">\n        <path\n          d=\"M30.5608 66.5828C30.264 66.1113 29.8492 65.7123 29.3166 65.3859C28.784 65.0595 28.1772 64.8962 27.4961 64.8962C26.7802 64.8781 26.1384 64.996 25.5709 65.2499C25.0033 65.5038 24.5187 65.8574 24.1171 66.3108C23.7155 66.7641 23.4099 67.3036 23.2003 67.9293C22.9908 68.5549 22.886 69.2305 22.886 69.9559C22.886 70.6813 22.9908 71.3568 23.2003 71.9824C23.4099 72.6081 23.7155 73.1476 24.1171 73.601C24.5187 74.0543 25.0033 74.408 25.5709 74.6619C26.1384 74.9157 26.7802 75.0336 27.4961 75.0155C28.1772 75.0155 28.784 74.8523 29.3166 74.5259C29.8492 74.1994 30.264 73.8005 30.5608 73.329L31.9753 74.4442C31.3641 75.1878 30.6743 75.7363 29.906 76.09C29.1376 76.4436 28.3343 76.6295 27.4961 76.6476C26.5008 76.6658 25.6014 76.5071 24.7981 76.1716C23.9949 75.8361 23.3094 75.3691 22.7419 74.7707C22.1744 74.1722 21.7422 73.4604 21.4453 72.6353C21.1484 71.8102 21 70.917 21 69.9559C21 68.9947 21.1484 68.1016 21.4453 67.2764C21.7422 66.4513 22.1744 65.7395 22.7419 65.1411C23.3094 64.5426 23.9949 64.0756 24.7981 63.7401C25.6014 63.4046 26.5008 63.246 27.4961 63.2641C28.3343 63.2822 29.1376 63.4681 29.906 63.8217C30.6743 64.1754 31.3641 64.7239 31.9753 65.4675L30.5608 66.5828Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M42.4176 68.5142V68.1878C42.4176 65.9935 41.3698 64.8963 39.2743 64.8963C37.8423 64.8963 36.5937 65.395 35.5285 66.3924L34.4808 65.1139C35.6333 63.8807 37.3621 63.2642 39.6672 63.2642C40.2608 63.2642 40.8327 63.3548 41.3828 63.5362C41.9329 63.7175 42.4089 63.9941 42.8105 64.3659C43.2121 64.7376 43.5352 65.2046 43.7796 65.7668C44.0242 66.329 44.1464 66.9999 44.1464 67.7798V73.465C44.1464 73.9547 44.1682 74.467 44.2118 75.002C44.2555 75.5369 44.3036 75.9767 44.3558 76.3213H42.6795C42.6272 76.013 42.5879 75.6775 42.5616 75.3148C42.5354 74.9521 42.5223 74.5985 42.5223 74.2539H42.47C41.9635 75.1062 41.3655 75.7183 40.6756 76.09C39.9858 76.4618 39.1433 76.6477 38.1479 76.6477C37.6066 76.6477 37.0827 76.5706 36.5763 76.4165C36.0699 76.2623 35.6202 76.0266 35.2273 75.7092C34.8344 75.3919 34.52 75.002 34.2843 74.5395C34.0485 74.0771 33.9307 73.5376 33.9307 72.921C33.9307 71.8873 34.1882 71.0758 34.7034 70.4864C35.2185 69.897 35.8647 69.4572 36.6418 69.1671C37.4189 68.8769 38.2483 68.6956 39.1302 68.623C40.0121 68.5505 40.8198 68.5142 41.5531 68.5142H42.4176ZM41.527 69.9831C41.0905 69.9831 40.5447 70.0058 39.8899 70.0511C39.235 70.0965 38.6063 70.2053 38.0039 70.3776C37.4014 70.5499 36.8862 70.8173 36.4584 71.18C36.0306 71.5427 35.8166 72.0414 35.8166 72.6762C35.8166 73.0933 35.8996 73.4514 36.0655 73.7506C36.2314 74.0499 36.454 74.2947 36.7334 74.4851C37.0128 74.6755 37.3228 74.8116 37.6633 74.8931C38.0039 74.9748 38.3487 75.0156 38.698 75.0156C39.3267 75.0156 39.8724 74.9068 40.3351 74.6891C40.7979 74.4715 41.1864 74.1768 41.5007 73.8051C41.815 73.4333 42.0465 72.9981 42.195 72.4994C42.3433 72.0006 42.4176 71.4702 42.4176 70.908V69.9831H41.527Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M54.1271 66.6101C53.8652 66.0841 53.5159 65.667 53.0794 65.3587C52.6429 65.0505 52.1103 64.8963 51.4816 64.8963C51.1847 64.8963 50.8834 64.9326 50.5779 65.0051C50.2722 65.0776 49.9971 65.191 49.7527 65.3452C49.5081 65.4993 49.3117 65.6942 49.1634 65.93C49.0148 66.1658 48.9408 66.4559 48.9408 66.8005C48.9408 67.3989 49.1415 67.8342 49.5431 68.1062C49.9449 68.3782 50.5472 68.6139 51.3505 68.8134L53.1055 69.2487C53.9613 69.4482 54.6729 69.8517 55.2405 70.4592C55.8078 71.0667 56.0917 71.8238 56.0917 72.7306C56.0917 73.4197 55.9564 74.0136 55.6856 74.5123C55.4149 75.011 55.057 75.4191 54.6118 75.7364C54.1664 76.0538 53.6556 76.285 53.0794 76.4301C52.5032 76.5752 51.9181 76.6477 51.3244 76.6477C50.3814 76.6477 49.5038 76.4618 48.6919 76.09C47.8799 75.7183 47.1856 75.079 46.6094 74.1723L48.1025 73.1114C48.4518 73.6917 48.8926 74.1542 49.4252 74.4987C49.9578 74.8433 50.5908 75.0156 51.3244 75.0156C51.6735 75.0156 52.0228 74.9748 52.3721 74.8931C52.7214 74.8116 53.0313 74.6846 53.302 74.5123C53.5727 74.34 53.791 74.1179 53.9568 73.8459C54.1228 73.5738 54.2057 73.2565 54.2057 72.8938C54.2057 72.2591 53.9786 71.8012 53.5246 71.5201C53.0706 71.239 52.5205 71.0168 51.8745 70.8536L50.1979 70.4456C49.9885 70.3912 49.7046 70.3005 49.3467 70.1736C48.9887 70.0466 48.6394 69.8562 48.2989 69.6023C47.9585 69.3484 47.6659 69.0174 47.4213 68.6094C47.1769 68.2014 47.0547 67.6981 47.0547 67.0997C47.0547 66.4468 47.1813 65.8756 47.4345 65.3859C47.6877 64.8963 48.0282 64.4973 48.4561 64.189C48.884 63.8807 49.3685 63.6495 49.9099 63.4954C50.4512 63.3412 51.0101 63.2642 51.5863 63.2642C52.4419 63.2642 53.2366 63.4364 53.9699 63.781C54.7033 64.1256 55.2709 64.715 55.6727 65.5492L54.1271 66.6101Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M59.9947 70.4456C60.0472 71.0803 60.1955 71.6787 60.4401 72.2409C60.6845 72.8031 61.0075 73.2882 61.4092 73.6962C61.8108 74.1043 62.2736 74.4262 62.7974 74.6619C63.3214 74.8977 63.8889 75.0156 64.5001 75.0156C65.4256 75.0156 66.2245 74.7934 66.8967 74.3491C67.5692 73.9048 68.08 73.3925 68.4291 72.8122L69.7651 73.9547C69.0317 74.9158 68.224 75.6049 67.3421 76.022C66.4602 76.4391 65.5129 76.6477 64.5001 76.6477C63.5921 76.6477 62.7495 76.48 61.9723 76.1445C61.1953 75.809 60.5273 75.342 59.9686 74.7435C59.4096 74.1451 58.9688 73.4378 58.6456 72.6218C58.3226 71.8057 58.1611 70.9171 58.1611 69.9559C58.1611 68.9948 58.3183 68.1062 58.6326 67.2901C58.947 66.474 59.3835 65.7668 59.9422 65.1683C60.5012 64.5699 61.156 64.1029 61.9068 63.7674C62.6577 63.4319 63.4697 63.2642 64.3429 63.2642C65.2685 63.2642 66.0979 63.4364 66.8313 63.781C67.5647 64.1256 68.1804 64.5835 68.678 65.1547C69.1757 65.726 69.5556 66.397 69.8175 67.1677C70.0794 67.9384 70.2104 68.759 70.2104 69.6295V70.4456H59.9947ZM68.3244 68.9767C68.3244 67.7616 67.9751 66.7778 67.2767 66.0252C66.5781 65.2726 65.6003 64.8963 64.3429 64.8963C63.784 64.8963 63.2428 65.0096 62.7188 65.2363C62.1951 65.463 61.7365 65.7668 61.3436 66.1476C60.9509 66.5284 60.6365 66.9637 60.4008 67.4533C60.165 67.943 60.0472 68.4507 60.0472 68.9767H68.3244Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M79.4744 65.2228H75.9383V72.7307C75.9383 73.2022 75.9819 73.5875 76.0692 73.8868C76.1566 74.186 76.2788 74.4172 76.436 74.5804C76.5931 74.7437 76.7808 74.857 76.999 74.9205C77.2173 74.9839 77.4576 75.0157 77.7194 75.0157C78.0163 75.0157 78.322 74.9703 78.6363 74.8797C78.9505 74.789 79.2387 74.6711 79.5006 74.526L79.5791 76.1854C78.9332 76.4937 78.156 76.6478 77.2479 76.6478C76.9161 76.6478 76.5713 76.6025 76.2132 76.5118C75.8552 76.4211 75.5279 76.2488 75.2311 75.9949C74.9342 75.7411 74.6896 75.3965 74.4975 74.9613C74.3056 74.526 74.2095 73.9548 74.2095 73.2475V65.2228H71.6162V63.5907H74.2095V60H75.9383V63.5907H79.4744V65.2228Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M82.7291 70.4456C82.7815 71.0803 82.9299 71.6787 83.1744 72.2409C83.4188 72.8031 83.7418 73.2882 84.1436 73.6962C84.5451 74.1043 85.008 74.4262 85.5318 74.6619C86.0557 74.8977 86.6233 75.0156 87.2345 75.0156C88.16 75.0156 88.9588 74.7934 89.6313 74.3491C90.3036 73.9048 90.8144 73.3925 91.1635 72.8122L92.4994 73.9547C91.766 74.9158 90.9584 75.6049 90.0765 76.022C89.1946 76.4391 88.2472 76.6477 87.2345 76.6477C86.3264 76.6477 85.4838 76.48 84.7066 76.1445C83.9296 75.809 83.2617 75.342 82.7029 74.7435C82.144 74.1451 81.7032 73.4378 81.38 72.6218C81.057 71.8057 80.8955 70.9171 80.8955 69.9559C80.8955 68.9948 81.0527 68.1062 81.367 67.2901C81.6813 66.474 82.1179 65.7668 82.6766 65.1683C83.2355 64.5699 83.8903 64.1029 84.6412 63.7674C85.3921 63.4319 86.2041 63.2642 87.0773 63.2642C88.0028 63.2642 88.8323 63.4364 89.5657 63.781C90.2991 64.1256 90.9148 64.5835 91.4124 65.1547C91.91 65.726 92.29 66.397 92.5519 67.1677C92.8138 67.9384 92.9448 68.759 92.9448 69.6295V70.4456H82.7291ZM91.0588 68.9767C91.0588 67.7616 90.7095 66.7778 90.0111 66.0252C89.3125 65.2726 88.3347 64.8963 87.0773 64.8963C86.5184 64.8963 85.9771 65.0096 85.4532 65.2363C84.9294 65.463 84.4709 65.7668 84.0782 66.1476C83.6852 66.5284 83.3709 66.9637 83.1352 67.4533C82.8994 67.943 82.7815 68.4507 82.7815 68.9767H91.0588Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M98.577 69.5209L94.124 63.5908H96.4815L99.8868 68.3512L103.135 63.5908H105.283L101.013 69.5209L106.147 76.3215H103.79L99.6772 70.745L95.7218 76.3215H93.5215L98.577 69.5209Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M114.895 65.2228H111.359V72.7307C111.359 73.2022 111.403 73.5875 111.49 73.8868C111.577 74.186 111.7 74.4172 111.857 74.5804C112.014 74.7437 112.202 74.857 112.42 74.9205C112.638 74.9839 112.878 75.0157 113.14 75.0157C113.437 75.0157 113.743 74.9703 114.057 74.8797C114.371 74.789 114.66 74.6711 114.921 74.526L115 76.1854C114.354 76.4937 113.577 76.6478 112.669 76.6478C112.337 76.6478 111.992 76.6025 111.634 76.5118C111.276 76.4211 110.949 76.2488 110.652 75.995C110.355 75.7411 110.111 75.3965 109.918 74.9613C109.726 74.526 109.63 73.9548 109.63 73.2475V65.2228H107.037V63.5907H109.63V60H111.359V63.5907H114.895V65.2228Z\"\n          fill=\"currentColor\"\n        />\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16329_10575\">\n          <rect\n            fill=\"white\"\n            height=\"16.732\"\n            transform=\"translate(21 60)\"\n            width=\"94\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction _Classdojo() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10578)\">\n        <path\n          clipRule=\"evenodd\"\n          d=\"M123.65 63.7261C123.34 64.0354 122.921 64.2091 122.484 64.2091C122.267 64.2082 122.053 64.1645 121.853 64.0807C121.653 63.9969 121.472 63.8744 121.32 63.7205C121.167 63.5665 121.047 63.384 120.965 63.1834C120.884 62.9828 120.842 62.7681 120.844 62.5515C120.842 62.3357 120.884 62.1218 120.966 61.9222C121.048 61.7226 121.168 61.5413 121.321 61.3887C121.473 61.2361 121.655 61.1154 121.854 61.0334C122.054 60.9515 122.268 60.91 122.484 60.9114C122.921 60.9114 123.34 61.0851 123.65 61.3943C123.959 61.7036 124.133 62.1229 124.133 62.5602C124.133 62.9975 123.959 63.4169 123.65 63.7261ZM123.918 73.9345C123.918 76.1155 122.84 77.6614 120.435 77.6614C119.207 77.6614 118.76 77.4765 118.069 77.0263L118.799 74.9395C119.148 75.2396 119.409 75.3513 119.95 75.3513C120.624 75.3513 121.049 74.9046 121.049 73.9345V65.0117H123.918V73.9345ZM135.001 69.4993C135.001 72.0362 133.176 74.2346 130.08 74.2346H130.084C127.027 74.2346 125.202 72.0362 125.202 69.4993C125.202 66.9658 127.027 64.7883 130.08 64.7883C133.176 64.7883 135.001 66.9658 135.001 69.4993ZM128.147 69.4993C128.147 70.7102 128.856 71.6977 130.08 71.6977H130.084C131.351 71.6977 132.059 70.7102 132.059 69.4993C132.059 68.3093 131.351 67.3218 130.084 67.3218C128.852 67.3218 128.147 68.3093 128.147 69.4993ZM63.7434 70.8986C62.9442 72.4829 61.3251 74.2346 58.324 74.2346C54.5064 74.2346 51.5996 71.6244 51.5996 67.8068C51.5996 63.9683 54.5064 61.3755 58.324 61.3755C61.3216 61.3755 62.9408 63.0715 63.7434 64.6906L60.9866 66.0167C60.7615 65.493 60.3911 65.0449 59.9192 64.7251C59.4474 64.4054 58.8938 64.2275 58.324 64.2125C56.2931 64.2125 54.8589 65.7549 54.8589 67.8068C54.8589 69.8378 56.2931 71.4011 58.324 71.4011C58.8942 71.3858 59.448 71.2074 59.9199 70.887C60.3918 70.5667 60.762 70.1178 60.9866 69.5935L63.7434 70.8986ZM67.7075 61.5849V74.0078H64.8391V61.5849H67.7075ZM77.7436 68.3826V74.0078H74.8751V73.118C74.3168 73.7845 73.235 74.2346 72.0835 74.2346C70.7016 74.2346 68.9917 73.282 68.9917 71.272C68.9917 69.091 70.7051 68.3652 72.0835 68.3652C73.2734 68.3652 74.3377 68.756 74.8751 69.426V68.5327C74.8751 67.751 74.2051 67.2101 73.0501 67.2101C72.125 67.227 71.2354 67.5692 70.5376 68.1767L69.4733 66.1842C70.6283 65.1966 72.1742 64.7883 73.5561 64.7883C75.7161 64.7883 77.7436 65.5909 77.7436 68.3826ZM71.8392 71.3069C71.8392 72.0153 72.5301 72.3503 73.2769 72.3503H73.2734C73.9085 72.3503 74.5785 72.1269 74.8786 71.7012V70.8986C74.5785 70.4694 73.9085 70.2635 73.2734 70.2635C72.5301 70.2635 71.8392 70.5985 71.8392 71.3069ZM87.155 71.2894C87.155 73.0028 85.644 74.2346 83.0757 74.2346V74.2311C81.453 74.2311 79.7954 73.6937 78.8463 72.8353L80.0397 70.7869C80.7097 71.3836 82.1439 71.9978 83.2048 71.9978C84.0632 71.9978 84.4157 71.7535 84.4157 71.3627C84.4157 70.965 83.7518 70.8555 82.8969 70.7144C81.3513 70.4593 79.1813 70.1012 79.1813 67.751C79.1813 66.1667 80.5597 64.7883 83.0373 64.7883C84.3863 64.7714 85.7051 65.1886 86.799 65.9783L85.6998 68.0092C85.1589 67.4893 84.1365 67.0217 83.0547 67.0217C82.3847 67.0217 81.938 67.2834 81.938 67.6358C81.938 67.9726 82.5447 68.0756 83.3442 68.2114C84.8893 68.4739 87.155 68.8587 87.155 71.2894ZM95.9592 71.2894C95.9592 73.0028 94.4482 74.2346 91.8799 74.2346V74.2311C90.2572 74.2311 88.5997 73.6937 87.6505 72.8353L88.8439 70.7869C89.5139 71.3836 90.9481 71.9978 92.009 71.9978C92.8674 71.9978 93.2199 71.7535 93.2199 71.3627C93.2199 70.965 92.556 70.8555 91.7011 70.7144C90.1555 70.4593 87.9855 70.1012 87.9855 67.751C87.9855 66.1667 89.3639 64.7883 91.8415 64.7883C93.1906 64.7714 94.5094 65.1886 95.6033 65.9783L94.504 68.0092C93.9666 67.4893 92.9407 67.0217 91.8589 67.0217C91.1889 67.0217 90.7423 67.2834 90.7423 67.6358C90.7423 67.9726 91.3489 68.0756 92.1484 68.2114C93.6935 68.4739 95.9592 68.8587 95.9592 71.2894ZM109.234 67.7859C109.234 71.6419 106.421 74.0078 102.527 74.0078H97.2957V61.5814H102.509C106.421 61.5814 109.234 63.9299 109.234 67.7859ZM100.499 71.2161H102.509C104.69 71.2161 105.957 69.6319 105.957 67.7859C105.957 65.8666 104.802 64.3766 102.527 64.3766H100.499V71.2161ZM119.758 69.4993C119.758 72.0362 117.93 74.2346 114.838 74.2346C111.784 74.2346 109.959 72.0362 109.959 69.4993C109.959 66.9658 111.784 64.7883 114.838 64.7883C117.93 64.7883 119.758 66.9658 119.758 69.4993ZM112.901 69.4993C112.901 70.7102 113.61 71.6977 114.838 71.6977C116.105 71.6977 116.813 70.7102 116.813 69.4993C116.813 68.3093 116.105 67.3218 114.838 67.3218C113.61 67.3218 112.901 68.3093 112.901 69.4993Z\"\n          fill=\"currentColor\"\n          fillRule=\"evenodd\"\n        />\n        <path\n          d=\"M7.4554 51.8385C8.51539 51.8385 9.37467 50.9793 9.37467 49.9193C9.37467 48.8593 8.51539 48 7.4554 48C6.39542 48 5.53613 48.8593 5.53613 49.9193C5.53613 50.9793 6.39542 51.8385 7.4554 51.8385Z\"\n          fill=\"#797979\"\n        />\n        <mask\n          height=\"39\"\n          id=\"mask0_16329_10578\"\n          maskUnits=\"userSpaceOnUse\"\n          style={{ maskType: \"alpha\" }}\n          width=\"39\"\n          x=\"3\"\n          y=\"49\"\n        >\n          <path\n            d=\"M28.0435 86.5141C38.0842 83.2516 43.5791 72.4673 40.3167 62.4266C37.0542 52.3859 26.2699 46.891 16.2292 50.1534C6.18844 53.4158 0.693549 64.2002 3.95598 74.2409C7.21841 84.2816 18.0027 89.7765 28.0435 86.5141Z\"\n            fill=\"#00B2F7\"\n          />\n        </mask>\n        <g mask=\"url(#mask0_16329_10578)\">\n          <path\n            d=\"M-1.95996 56.0644L34.3945 44.2522L47.1559 83.5275L10.7945 95.3397L-1.95996 56.0644Z\"\n            fill=\"#E2E2E2\"\n          />\n          <mask\n            height=\"37\"\n            id=\"mask1_16329_10578\"\n            maskUnits=\"userSpaceOnUse\"\n            style={{ maskType: \"alpha\" }}\n            width=\"31\"\n            x=\"8\"\n            y=\"53\"\n          >\n            <path\n              d=\"M10.2394 59.3204C8.61327 61.3792 7.79671 63.1729 9.33212 67.5174C10.8745 71.8619 15.7774 87.3487 15.7774 87.3487L29.0448 89.3447L29.1041 89.5192L29.2472 89.3796L29.4496 89.4076L29.3937 89.2331L38.9552 79.8182C38.9552 79.8182 33.815 64.4047 32.5099 59.9869C31.2013 55.5691 29.481 54.599 26.958 53.8871C25.3353 53.4334 20.0137 54.3617 19.0715 54.6653L18.7086 54.7839L18.6807 54.7944L18.2236 54.9479L18.077 54.9968L17.9305 55.0456L17.4698 55.1852L17.4384 55.1957L17.0755 55.3143C16.1333 55.6214 11.2828 57.9978 10.2394 59.3204Z\"\n              fill=\"#83DC1F\"\n            />\n          </mask>\n          <g mask=\"url(#mask1_16329_10578)\">\n            <path\n              d=\"M5.18945 59.176L32.8615 50.1848L43.7258 83.6216L16.0537 92.6128L5.18945 59.176Z\"\n              fill=\"url(#paint0_linear_16329_10578)\"\n            />\n            <path\n              d=\"M10.2951 70.773C9.33197 69.5586 8.46655 65.9364 8.40723 64.9593C16.175 57.0449 27.6697 56.361 31.6688 57.4009C33.117 59.0759 33.8254 63.1273 33.5567 63.2145C22.1771 61.1976 13.1565 67.5067 10.2951 70.773Z\"\n              fill=\"#6A6A6A\"\n            />\n          </g>\n        </g>\n        <path\n          d=\"M11.0049 66.7878C10.4221 65.1233 9.02629 63.71 7.03723 63.0226C5.07451 62.3616 2.93205 62.4867 1.05957 63.3715C1.64233 65.0396 3.03816 66.4598 5.03769 67.1473C5.42504 67.2799 5.81936 67.3811 6.21717 67.4509C5.86473 67.6219 5.51926 67.8173 5.19124 68.0441C3.44645 69.234 2.47285 70.9719 2.3577 72.7376C4.31884 73.0796 6.46842 72.6817 8.21322 71.4918C9.95801 70.2984 10.9316 68.5605 11.0468 66.7948L11.0119 66.7878H11.0049Z\"\n          fill=\"#1D1D1D\"\n        />\n        <path\n          d=\"M17.3248 70.7873C17.8069 70.6306 18.0707 70.1129 17.9141 69.6308C17.7574 69.1488 17.2397 68.885 16.7576 69.0416C16.2756 69.1982 16.0117 69.716 16.1684 70.198C16.325 70.6801 16.8428 70.9439 17.3248 70.7873Z\"\n          fill=\"#1D1D1D\"\n        />\n        <path\n          d=\"M28.0524 67.3083C28.5344 67.1516 28.7982 66.6339 28.6416 66.1518C28.485 65.6698 27.9672 65.406 27.4851 65.5626C27.0031 65.7192 26.7393 66.237 26.8959 66.719C27.0525 67.2011 27.5703 67.4649 28.0524 67.3083Z\"\n          fill=\"#1D1D1D\"\n        />\n        <mask\n          height=\"11\"\n          id=\"mask2_16329_10578\"\n          maskUnits=\"userSpaceOnUse\"\n          style={{ maskType: \"alpha\" }}\n          width=\"16\"\n          x=\"16\"\n          y=\"69\"\n        >\n          <path\n            d=\"M23.54 72.4339C22.9817 72.6153 21.4532 72.9433 20.2947 72.7933C18.8465 72.6083 16.3968 72.905 16.5434 75.2465C16.6865 77.5915 19.7119 81.1997 25.9548 79.2874L26.0944 79.2385C32.2744 77.1169 32.6025 72.4269 31.3392 70.4413C30.083 68.4592 27.9264 69.6596 26.8621 70.6611C26.0106 71.4638 24.5904 72.0919 24.032 72.2768L23.5435 72.4339H23.54Z\"\n            fill=\"#2C2A50\"\n          />\n        </mask>\n        <g mask=\"url(#mask2_16329_10578)\">\n          <path\n            d=\"M15.9355 73.6693L30.9373 68.7979L33.544 76.8239L18.5423 81.6988L15.9355 73.6693Z\"\n            fill=\"#1D1D1D\"\n          />\n          <path\n            d=\"M19.0479 79.4481C19.5272 78.2535 20.2633 77.1789 21.2041 76.3003C22.1448 75.4217 23.2671 74.7606 24.4916 74.3638C25.7153 73.9654 27.0116 73.8408 28.2888 73.9988C29.5659 74.1568 30.7928 74.5935 31.8825 75.2781C31.4031 76.4726 30.667 77.5473 29.7263 78.4259C28.7856 79.3045 27.6633 79.9656 26.4388 80.3624C25.2151 80.7607 23.9188 80.8853 22.6416 80.7274C21.3644 80.5694 20.1376 80.1326 19.0479 79.4481Z\"\n            fill=\"#BABABA\"\n          />\n          <path\n            d=\"M30.1454 77.1099L30.1559 77.1204L30.1768 77.0855L30.2745 77.0227L30.2431 76.9878L32.0402 74.381C31.3109 74.0042 29.7092 73.4493 29.1125 74.2415C28.6937 74.7963 29.0985 75.6931 29.5696 76.3876C28.945 75.9095 28.1424 75.5221 27.5736 75.892C26.9594 76.2898 27.0397 77.2879 27.2525 78.0835C26.8338 77.41 26.2161 76.733 25.3367 77.0192C24.4225 77.3158 24.3527 78.2929 24.4225 79.1059C24.1363 78.3138 23.6024 77.3891 22.8417 77.4309C22.1473 77.4658 21.725 78.2859 21.5017 79.0501C21.4842 78.2021 21.2853 77.2111 20.6118 77.0052C19.6627 76.7156 18.6926 78.1044 18.3262 78.8372L21.3272 79.8981L21.3202 79.933L21.411 79.9295L21.4598 79.9469V79.926L24.5062 79.7655L24.5167 79.8318L27.6573 78.8093L27.6224 78.7465L30.1454 77.1064V77.1099Z\"\n            fill=\"#F5F5F5\"\n          />\n        </g>\n        <path\n          d=\"M11.9193 49.9404C13.8491 49.5321 18.396 52.8367 19.8756 54.6024L12.9976 57.7082C13.1477 56.9544 13.1023 56.773 12.3974 54.6024C11.9333 53.1647 8.75079 50.6104 11.9228 49.9369L11.9193 49.9404Z\"\n          fill=\"#797979\"\n        />\n        <path\n          d=\"M9.9329 69.6215C8.96629 68.4001 8.40796 64.6768 8.34863 63.6962C16.1095 55.7818 26.9691 55.3072 30.9646 56.3506C32.4128 58.0256 33.4352 61.9863 33.17 62.0735C21.794 60.0426 12.7839 66.3518 9.92941 69.6215H9.9329Z\"\n          fill=\"#1D1D1D\"\n        />\n        <mask\n          height=\"13\"\n          id=\"mask3_16329_10578\"\n          maskUnits=\"userSpaceOnUse\"\n          style={{ maskType: \"alpha\" }}\n          width=\"11\"\n          x=\"34\"\n          y=\"63\"\n        >\n          <path\n            d=\"M43.8868 65.5178C42.9551 64.593 40.9765 64.2196 40.2681 64.3906C39.7342 61.3093 38.7851 64.2441 38.1325 65.1479C37.145 65.5666 34.793 67.3882 34.793 67.3882L37.4346 75.4666C37.4346 75.4666 40.2716 68.4769 43.7298 66.268C43.9985 66.0935 44.1136 65.7446 43.8868 65.5178Z\"\n            fill=\"#83DC1F\"\n          />\n        </mask>\n        <g mask=\"url(#mask3_16329_10578)\">\n          <path\n            d=\"M33.917 64.8024L43.632 61.6443L47.1914 72.612L37.4799 75.7666L33.917 64.8024Z\"\n            fill=\"#767676\"\n          />\n          <path\n            d=\"M39.4517 72.3222C36.7577 69.9388 35.8365 67.4996 35.7143 66.5784L34.5732 66.8226L37.7313 76.419L39.4517 72.3187V72.3222Z\"\n            fill=\"#6F6F6F\"\n          />\n        </g>\n        <mask\n          height=\"10\"\n          id=\"mask4_16329_10578\"\n          maskUnits=\"userSpaceOnUse\"\n          style={{ maskType: \"alpha\" }}\n          width=\"12\"\n          x=\"3\"\n          y=\"74\"\n        >\n          <path\n            d=\"M3.72836 78.935C3.93773 77.6787 5.27424 76.2585 5.92679 75.9898C4.58679 73.2574 7.01554 75.0267 8.04497 75.3652C9.06393 75.1313 11.9603 75.2186 11.9603 75.2186L14.5042 83.0946C14.5042 83.0946 8.28226 79.2211 4.29367 79.448C3.97612 79.4654 3.67252 79.2491 3.72836 78.935Z\"\n            fill=\"#83DC1F\"\n          />\n        </mask>\n        <g mask=\"url(#mask4_16329_10578)\">\n          <path\n            d=\"M1.93164 75.3582L11.0325 72.406L14.5011 83.0841L5.3968 86.0363L1.93164 75.3582Z\"\n            fill=\"#767676\"\n          />\n          <path\n            d=\"M11.1369 81.7581C11.8976 78.3418 11.2276 75.8956 10.7949 75.0965L11.8348 74.6428L14.8359 84.0019L11.1369 81.7581Z\"\n            fill=\"#6F6F6F\"\n          />\n        </g>\n      </g>\n      <defs>\n        <linearGradient\n          gradientUnits=\"userSpaceOnUse\"\n          id=\"paint0_linear_16329_10578\"\n          x1=\"38.5909\"\n          x2=\"27.5454\"\n          y1=\"82.0465\"\n          y2=\"60.564\"\n        >\n          <stop stopColor=\"#6F6F6F\" />\n          <stop offset=\"1\" stopColor=\"#787878\" />\n        </linearGradient>\n        <clipPath id=\"clip0_16329_10578\">\n          <rect\n            fill=\"white\"\n            height=\"39.7812\"\n            transform=\"translate(1 48)\"\n            width=\"134\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction Clearbit() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <path\n        d=\"M40.6612 67.8929V75.297C40.6612 78.2507 40.3461 79.3141 39.775 80.3971C39.204 81.4802 38.3572 82.3269 37.2742 82.898C36.1912 83.469 35.1278 83.7841 32.1938 83.7841H24.8291V67.8929H40.6612Z\"\n        fill=\"currentColor\"\n        fillOpacity=\"0.2\"\n      />\n      <path\n        d=\"M24.8291 52H32.1938C35.1278 52 36.1912 52.3151 37.2742 52.8861C38.3572 53.4572 39.1843 54.3039 39.775 55.387C40.3461 56.47 40.6612 57.5333 40.6612 60.4871V67.8911H24.8291V52Z\"\n        fill=\"currentColor\"\n        fillOpacity=\"0.6\"\n      />\n      <path\n        d=\"M17.4674 52H24.8321V83.7823H17.4674C14.5333 83.7823 13.47 83.4672 12.387 82.8961C11.3039 82.3251 10.4769 81.4783 9.88612 80.3953C9.31507 79.3123 9 78.2489 9 75.2952V60.4871C9 57.5333 9.31507 56.47 9.88612 55.387C10.4572 54.3039 11.3039 53.4572 12.387 52.8861C13.47 52.3151 14.5333 52 17.4674 52Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M67.6831 66.2417C67.3376 65.7748 66.8577 65.42 66.3011 65.2332C65.7253 65.0091 65.1687 64.897 64.6313 64.897C63.9403 64.897 63.3069 65.0278 62.7311 65.2706C62.1744 65.5134 61.6754 65.8495 61.2531 66.2791C60.8501 66.7273 60.5238 67.2316 60.3126 67.7919C60.1015 68.3895 59.9863 69.0432 59.9863 69.6782C59.9863 70.3879 60.1015 71.0416 60.3126 71.6392C60.5046 72.1995 60.8117 72.7225 61.2147 73.1707C61.6178 73.6003 62.1169 73.9178 62.6543 74.1606C63.2109 74.4033 63.8443 74.5154 64.5353 74.5154C65.2647 74.5154 65.8981 74.3847 66.4547 74.1045C67.0113 73.8244 67.4528 73.4508 67.7982 73.0026L69.7176 74.31C69.1418 75.0383 68.3933 75.6173 67.5487 76.0095C66.685 76.4017 65.6869 76.6072 64.5353 76.6072C63.4796 76.6072 62.5199 76.4391 61.637 76.1029C60.7925 75.7854 60.0247 75.2998 59.3913 74.6835C58.7579 74.0672 58.2589 73.3201 57.9134 72.4983C57.5679 71.6392 57.376 70.7054 57.376 69.6782C57.376 68.6323 57.5679 67.6798 57.9326 66.8394C58.3165 65.9803 58.8155 65.2706 59.4681 64.6729C60.1399 64.0753 60.9268 63.6084 61.7714 63.3095C62.6543 62.992 63.614 62.824 64.6505 62.824C65.0727 62.824 65.5334 62.8613 65.994 62.9547C66.4547 63.0294 66.9153 63.1601 67.3376 63.3282C67.7599 63.4963 68.1629 63.6831 68.5468 63.9445C68.9307 64.1873 69.257 64.4862 69.5065 64.841L67.6831 66.2417ZM71.1188 62.2823H73.3837V76.271H71.1188V62.2823ZM82.5583 70.9295C82.5583 70.6494 82.5199 70.3692 82.424 70.1078C82.3472 69.8463 82.2128 69.6222 82.0401 69.4167C81.8482 69.2113 81.6178 69.0619 81.3491 68.9498C81.0804 68.8191 80.7733 68.7631 80.4086 68.7631C79.7176 68.7631 79.1418 68.9685 78.662 69.3794C78.2013 69.7716 77.9326 70.2945 77.8942 70.9109C77.8942 70.9295 82.5583 70.9295 82.5583 70.9295ZM84.8232 71.9381V72.2369C84.8232 72.3303 84.8232 72.4423 84.804 72.5357H77.8942C77.9134 72.8532 78.0094 73.152 78.1437 73.4322C78.2973 73.6936 78.4892 73.9178 78.7388 74.1232C78.9691 74.31 79.257 74.4594 79.5449 74.5714C79.8328 74.6835 80.1591 74.7395 80.4854 74.7395C81.0612 74.7395 81.5411 74.6461 81.9249 74.4407C82.3088 74.2353 82.6351 73.9364 82.8846 73.5816L84.4009 74.7582C83.4988 75.9348 82.2128 76.5325 80.5046 76.5325C79.7944 76.5325 79.1418 76.4204 78.5468 76.215C77.971 76.0095 77.4528 75.692 76.9921 75.2811C76.5507 74.8703 76.2052 74.3847 75.9748 73.843C75.7445 73.2641 75.6101 72.6104 75.6101 71.882C75.6101 71.1723 75.7253 70.5186 75.9748 69.9397C76.2244 69.342 76.5698 68.8564 76.9921 68.4456C77.4144 68.0347 77.9326 67.6985 78.5084 67.4744C79.1226 67.2316 79.7752 67.1195 80.4278 67.1195C81.0612 67.1195 81.637 67.2316 82.1745 67.437C82.7119 67.6238 83.1917 67.9413 83.5756 68.3522C83.9595 68.7444 84.2666 69.2487 84.4777 69.8463C84.708 70.4439 84.8232 71.135 84.8232 71.9381ZM92.5583 75.1317H92.5008C92.2704 75.5239 91.9057 75.8601 91.4067 76.1216C90.9077 76.3644 90.3318 76.4951 89.6793 76.4951C89.3146 76.4951 88.9307 76.4391 88.5276 76.3457C88.1437 76.2523 87.7599 76.1029 87.4336 75.8975C87.1073 75.6733 86.8194 75.3745 86.6082 75.0383C86.3971 74.6835 86.2819 74.2353 86.2819 73.731C86.2819 73.0586 86.4739 72.5357 86.8578 72.1435C87.2416 71.7513 87.7407 71.4525 88.3549 71.2283C88.9691 71.0229 89.6217 70.8922 90.3702 70.8175C91.0996 70.7428 91.829 70.7054 92.5391 70.7054V70.4813C92.5391 69.921 92.328 69.5101 91.9057 69.2673C91.5027 68.9872 91.0228 68.8564 90.447 68.8564C89.9672 68.8564 89.5065 68.9498 89.065 69.1553C88.6236 69.3607 88.2589 69.5848 87.971 69.8837L86.8002 68.5389C87.3184 68.072 87.9134 67.7172 88.5852 67.4744C89.257 67.2503 89.948 67.1195 90.6581 67.1195C91.4643 67.1195 92.1361 67.2316 92.6543 67.4557C93.1917 67.6798 93.5948 67.96 93.9019 68.3335C94.209 68.6884 94.4201 69.0992 94.5353 69.5288C94.6697 69.977 94.7272 70.4253 94.7272 70.8548V76.2523H92.5967L92.5583 75.1317ZM92.5199 72.2182H92.0017C91.637 72.2182 91.2531 72.2369 90.8501 72.2742C90.4662 72.2929 90.1015 72.3676 89.7368 72.4797C89.3913 72.5731 89.1034 72.7225 88.8923 72.9279C88.662 73.1147 88.5468 73.3761 88.5468 73.7123C88.5468 73.9178 88.5852 74.1045 88.6812 74.2539C88.7771 74.3847 88.9115 74.4967 89.065 74.5901C89.2186 74.6835 89.3913 74.7395 89.5833 74.7769C89.7752 74.8142 89.9672 74.8329 90.1591 74.8329C90.9461 74.8329 91.5411 74.6275 91.9441 74.2166C92.3472 73.8057 92.5583 73.2454 92.5583 72.5544V72.2182H92.5199ZM97.3184 67.381H99.4873V68.8564H99.5257C99.756 68.3522 100.121 67.9226 100.581 67.6051C101.042 67.2876 101.56 67.1195 102.174 67.1195C102.27 67.1195 102.366 67.1195 102.462 67.1382C102.558 67.1382 102.654 67.1569 102.731 67.1756V69.2113C102.597 69.1739 102.462 69.1553 102.328 69.1366C102.232 69.1179 102.117 69.1179 102.021 69.1179C101.503 69.1179 101.08 69.2113 100.773 69.3981C100.485 69.5662 100.236 69.7903 100.044 70.0704C99.8712 70.3132 99.756 70.5747 99.6793 70.8735C99.6217 71.1536 99.5833 71.3591 99.5833 71.5272V76.2897H97.3184C97.3184 76.271 97.3184 67.381 97.3184 67.381ZM106.531 62.2823V68.5203H106.589C106.704 68.3709 106.858 68.2214 107.031 68.0534C107.203 67.8853 107.414 67.7359 107.664 67.6051C107.933 67.4557 108.24 67.3437 108.528 67.269C108.892 67.1569 109.276 67.1195 109.641 67.1195C110.293 67.1195 110.869 67.2503 111.426 67.4931C111.963 67.7359 112.443 68.0534 112.827 68.4642C113.23 68.8938 113.537 69.3981 113.729 69.9397C113.94 70.5186 114.055 71.1536 114.055 71.77C114.055 72.405 113.959 73.0213 113.729 73.6189C113.537 74.1792 113.23 74.6835 112.846 75.113C112.462 75.5426 111.983 75.8788 111.445 76.1216C110.908 76.3644 110.274 76.4951 109.583 76.4951C108.95 76.4951 108.336 76.3644 107.76 76.0842C107.222 75.8227 106.762 75.4119 106.455 74.9076H106.416V76.2336H104.267V62.245H106.531V62.2823ZM111.752 71.7886C111.752 71.4525 111.695 71.0976 111.579 70.7801C111.483 70.4439 111.33 70.1264 111.1 69.8463C110.888 69.5661 110.601 69.342 110.293 69.1926C109.967 69.0245 109.583 68.9312 109.142 68.9312C108.72 68.9312 108.355 69.0245 108.029 69.1926C107.702 69.3607 107.414 69.5848 107.184 69.865C106.954 70.1451 106.781 70.4626 106.647 70.7988C106.531 71.135 106.474 71.4898 106.474 71.826C106.474 72.1622 106.531 72.517 106.647 72.8532C106.781 73.1894 106.954 73.4882 107.184 73.7683C107.414 74.0485 107.702 74.2539 108.029 74.4407C108.355 74.6088 108.739 74.6835 109.142 74.6835C109.583 74.6835 109.967 74.5901 110.293 74.422C110.62 74.2539 110.888 74.0298 111.1 73.7497C111.311 73.4695 111.464 73.1707 111.579 72.8158C111.695 72.4983 111.752 72.1435 111.752 71.7886ZM116.282 67.381H118.547V76.271H116.282V67.381ZM115.956 64.3741C115.956 64.0193 116.09 63.7018 116.359 63.4403C116.627 63.1601 116.992 63.0294 117.395 63.0294C117.817 63.0294 118.163 63.1601 118.432 63.4216C118.72 63.6644 118.873 63.9819 118.873 64.3741C118.873 64.7476 118.72 65.0838 118.432 65.3453C118.163 65.5881 117.798 65.7188 117.395 65.7188C116.973 65.7188 116.627 65.5881 116.359 65.3266C116.109 65.0651 115.956 64.729 115.956 64.3741ZM120.006 69.1553V67.381H121.599V64.8037H123.825V67.381H126.109V69.1553H123.844V73.2828C123.844 73.675 123.921 74.0111 124.055 74.2726C124.209 74.5341 124.535 74.6648 125.034 74.6648C125.188 74.6648 125.341 74.6461 125.533 74.6275C125.706 74.5901 125.86 74.5341 126.013 74.4781L126.09 76.215C125.86 76.2897 125.61 76.3457 125.361 76.383C125.092 76.4391 124.823 76.4577 124.574 76.4577C123.959 76.4577 123.48 76.383 123.096 76.215C122.712 76.0469 122.405 75.8227 122.194 75.5239C121.983 75.2251 121.829 74.8889 121.733 74.5341C121.656 74.1232 121.618 73.731 121.618 73.3201V69.1739H120.006V69.1553Z\"\n        fill=\"currentColor\"\n      />\n    </svg>\n  );\n}\n\nfunction Descript() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <path\n        d=\"M15 78.6357C15 79.9955 15.8789 80.8774 17.2337 80.8774L23.7599 80.8775C27.6531 80.8775 30.8378 79.5554 33.0031 77.2409H15V78.6357ZM23.7599 56.0001L17.2337 56C15.8789 56 15 56.882 15 58.2418V59.6366H33.0031C30.8378 57.3221 27.6531 56.0001 23.7599 56.0001ZM29.4553 71.9835C29.4553 73.0835 30.1693 73.7973 31.2701 73.7973H35.1807C35.624 72.6932 35.9219 71.4794 36.0603 70.1697H31.2701C30.1693 70.1697 29.4553 70.8833 29.4553 71.9835ZM24.0349 64.903C24.0349 66.0032 24.7489 66.7168 25.8497 66.7168H36.0603C35.9219 65.407 35.624 64.1932 35.1807 63.0892H25.8497C24.7489 63.0892 24.0349 63.8028 24.0349 64.903ZM25.8485 71.9835C25.8485 70.8833 25.1345 70.1697 24.0336 70.1697H15V73.7973H24.0336C25.1345 73.7973 25.8485 73.0837 25.8485 71.9835ZM20.4281 64.903C20.4281 63.8028 19.7141 63.0892 18.6132 63.0892H15V66.7168H18.6132C19.7141 66.7168 20.4281 66.0032 20.4281 64.903Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M50.3072 72.1704C48.3729 72.1704 47.2101 70.7781 47.2101 69.0607C47.2101 67.3433 48.3952 65.9511 50.3072 65.9511C52.2192 65.9511 53.4043 67.3433 53.4043 69.0607C53.4043 70.7781 52.2415 72.1704 50.3072 72.1704ZM53.1935 65.107C52.4212 64.1755 51.3245 63.6046 49.9633 63.6046C46.9207 63.6046 44.7324 66.0791 44.7324 69.1314C44.7324 72.1838 46.8999 74.6582 49.9633 74.6582C51.3245 74.6582 52.4212 74.0872 53.1935 73.1558V74.386H55.882V59.7317H53.1935V65.107ZM60.9269 68.0642C61.2177 66.6446 62.157 65.9227 63.3917 65.9227C64.6158 65.9227 65.5108 66.6769 65.7964 68.0642H60.9269ZM63.4588 63.4633C60.3151 63.4633 58.3597 65.9906 58.3597 69.0819C58.3597 72.2836 60.4492 74.6582 63.5547 74.6582C65.6965 74.6582 66.9957 73.6616 67.7998 72.4067L65.8004 71.1215C65.2978 71.8124 64.4935 72.1775 63.6314 72.1775C62.2212 72.1775 61.2768 71.5131 60.9549 70.1845H66.232L68.1545 70.2011C68.2274 69.8515 68.2704 69.4902 68.2704 69.0819C68.2704 66.3893 66.6218 63.4633 63.4588 63.4633ZM76.4919 68.8771C77.2218 69.389 77.6844 70.1567 77.6844 71.1697C77.6844 73.2169 76.31 74.6374 73.7404 74.6374C71.3223 74.6374 70.0256 73.3933 69.5093 72.1368L71.7288 70.8355L71.7502 70.9107C71.8422 71.1957 72.2666 72.1933 73.7006 72.1933C74.7363 72.1933 75.0551 71.7337 75.0551 71.3278L75.0486 71.2305C75.0207 71.0345 74.8819 70.7487 74.2584 70.5012L73.9558 70.3908C72.4208 69.8698 69.9161 69.4775 69.9161 66.9708C69.9161 64.7776 71.6284 63.6078 73.7404 63.6078C75.7154 63.6078 76.984 64.8416 77.4656 65.8016L75.2941 67.0753L75.2482 66.977C75.1127 66.7133 74.6667 66.0099 73.7604 66.0099C72.645 66.0099 72.5454 66.6576 72.5454 66.8455C72.5454 67.3574 73.0304 67.5876 74.0675 67.9043L74.8331 68.1326C75.2823 68.2707 75.7403 68.4334 76.2105 68.7012L76.4919 68.8771ZM84.0722 72.0053C85.1384 72.0053 85.9583 71.4718 86.3726 70.5968L88.5999 71.9361C87.7272 73.5414 86.1011 74.6582 84.0722 74.6582C80.9949 74.6582 78.8436 72.1891 78.8436 69.1435C78.8436 66.0976 81.0147 63.6286 84.0722 63.6286C86.0713 63.6286 87.6914 64.7272 88.5735 66.3111L86.3511 67.681C85.9287 66.8174 85.1154 66.2815 84.0722 66.2815C82.5173 66.2815 81.4132 67.5628 81.4132 69.1435C81.4132 70.7239 82.5071 72.0053 84.0722 72.0053ZM93.0657 65.6551C93.5475 64.3976 94.5289 63.6783 96.0069 63.6751V66.6637C94.3406 66.4946 93.1191 67.3426 93.0682 69.3488L93.0657 69.5903V74.2597H90.5696V63.8826H93.0657V65.6551ZM97.7176 74.2597V63.8825H100.214V74.2597H97.7176ZM97.7176 62.4976V59.7317H100.296V62.4976H97.7176ZM108.012 63.5712C110.837 63.5712 112.869 66.0244 112.869 69.0504C112.869 72.0764 110.856 74.5295 108.012 74.5295C106.748 74.5295 105.73 73.9635 105.013 73.0401V78.3898H102.516V63.8618H105.013V65.0606C105.73 64.1372 106.748 63.5712 108.012 63.5712ZM107.693 66.1241C106.038 66.1241 105.013 67.4342 105.013 69.0504C105.013 70.6665 106.019 71.9768 107.693 71.9768C109.366 71.9768 110.373 70.6665 110.373 69.0504C110.373 67.4342 109.347 66.1241 107.693 66.1241ZM120.302 66.4904H118.051V70.8354C118.051 72.1933 119.366 71.9008 120.302 71.9008V74.3449L120.054 74.3763C119.827 74.4 119.45 74.4284 118.947 74.4284L118.582 74.4206C116.841 74.3429 115.482 73.6495 115.482 70.8354V66.4904H113.749V63.9001H115.482V60.9756H118.051V63.9001H120.302V66.4904Z\"\n        fill=\"currentColor\"\n      />\n    </svg>\n  );\n}\n\nfunction Duolingo() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16318_96887)\">\n        <path\n          d=\"M105.611 67.9492C105.611 64.1701 108.49 61.5067 112.306 61.5067C116.121 61.5067 119 64.1701 119 67.9492C119 71.7283 116.121 74.3917 112.306 74.3917C108.49 74.3917 105.611 71.6923 105.611 67.9492ZM115.221 67.9492C115.221 66.1856 114.105 64.8899 112.342 64.8899C110.578 64.8899 109.462 66.1856 109.462 67.9492C109.462 69.7128 110.578 71.0085 112.342 71.0085C114.105 71.0085 115.221 69.7488 115.221 67.9492ZM103.092 64.9619C103.344 65.4658 103.452 66.0056 103.452 66.5815C103.452 67.9492 102.732 69.2089 101.58 70.1807C103.164 70.9365 104.1 72.7721 104.1 74.4996C104.1 77.7389 101.472 79.8984 97.4771 79.8984C93.482 79.8984 90.8546 77.7749 90.8546 74.4996C90.8186 72.7001 91.7904 71.0445 93.374 70.1807C92.1863 69.2089 91.5025 67.9492 91.5025 66.5815C91.5025 63.7382 93.7339 61.6507 97.2611 61.6507C99.3486 61.6507 99.9605 62.0106 101.148 62.0106C101.94 62.0466 102.768 61.8306 103.452 61.3987C103.704 61.2548 103.956 61.1468 104.243 61.1468C104.711 61.1468 104.963 61.6147 104.963 62.1905C105.071 63.4502 104.279 64.566 103.092 64.9619V64.9619ZM100.392 74.3917C100.392 72.952 99.2766 71.9442 97.5131 71.9442C95.7495 71.9442 94.6337 72.916 94.6337 74.3917C94.6337 75.7593 95.8574 76.8391 97.5131 76.8391C99.1687 76.8391 100.392 75.7593 100.392 74.3917ZM95.1736 66.7975C95.2096 68.0572 96.2893 69.0649 97.585 69.0289C98.8087 68.9929 99.7445 68.0212 99.8165 66.7975C99.8165 65.5018 98.8807 64.602 97.5131 64.602C96.1454 64.602 95.1736 65.4658 95.1736 66.7975V66.7975ZM89.127 68.2011V72.7001C89.127 73.5639 88.8031 73.9238 87.8673 73.9238H86.6076C85.6718 73.9238 85.3479 73.5639 85.3479 72.7001V68.3091C85.3479 67.1934 85.168 66.4015 84.7721 65.8977C84.3042 65.3218 83.5843 65.0339 82.8645 65.0699C82.1087 65.0339 81.3889 65.3578 80.885 65.8977C80.4531 66.4015 80.1651 67.1934 80.1651 68.2731V72.6641C80.1651 73.5639 79.7692 73.8878 78.9054 73.8878H77.6457C76.7819 73.8878 76.386 73.5639 76.386 72.6641V62.5864C76.386 62.0106 76.674 61.7586 77.1059 61.7586C77.7537 61.7586 78.6535 62.2985 79.3373 63.3423C80.3811 62.1905 81.8567 61.5427 83.4044 61.5427C85.2399 61.5427 86.7156 62.1905 87.6874 63.2703C88.6591 64.35 89.127 65.8257 89.127 68.2011ZM69.4756 58.0515C69.4756 56.8998 70.4474 56 71.5632 56H71.6351C72.7509 56.072 73.6147 57.0438 73.5427 58.1595C73.4707 59.2752 72.4989 60.139 71.3832 60.067C70.3035 60.0311 69.4756 59.1313 69.4756 58.0515V58.0515ZM69.7276 72.7001V63.2343C69.7276 62.3705 70.0515 61.9746 70.9873 61.9746H72.247C73.1828 61.9746 73.5067 62.3345 73.5067 63.2343V72.7001C73.5067 73.5639 73.1828 73.9238 72.247 73.9238H70.9873C70.0515 73.9238 69.7276 73.5639 69.7276 72.7001ZM63.0692 72.7001V60.8229C63.0692 57.8356 64.7248 56.144 66.1284 56.144C66.5603 56.144 66.8483 56.4319 66.8483 56.9718V72.7001C66.8483 73.5999 66.4884 73.9238 65.5886 73.9238H64.3289C63.4651 73.9238 63.0692 73.5999 63.0692 72.7001V72.7001ZM47.5208 67.9492C47.5208 64.1701 50.4001 61.5067 54.2152 61.5067C58.0303 61.5067 60.9097 64.1701 60.9097 67.9492C60.9097 71.7283 58.0303 74.3917 54.2152 74.3917C50.4001 74.3917 47.5208 71.6923 47.5208 67.9492ZM57.0946 67.9492C57.0946 66.1856 55.9788 64.8899 54.2152 64.8899C52.4517 64.8899 51.3359 66.1856 51.3359 67.9492C51.3359 69.7128 52.4517 71.0085 54.2152 71.0085C55.9788 71.0085 57.0946 69.7488 57.0946 67.9492ZM45.5773 63.2343V73.3119C45.5773 73.8878 45.2893 74.1397 44.8574 74.1397C44.2096 74.1397 43.3098 73.5999 42.662 72.5921C41.6542 73.7438 40.2145 74.3917 38.6669 74.3557C37.2272 74.3917 35.8596 73.8878 34.7798 72.916C33.6641 71.8363 33.0522 70.1807 33.0522 67.8052V63.2343C33.0522 62.3705 33.3761 61.9746 34.3119 61.9746H35.5716C36.5074 61.9746 36.8313 62.3345 36.8313 63.2343V67.4813C36.8313 68.921 37.0833 69.6768 37.5512 70.1807C37.9831 70.6126 38.6309 70.8645 39.2428 70.8285C39.9266 70.8285 40.5745 70.5766 41.0423 70.0727C41.5102 69.5688 41.7622 68.777 41.7622 67.5533V63.2343C41.7622 62.3345 42.1581 61.9746 43.0219 61.9746H44.2816C45.1814 61.9746 45.5773 62.3345 45.5773 63.2343V63.2343ZM30.4608 56.9718V73.3119C30.4608 73.8878 30.1729 74.1397 29.741 74.1397C29.0932 74.1397 28.1934 73.5999 27.5455 72.6281C26.7537 73.5639 25.1341 74.3917 23.2625 74.3917C19.5194 74.3917 17 71.6563 17 67.9492C17 64.2421 19.5914 61.5067 23.2625 61.5067C24.4862 61.5067 25.674 61.8666 26.7177 62.5505V60.8229C26.7177 57.8356 28.4093 56.144 29.777 56.144C30.2089 56.144 30.4608 56.4319 30.4608 56.9718V56.9718ZM26.7177 67.9492C26.7177 66.1136 25.422 64.8899 23.8024 64.8899C22.1828 64.8899 20.8511 66.1136 20.8511 67.9492C20.8511 69.7848 22.1468 71.0085 23.8024 71.0085C25.458 71.0085 26.7177 69.8207 26.7177 67.9492V67.9492Z\"\n          fill=\"currentColor\"\n        />\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16318_96887\">\n          <rect\n            fill=\"white\"\n            height=\"23.8984\"\n            transform=\"translate(17 56)\"\n            width=\"102\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction Faire() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10567)\">\n        <path\n          clipRule=\"evenodd\"\n          d=\"M27.254 65.2234L27.0762 65.312C26.5902 64.7098 26.128 64.1962 25.6894 63.7711C25.2509 63.346 24.8242 63.0332 24.4094 62.8324C24.2079 62.738 23.8434 62.6583 23.316 62.5933C22.7885 62.5284 22.1752 62.4959 21.4759 62.4959C21.3573 62.4959 21.221 62.4989 21.067 62.5048C20.9129 62.5107 20.7647 62.5166 20.6225 62.5225C20.4803 62.5284 20.3469 62.5343 20.2225 62.5402C20.098 62.5461 20.0062 62.549 19.9469 62.549C19.935 62.6199 19.9202 62.6907 19.9024 62.7616C19.8847 62.8324 19.8699 62.9151 19.858 63.0095C19.8461 63.104 19.8343 63.225 19.8224 63.3726C19.8106 63.5202 19.7987 63.7003 19.7869 63.9128C19.775 64.3261 19.7661 64.7777 19.7602 65.2677C19.7543 65.7577 19.7513 66.2212 19.7513 66.658V68.3406H20.0713C20.261 68.3406 20.4714 68.3347 20.7025 68.3229C20.9336 68.3111 21.1736 68.2963 21.4225 68.2786C21.6714 68.2609 21.8789 68.2343 22.0448 68.1989C22.4715 68.1045 22.8093 67.9805 23.0582 67.827C23.3071 67.6735 23.5026 67.4905 23.6449 67.2779C23.7871 67.0654 23.8879 66.8322 23.9471 66.5783C24.0064 66.3245 24.0597 66.05 24.1071 65.7548H24.3205V71.4578H24.1071C24.0123 71.0799 23.876 70.6814 23.6982 70.2623C23.5204 69.8431 23.3071 69.5213 23.0582 69.297C22.833 69.0963 22.593 68.9457 22.3381 68.8454C22.0833 68.745 21.784 68.683 21.4403 68.6594C21.2625 68.6476 21.1084 68.6387 20.9781 68.6328C20.8477 68.6269 20.7232 68.624 20.6047 68.624H19.7513V70.8202C19.7513 71.1508 19.7543 71.4548 19.7602 71.7323C19.7661 72.0098 19.7691 72.2489 19.7691 72.4496C19.781 72.8274 19.8017 73.1846 19.8313 73.5211C19.861 73.8576 19.9291 74.1085 20.0358 74.2738C20.1425 74.4391 20.3232 74.5661 20.578 74.6546C20.8329 74.7432 21.2033 74.7993 21.6892 74.8229V75H16V74.8229C16.2963 74.7757 16.5719 74.6989 16.8267 74.5926C17.0815 74.4864 17.2919 74.3388 17.4579 74.1499C17.5171 74.079 17.5645 73.9757 17.6001 73.8399C17.6356 73.7041 17.6682 73.5477 17.6979 73.3706C17.7275 73.1935 17.7482 73.0075 17.7601 72.8127C17.772 72.6178 17.7779 72.426 17.7779 72.2371C17.7779 72.0718 17.7808 71.8474 17.7868 71.564C17.7927 71.2807 17.7986 70.9707 17.8045 70.6342C17.8105 70.2977 17.8134 69.9523 17.8134 69.5981V65.1172C17.8134 64.9046 17.8105 64.6862 17.8045 64.4619C17.7986 64.2375 17.7868 64.025 17.769 63.8243C17.7512 63.6235 17.7216 63.4435 17.6801 63.2841C17.6386 63.1247 17.5823 63.0095 17.5112 62.9387C17.3334 62.7498 17.1438 62.6287 16.9423 62.5756C16.7408 62.5225 16.48 62.4723 16.16 62.4251V62.248H26.045L27.254 65.2234ZM46.6803 75V74.8229C46.7158 74.8229 46.8018 74.8111 46.9381 74.7875C47.0744 74.7639 47.2166 74.7225 47.3647 74.6635C47.5129 74.6044 47.6433 74.5218 47.7559 74.4155C47.8685 74.3093 47.9248 74.1735 47.9248 74.0082C47.9248 73.9019 47.8922 73.7277 47.827 73.4857C47.7618 73.2436 47.67 72.9485 47.5514 72.6001C47.4329 72.2518 47.2966 71.8651 47.1425 71.4401C46.9884 71.015 46.8225 70.5722 46.6447 70.1117H41.9156C41.7378 70.5604 41.5659 70.9884 41.4 71.3958C41.234 71.8031 41.0681 72.2134 40.9022 72.6267C40.6533 73.2643 40.5288 73.713 40.5288 73.9728C40.5288 74.1262 40.5762 74.2532 40.671 74.3535C40.7659 74.4539 40.8873 74.5366 41.0355 74.6015C41.1837 74.6664 41.3437 74.7137 41.5155 74.7432C41.6874 74.7727 41.8504 74.7993 42.0044 74.8229V75H38.2176V74.8052C38.5257 74.7698 38.7894 74.6871 39.0087 74.5572C39.228 74.4273 39.3554 74.3388 39.391 74.2916C39.4739 74.2089 39.6102 74.0141 39.7999 73.7071C39.9895 73.4001 40.2206 72.9455 40.4932 72.3433C40.7422 71.7884 41.0207 71.1567 41.3288 70.4482C41.637 69.7398 41.9541 69.0107 42.28 68.2609C42.606 67.5111 42.9289 66.7555 43.249 65.9939C43.569 65.2323 43.8712 64.5209 44.1557 63.8597L43.9779 63.47C44.1912 63.3756 44.3838 63.2634 44.5557 63.1335C44.7276 63.0036 44.8787 62.8678 45.0091 62.7262C45.1394 62.5845 45.2491 62.4487 45.338 62.3188C45.4269 62.1889 45.495 62.0827 45.5424 62H45.6847C46.0521 62.98 46.4017 63.9099 46.7336 64.7895C47.0655 65.6692 47.3825 66.5163 47.6848 67.3311C47.987 68.1458 48.2804 68.9339 48.5648 69.6955C48.8493 70.4571 49.1337 71.2098 49.4182 71.9537C49.5486 72.3197 49.6701 72.6237 49.7827 72.8658C49.8953 73.1079 50.0227 73.3824 50.1649 73.6894C50.1886 73.7366 50.242 73.8193 50.3249 73.9373C50.4079 74.0554 50.5175 74.1764 50.6538 74.3004C50.7901 74.4244 50.959 74.5336 51.1605 74.6281C51.362 74.7225 51.5991 74.7757 51.8717 74.7875V75H46.6803ZM44.3512 64.267C44.2801 64.4205 44.1764 64.6626 44.0401 64.9932C43.9038 65.3238 43.7349 65.7252 43.5334 66.1975C43.3319 66.6698 43.1097 67.2041 42.8667 67.8004C42.6237 68.3967 42.36 69.0431 42.0756 69.7398H46.5025C46.301 69.2084 46.0965 68.6771 45.8891 68.1458C45.6817 67.6144 45.4802 67.1038 45.2846 66.6138C45.0891 66.1237 44.9113 65.6751 44.7513 65.2677C44.5913 64.8604 44.4579 64.5268 44.3512 64.267ZM69.3601 75H63.9731V74.8229C64.2694 74.7757 64.545 74.6989 64.7998 74.5926C65.0546 74.4864 65.271 74.3329 65.4487 74.1322C65.508 74.0613 65.5525 73.9609 65.5821 73.8311C65.6117 73.7012 65.6354 73.5477 65.6532 73.3706C65.671 73.1935 65.6828 73.0075 65.6888 72.8127C65.6947 72.6178 65.6976 72.426 65.6976 72.2371C65.6976 72.0718 65.7006 71.8474 65.7065 71.564C65.7125 71.2807 65.7184 70.9707 65.7243 70.6342C65.7302 70.2977 65.7332 69.9523 65.7332 69.5981V64.4796C65.7332 64.267 65.7243 64.0693 65.7065 63.8862C65.6888 63.7032 65.6621 63.5379 65.6265 63.3903C65.591 63.2427 65.5376 63.1276 65.4665 63.045C65.3006 62.8442 65.0961 62.6996 64.8532 62.611C64.6102 62.5225 64.3346 62.4605 64.0264 62.4251V62.248H69.3423V62.4251C69.0934 62.4605 68.8267 62.5254 68.5423 62.6199C68.2578 62.7144 68.0385 62.9033 67.8844 63.1866C67.7778 63.3874 67.7215 63.6412 67.7155 63.9482C67.7096 64.2552 67.7007 64.5445 67.6889 64.8161C67.6889 65.1113 67.6859 65.4035 67.68 65.6928C67.6741 65.9821 67.6711 66.2743 67.6711 66.5695V72.5027C67.6711 72.8451 67.677 73.1757 67.6889 73.4946C67.7007 73.8134 67.7541 74.0377 67.8489 74.1676C67.9911 74.3683 68.2163 74.5218 68.5245 74.6281C68.8326 74.7343 69.1112 74.7993 69.3601 74.8229V75ZM96.2712 75H92.6266C92.5199 74.8937 92.4429 74.814 92.3955 74.7609C92.3481 74.7078 92.2947 74.6458 92.2355 74.5749C92.1762 74.5041 92.1021 74.4008 92.0132 74.265C91.9243 74.1292 91.7851 73.9255 91.5954 73.654C91.3702 73.3233 91.1717 73.0252 90.9998 72.7595C90.828 72.4939 90.6531 72.2312 90.4754 71.9714C90.2976 71.7116 90.105 71.4489 89.8975 71.1832C89.6901 70.9176 89.4442 70.6194 89.1597 70.2888C88.9227 70.0173 88.6649 69.7634 88.3863 69.5272C88.1078 69.2911 87.8145 69.1435 87.5063 69.0845C87.2811 69.0372 87.1092 69.0136 86.9907 69.0136C86.884 69.0136 86.7477 69.0077 86.5818 68.9959V70.9973C86.5818 71.564 86.5877 72.0422 86.5996 72.4319C86.6114 72.8097 86.6233 73.1344 86.6351 73.406C86.647 73.6776 86.7122 73.9019 86.8307 74.079C86.9255 74.2325 87.1092 74.389 87.3818 74.5484C87.6545 74.7078 88.0337 74.7993 88.5197 74.8229V75H82.8305V74.8229C83.1268 74.7757 83.4112 74.7048 83.6839 74.6104C83.9565 74.5159 84.1698 74.3742 84.3239 74.1853C84.3832 74.1144 84.4306 74.0082 84.4661 73.8665C84.5017 73.7248 84.5283 73.5654 84.5461 73.3883C84.5639 73.2112 84.5787 73.0223 84.5906 72.8215C84.6024 72.6208 84.6084 72.426 84.6084 72.2371C84.6084 72.0718 84.6113 71.8474 84.6172 71.564C84.6232 71.2807 84.6291 70.9707 84.635 70.6342C84.641 70.2977 84.6439 69.9523 84.6439 69.5981V65.1172C84.6439 64.9046 84.641 64.6891 84.635 64.4707C84.6291 64.2523 84.6172 64.0456 84.5995 63.8508C84.5817 63.656 84.5521 63.4789 84.5106 63.3195C84.4691 63.1601 84.4128 63.045 84.3417 62.9741C84.1639 62.7852 83.9654 62.6583 83.7461 62.5933C83.5268 62.5284 83.2572 62.4723 82.9371 62.4251V62.248H83.6661C84.0691 62.248 84.5254 62.245 85.035 62.2391C85.5447 62.2332 86.0544 62.2302 86.564 62.2302H87.8085C88.6027 62.2302 89.3079 62.2539 89.9242 62.3011C90.5405 62.3483 91.1035 62.5077 91.6132 62.7793C92.1347 63.0509 92.5555 63.4198 92.8755 63.8862C93.1955 64.3526 93.3555 64.9401 93.3555 65.6485C93.3555 66.0854 93.2755 66.478 93.1155 66.8263C92.9555 67.1746 92.7422 67.4816 92.4755 67.7473C92.2088 68.0129 91.8977 68.2402 91.5421 68.4292C91.1865 68.6181 90.8132 68.7775 90.422 68.9074V68.9605C90.6235 69.0668 90.8191 69.2203 91.0087 69.421C91.1984 69.6217 91.3821 69.846 91.5599 70.094C91.868 70.5427 92.2029 71.0268 92.5644 71.5463C92.9259 72.0659 93.2488 72.5263 93.5333 72.9278C93.9719 73.5418 94.3985 73.9905 94.8134 74.2738C95.2282 74.5572 95.7142 74.7402 96.2712 74.8229V75ZM91.311 65.5422C91.311 64.9519 91.1628 64.4264 90.8665 63.9659C90.5702 63.5054 90.1376 63.1394 89.5686 62.8678C89.2842 62.738 88.9849 62.6435 88.6708 62.5845C88.3567 62.5254 88.0278 62.4959 87.6841 62.4959C87.4352 62.4959 87.2337 62.5018 87.0796 62.5136C86.9255 62.5254 86.807 62.5372 86.724 62.549C86.7122 62.6199 86.7003 62.6819 86.6885 62.735C86.6766 62.7881 86.6677 62.856 86.6618 62.9387C86.6559 63.0213 86.65 63.1365 86.644 63.2841C86.6381 63.4317 86.6292 63.6412 86.6174 63.9128C86.6055 64.3261 86.5966 64.7925 86.5907 65.312C86.5848 65.8315 86.5818 66.3333 86.5818 66.8174V68.7657C87.0678 68.7657 87.5211 68.745 87.9419 68.7037C88.3626 68.6624 88.7686 68.5767 89.1597 68.4469C89.539 68.3288 89.8649 68.1694 90.1376 67.9687C90.4102 67.7679 90.6324 67.5406 90.8043 67.2868C90.9761 67.0329 91.1035 66.7584 91.1865 66.4632C91.2695 66.168 91.311 65.861 91.311 65.5422ZM120 71.6172L119.111 75H108.23V74.8229C108.527 74.7757 108.802 74.6989 109.057 74.5926C109.312 74.4864 109.522 74.3388 109.688 74.1499C109.748 74.079 109.795 73.9757 109.831 73.8399C109.866 73.7041 109.899 73.5477 109.928 73.3706C109.958 73.1935 109.979 73.0075 109.991 72.8127C110.002 72.6178 110.008 72.426 110.008 72.2371C110.008 72.0718 110.011 71.8474 110.017 71.564C110.023 71.2807 110.029 70.9707 110.035 70.6342C110.041 70.2977 110.044 69.9523 110.044 69.5981C110.044 69.2321 110.044 68.8896 110.044 68.5708V65.1172C110.044 64.9046 110.041 64.6862 110.035 64.4619C110.029 64.2375 110.017 64.025 109.999 63.8243C109.982 63.6235 109.952 63.4435 109.911 63.2841C109.869 63.1247 109.813 63.0095 109.742 62.9387C109.564 62.7498 109.374 62.6287 109.173 62.5756C108.971 62.5225 108.71 62.4723 108.39 62.4251V62.248H118.204L119.413 65.1703L119.236 65.2589C118.275 64.0663 117.375 63.2634 116.533 62.8501C116.332 62.7557 115.958 62.673 115.413 62.6022C114.868 62.5313 114.204 62.4959 113.422 62.4959C113.173 62.4959 112.915 62.5048 112.648 62.5225C112.382 62.5402 112.189 62.5609 112.071 62.5845C112.047 62.7734 112.026 63.163 112.008 63.7534C111.991 64.3438 111.982 65.0286 111.982 65.8079C111.982 66.2566 111.982 66.6344 111.982 66.9414C111.982 67.2484 111.985 67.4993 111.991 67.6941C111.997 67.889 112 68.0395 112 68.1458C112 68.2402 112 68.3052 112 68.3406C112.059 68.3406 112.177 68.3406 112.355 68.3406C112.533 68.3406 112.737 68.3347 112.968 68.3229C113.2 68.3111 113.431 68.2963 113.662 68.2786C113.893 68.2609 114.086 68.2343 114.24 68.1989C114.595 68.1163 114.892 68.0041 115.129 67.8624C115.366 67.7207 115.558 67.5495 115.706 67.3488C115.855 67.148 115.973 66.9149 116.062 66.6492C116.151 66.3835 116.231 66.0854 116.302 65.7548H116.515V71.3338H116.302C116.207 70.9559 116.062 70.5663 115.866 70.1649C115.671 69.7634 115.466 69.4623 115.253 69.2616C115.063 69.0963 114.835 68.9605 114.569 68.8542C114.302 68.748 113.991 68.683 113.635 68.6594C113.457 68.6476 113.309 68.6387 113.191 68.6328C113.072 68.6269 112.954 68.624 112.835 68.624C112.728 68.624 112.61 68.624 112.48 68.624C112.361 68.624 112.207 68.624 112.017 68.624C111.994 68.7893 111.982 69.0313 111.982 69.3501C111.982 69.6689 111.982 69.9995 111.982 70.342C111.982 70.4955 111.982 70.6726 111.982 70.8733C111.982 71.074 111.982 71.2747 111.982 71.4755C111.982 71.6644 111.985 71.8445 111.991 72.0157C111.997 72.1869 112 72.3315 112 72.4496C112.011 72.8274 112.032 73.1846 112.062 73.5211C112.091 73.8576 112.16 74.1085 112.266 74.2738C112.373 74.4391 112.628 74.5572 113.031 74.6281C113.434 74.6989 113.872 74.7343 114.346 74.7343C114.548 74.7343 114.806 74.7284 115.12 74.7166C115.434 74.7048 115.763 74.6753 116.106 74.6281C116.486 74.5808 116.835 74.4893 117.155 74.3535C117.475 74.2178 117.784 74.0259 118.08 73.7779C118.376 73.53 118.664 73.2259 118.942 72.8658C119.221 72.5057 119.508 72.0718 119.804 71.564L120 71.6172Z\"\n          fill=\"currentColor\"\n          fillRule=\"evenodd\"\n        />\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16329_10567\">\n          <rect\n            fill=\"white\"\n            height=\"13\"\n            transform=\"translate(16 62)\"\n            width=\"104\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction _Gainsight() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10576)\">\n        <mask\n          height=\"25\"\n          id=\"mask0_16329_10576\"\n          maskUnits=\"userSpaceOnUse\"\n          style={{ maskType: \"luminance\" }}\n          width=\"112\"\n          x=\"12\"\n          y=\"56\"\n        >\n          <path d=\"M124 56H12V80.2945H124V56Z\" fill=\"white\" />\n        </mask>\n        <g mask=\"url(#mask0_16329_10576)\">\n          <path\n            d=\"M21.7226 68.1472H26.5958V71.7217C25.2552 72.6792 23.6441 73.1842 21.9967 73.1634C18.1005 73.1574 15.515 70.2978 15.515 66.348V66.2944C15.515 62.6485 18.1839 59.5744 21.6929 59.5744C22.6773 59.5432 23.6582 59.7077 24.5786 60.0585C25.499 60.4093 26.3406 60.9393 27.0546 61.6178L29.1575 59.08C27.1975 57.4178 25.1541 56.4885 21.8299 56.4885C20.5323 56.4732 19.2447 56.718 18.0433 57.2085C16.8418 57.699 15.7508 58.4251 14.8346 59.3441C13.9183 60.2631 13.1955 61.3564 12.7087 62.5593C12.2218 63.7622 11.9809 65.0505 12.0001 66.348V66.4017C12.0001 71.96 15.9201 76.2076 21.8835 76.2076C24.8067 76.2045 27.6307 75.1469 29.8367 73.2289V65.234H21.7226V68.1472Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M37.4142 61.308C35.522 61.2794 33.6486 61.6871 31.9393 62.4995L32.8508 65.1506C34.142 64.5634 35.5431 64.2567 36.9615 64.251C39.2491 64.251 40.5002 65.3412 40.5002 67.331V67.5991C39.2179 67.1812 37.875 66.9799 36.5266 67.0034C33.1785 67.0034 30.7002 68.5285 30.7002 71.7157V71.7693C30.7002 74.6587 33.0832 76.2076 35.8176 76.2076C36.7001 76.2386 37.578 76.0686 38.385 75.7104C39.1921 75.3523 39.9072 74.8154 40.4764 74.1404V75.9276H43.747V67.3846C43.747 63.5421 41.6738 61.308 37.4262 61.308M40.5598 70.7089C40.5598 72.4961 38.9215 73.7293 36.747 73.7293C35.1921 73.7293 33.9649 72.9668 33.9649 71.6025V71.5489C33.9649 70.1608 35.1921 69.3149 37.2593 69.3149C38.3863 69.3144 39.5041 69.5162 40.5598 69.9106V70.7089Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M48.8892 61.5464H45.5947V75.9277H48.8892V61.5464Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M48.9958 56.2085H45.457V59.3421H48.9958V56.2085Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M54.1675 67.8136C54.1675 65.5795 55.502 64.2391 57.4084 64.2391C59.3147 64.2391 60.4884 65.5199 60.4884 67.748V75.9276H63.7828V66.777C63.7828 63.4289 61.9062 61.2485 58.6594 61.2485C57.7547 61.2412 56.864 61.4711 56.0758 61.9154C55.2877 62.3596 54.6297 63.0026 54.1675 63.7804V61.5463H50.873V75.9276H54.1675V67.8136Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M70.4485 73.5924C68.727 73.5156 67.0755 72.8893 65.7361 71.8051L64.2646 74.0392C66.0109 75.4137 68.1608 76.1757 70.3829 76.2077C73.3617 76.2077 75.7446 74.7124 75.7446 71.686V71.6324C75.7446 69.0468 73.3617 68.0936 71.2825 67.4621C69.5489 66.8962 68 66.4553 68 65.4247V65.3711C68 64.5251 68.7327 63.9234 70.0136 63.9234C71.4616 64.0175 72.86 64.4878 74.0706 65.2877L75.3753 62.9464C73.8053 61.914 71.9756 61.346 70.097 61.3081C67.2374 61.3081 64.9736 62.9702 64.9736 65.6987V65.7524C64.9736 68.4987 67.3566 69.3745 69.4655 69.9702C71.1574 70.4885 72.6825 70.8698 72.6825 71.9839V72.0434C72.6825 72.9966 71.8664 73.5924 70.4485 73.5924Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M80.0465 56.1609H76.5078V59.2945H80.0465V56.1609Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M76.6445 61.5464V75.9277H77.9552H79.939V75.1234V61.5464H76.6445Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M92.6223 63.6554C92.0332 62.88 91.2702 62.2538 90.3948 61.8275C89.5193 61.4011 88.5559 61.1865 87.5823 61.2009C85.9971 61.1773 84.4592 61.7402 83.2639 62.7816C82.0686 63.8229 81.3003 65.2692 81.1065 66.8426C81.0538 67.2117 81.026 67.5839 81.0231 67.9567V68.0103C80.9883 69.0631 81.2079 70.1088 81.6632 71.0587C82.1184 72.0087 82.796 72.8349 83.6384 73.4673C83.8622 73.6255 84.095 73.7707 84.3354 73.9022L84.5082 73.9916L89.6316 71.7933C89.4359 71.8476 89.2369 71.8894 89.0359 71.9184C88.8382 71.9432 88.6393 71.9571 88.4401 71.9601H88.1482C87.9582 71.9484 87.7692 71.9245 87.5823 71.8886C86.7991 71.7498 86.0752 71.3806 85.5031 70.8281C85.2712 70.593 85.0709 70.3287 84.9074 70.0418C84.8537 69.9464 84.8061 69.8511 84.7584 69.7558C84.6164 69.4525 84.5142 69.1321 84.4546 68.8026C84.4518 68.7669 84.4518 68.7311 84.4546 68.6954C84.4185 68.4648 84.4006 68.2317 84.401 67.9984V67.915C84.399 67.6311 84.425 67.3478 84.4784 67.069C84.4784 66.9856 84.5201 66.9081 84.538 66.8307C84.585 66.65 84.6447 66.4728 84.7167 66.3005C84.8172 66.0644 84.941 65.8389 85.0861 65.6273C85.3789 65.2102 85.754 64.8574 86.1882 64.5907C86.885 64.1834 87.6809 63.9772 88.4878 63.995C89.2653 64.0005 90.0284 64.2056 90.704 64.5907L90.9542 64.7396C91.1295 64.8552 91.2967 64.9826 91.4546 65.1209C91.7434 65.3838 91.9905 65.6892 92.1874 66.0264C92.2528 66.1405 92.3125 66.2578 92.3661 66.3779C92.44 66.542 92.5017 66.7112 92.5508 66.8843C92.6518 67.2471 92.7038 67.6218 92.7057 67.9984V68.052C92.7035 68.3921 92.6575 68.7305 92.5686 69.0588C92.4713 69.4319 92.3165 69.7876 92.1099 70.1133C92.0503 70.2026 91.9908 70.292 91.9252 70.3754C91.7929 70.5434 91.6474 70.7008 91.4903 70.846L91.2461 71.0545C91.1795 71.1137 91.1099 71.1694 91.0376 71.2213L90.8469 71.3405L95.9167 69.1064V61.4988H92.6223V63.6554Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M101.07 66.7889C101.101 66.6316 101.143 66.4763 101.195 66.3243C101.39 65.6921 101.788 65.1416 102.327 64.7574C102.589 64.5715 102.881 64.4305 103.19 64.3404C103.521 64.243 103.864 64.1948 104.209 64.1974C104.346 64.1882 104.483 64.1882 104.62 64.1974C104.868 64.2215 105.112 64.2756 105.347 64.3583C105.459 64.3967 105.569 64.4425 105.675 64.4953C105.789 64.5504 105.898 64.6142 106.002 64.686C106.019 64.705 106.04 64.7211 106.062 64.7336L109.636 63.2026V63.1728C109.589 63.1013 109.547 63.0298 109.493 62.9643C109.015 62.3714 108.402 61.9004 107.706 61.5897C107.011 61.2791 106.251 61.1377 105.49 61.177C104.577 61.1688 103.678 61.4019 102.884 61.8528C102.09 62.3037 101.429 62.9563 100.968 63.7447V56H97.6738V68.3557L101.052 66.9081\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M115.416 57.5488H112.121V61.8501V62.0586L115.416 60.6705V57.5488Z\"\n            fill=\"currentColor\"\n          />\n          <path\n            d=\"M90.2929 71.5728C90.0859 71.6613 89.8729 71.7349 89.6554 71.7933L84.532 73.9916C85.4747 74.4797 86.5206 74.7351 87.5822 74.7362C88.5806 74.7477 89.5661 74.5116 90.4509 74.0489C91.3356 73.5863 92.0919 72.9116 92.652 72.0852V73.1992C92.6927 74.1671 92.4393 75.1245 91.9252 75.9456C91.1865 77.0418 89.8937 77.6137 88.1005 77.6137C86.2826 77.6144 84.504 77.0844 82.9831 76.0886L81.7559 78.5669C83.7026 79.7129 85.9251 80.3062 88.1839 80.2826C90.7695 80.2826 92.7831 79.6571 94.0937 78.3464C94.7471 77.6767 95.2294 76.8593 95.4997 75.9635C95.7919 74.9838 95.9325 73.9652 95.9167 72.943V69.1064L90.8171 71.2988C90.6444 71.4001 90.4716 71.4894 90.2929 71.5728Z\"\n            fill=\"#727272\"\n          />\n          <path\n            d=\"M106.062 64.7575C106.385 65.0101 106.653 65.3248 106.852 65.6829C107.05 66.0411 107.175 66.4354 107.218 66.8426C107.264 67.1303 107.288 67.421 107.29 67.7124V75.88H110.584V66.7234C110.623 65.4861 110.289 64.2656 109.625 63.2205L106.062 64.7575Z\"\n            fill=\"#727272\"\n          />\n          <path\n            d=\"M97.6738 75.8801H100.968V67.7661C100.967 67.4781 100.995 67.1907 101.052 66.9082L97.6738 68.3559V75.8801Z\"\n            fill=\"#727272\"\n          />\n          <path\n            d=\"M124 57.406V57.0784L117.018 59.9975L112.121 62.0588V71.9065C112.121 74.3728 113.17 75.5584 114.784 75.9575C115.268 76.0732 115.764 76.1292 116.262 76.1243C116.773 76.1282 117.283 76.0722 117.781 75.9575C118.29 75.832 118.778 75.6312 119.228 75.3618V72.6809C118.599 73.0076 117.9 73.1773 117.191 73.1754C116.071 73.1754 115.404 72.6571 115.404 71.3882V64.2392L123.965 60.6648L124 57.406Z\"\n            fill=\"#727272\"\n          />\n        </g>\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16329_10576\">\n          <rect\n            fill=\"white\"\n            height=\"24.2945\"\n            transform=\"translate(12 56)\"\n            width=\"112\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction _Handshake() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10574)\">\n        <path\n          d=\"M27.7222 58L26.3815 65.6109L22.4426 68.8235L24.3476 58H20.5307L17 77.9634H20.818L21.7985 72.4408L25.7499 69.2032L24.1914 77.9634H28.0095L31.5402 58H27.7222Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M36.7643 69.2503L35.1101 70.6764C33.8789 71.7313 33.2313 72.701 33.09 73.5002C32.9543 74.271 33.2108 74.8405 33.8971 74.8405C34.7613 74.8405 35.4898 74.0993 36.0336 73.3854L36.7643 69.2503ZM35.2806 77.9781L35.9914 75.9818H35.6334C34.9847 76.781 33.7683 78.2634 32.0092 78.2634C30.0403 78.2634 29.199 76.781 29.5569 74.7552C29.94 72.5874 31.1724 71.0197 33.603 69.0792L37.3184 66.1133L37.3891 65.7143C37.6216 64.4024 37.3537 63.718 36.5489 63.718C35.744 63.718 35.2355 64.4024 35.003 65.7143L34.6746 67.5684H30.9466L31.1336 66.5134C31.7185 63.2053 33.9313 61.1511 37.0026 61.1511C40.0739 61.1511 41.5606 63.2042 40.9711 66.5418L38.9486 77.9781H35.2806Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M40.208 77.9775L43.133 61.4365H46.8609L46.1597 63.3758H46.5177C47.6999 61.9219 48.9688 61.1511 50.3117 61.1511C51.803 61.1511 53.1767 62.3209 52.6124 65.5142L50.4086 77.9769H46.6807L48.6975 66.5691C48.8947 65.4573 48.7226 64.7434 47.887 64.7434C47.1116 64.7434 46.4733 65.4846 46.0447 66.0553L43.9365 77.9769L40.208 77.9775Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M60.3689 65.6862C60.1374 64.9734 59.69 64.4596 59.0048 64.4596C58.1394 64.4596 57.6209 65.3724 57.4042 66.599L56.3495 72.5593C56.1331 73.7859 56.3291 74.6988 57.1945 74.6988C57.8808 74.6988 58.5076 74.1861 58.9924 73.4722L60.3689 65.6862ZM61.9222 77.9779L58.1943 77.9784L58.8008 76.0675H58.4428C57.3859 77.3225 56.4146 78.2638 54.9532 78.2638C52.8952 78.2638 51.7918 76.0675 52.8154 70.2789L53.0172 69.1375C54.0411 63.3478 55.8012 61.1526 58.0676 61.1526C59.291 61.1526 60.0389 61.9802 60.4995 62.9215H60.8573L61.7249 58.0139H65.453L61.9222 77.9779Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M74.3699 67.0282L70.6418 67.0277L70.9188 65.4589C71.1059 64.4039 70.9337 63.6912 70.0683 63.6912C69.4116 63.6912 68.9637 64.205 68.8725 64.7177C68.7162 65.6021 69.1473 66.2001 69.8449 67.1425L71.8913 69.9083C72.7532 71.1065 73.5455 72.3615 73.2126 74.243C72.7942 76.6098 70.5324 78.2638 67.7599 78.2638C64.9871 78.2638 63.0456 76.7519 63.6009 73.6154L63.8529 72.1899H67.5807L67.2627 73.9872C67.0814 75.0137 67.4269 75.7549 68.2329 75.7549C68.9786 75.7549 69.3776 75.1842 69.4835 74.5851C69.6295 73.7575 69.1689 73.1596 68.4951 72.2467L66.4796 69.4809C65.6427 68.3111 64.929 67.1141 65.2676 65.2031C65.6154 63.2353 67.6834 61.1538 70.5769 61.1538C73.4702 61.1538 75.071 63.0648 74.5818 65.8306L74.3699 67.0282Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M103.406 77.9784L101.109 70.5631H100.751L99.44 77.9784H95.7119L99.2415 58.0139H102.971L101.211 67.9678H101.568L105.885 61.4368H109.882L104.786 69.1648L107.612 77.9784H103.406Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M112.046 68.4233H114.85L115.324 65.7427C115.53 64.5729 115.264 63.718 114.281 63.718C113.297 63.718 112.728 64.574 112.52 65.7427L112.046 68.4233ZM111.618 70.848L111.118 73.6719C110.912 74.8416 111.178 75.6965 112.162 75.6965C113.147 75.6965 113.715 74.8405 113.923 73.6719L114.18 72.2179H118.177C117.578 75.6113 114.931 78.2634 111.71 78.2634C108.489 78.2634 106.779 75.9534 107.788 70.2489L107.98 69.1656C108.989 63.4611 111.515 61.1511 114.735 61.1511C117.956 61.1511 119.726 63.4611 118.717 69.1656L118.419 70.848H111.618Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M73.3848 77.9773L76.9154 58.0139H80.6435L79.7508 63.0613H80.1088C81.2989 61.8915 82.3855 61.1503 83.7272 61.1503C85.2184 61.1503 86.3539 62.3201 85.7884 65.5134L83.5848 77.9762H79.8567L81.9191 66.3114C82.1164 65.1996 81.9442 64.4857 81.1086 64.4857C80.3332 64.4857 79.6949 65.2269 79.2663 65.7976L77.1127 77.9773H73.3848Z\"\n          fill=\"currentColor\"\n        />\n        <path\n          d=\"M92.2682 69.2503L90.6141 70.6764C89.3828 71.7313 88.7341 72.701 88.5939 73.5002C88.4583 74.271 88.7147 74.8405 89.401 74.8405C90.2663 74.8405 90.9936 74.0993 91.5374 73.3854L92.2682 69.2503ZM90.7845 77.9781L91.4952 75.9818H91.1374C90.4887 76.781 89.2722 78.2634 87.5131 78.2634C85.5443 78.2634 84.7028 76.781 85.0609 74.7552C85.444 72.5874 86.6763 71.0197 89.107 69.0792L92.8222 66.1133L92.893 65.7143C93.1244 64.4024 92.8577 63.718 92.0528 63.718C91.248 63.718 90.7384 64.4024 90.5068 65.7143L90.1786 67.5684H86.4505L86.6376 66.5134C87.2224 63.2053 89.4352 61.1511 92.5065 61.1511C95.5779 61.1511 97.0644 63.2042 96.4751 66.5418L94.4526 77.9781H90.7845Z\"\n          fill=\"currentColor\"\n        />\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16329_10574\">\n          <rect\n            fill=\"white\"\n            height=\"20.4\"\n            transform=\"translate(17 58)\"\n            width=\"102\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction IDEO() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <path\n        d=\"M102.877 57.6337C97.0828 57.6337 92.3774 62.2756 92.3774 68.0058C92.3774 73.7361 97.0828 78.378 102.877 78.378C108.671 78.378 113.377 73.7361 113.377 68.0058C113.377 62.2756 108.671 57.6337 102.877 57.6337ZM22.6221 58.4659V61.8272H30.4651V74.2164H22.6221V77.5777H41.7014V74.2164H33.8902V61.8272H41.7014V58.4659H22.6221ZM46.7596 58.4659V77.5452H55.915C61.8373 77.4811 65.9027 73.32 65.9027 67.9739C65.9027 62.6919 61.9014 58.6259 56.0751 58.4659H46.7596ZM70.0643 58.4659V77.5777H89.3362V74.2164H73.5219V69.7021H85.8467V66.3408H73.5219V61.8272H89.3362V58.4659H70.0643ZM102.877 61.2513C106.655 61.2513 109.76 64.2923 109.76 68.0377C109.76 71.7832 106.655 74.8241 102.877 74.8241C99.0996 74.8241 95.9944 71.7832 95.9944 68.0377C95.9944 64.2923 99.0676 61.2513 102.877 61.2513ZM50.1847 61.7634H55.9788C59.7243 61.8594 62.1893 64.4843 62.1893 68.0377C62.1573 71.6231 59.6925 74.2161 55.915 74.2801H50.1847V61.7634Z\"\n        fill=\"currentColor\"\n      />\n    </svg>\n  );\n}\n\nfunction KhanAcademy() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <path\n        clipRule=\"evenodd\"\n        d=\"M1.6155 61.895C1.1767 62.1158 1 62.4707 1 62.9552V72.8385C1 73.3229 1.1767 73.6336 1.6155 73.8987L9.95574 78.6489C10.147 78.7441 10.3576 78.7936 10.5712 78.7936C10.7848 78.7936 10.9955 78.7441 11.1868 78.6489L19.527 73.8987C19.9687 73.6336 20.1425 73.3229 20.1425 72.8385V62.9552C20.1425 62.3824 19.876 62.0717 19.527 61.895L11.1868 57.1447C10.9955 57.0495 10.7848 57 10.5712 57C10.3576 57 10.147 57.0495 9.95574 57.1447L1.6155 61.895ZM17.8943 65.8195C13.9362 65.8401 10.7321 69.1635 10.7321 73.2629V73.4367H10.4243V73.2629C10.4243 69.1635 7.21429 65.8401 3.24885 65.8195C3.22224 66.0798 3.20897 66.3412 3.20909 66.6029C3.20909 69.8085 5.17193 72.5414 7.92109 73.5898C8.76892 73.906 9.66672 74.0671 10.5716 74.0654C11.4762 74.0647 12.3736 73.9037 13.2221 73.5898C15.9698 72.5414 17.9341 69.8085 17.9341 66.6029C17.9342 66.3412 17.9209 66.0798 17.8943 65.8195ZM12.2376 62.2773C13.1576 63.1973 13.1576 64.689 12.2376 65.6091C11.3175 66.5292 9.82576 66.5292 8.90569 65.6091C7.98561 64.689 7.98561 63.1973 8.90569 62.2773C9.82576 61.3572 11.3175 61.3572 12.2376 62.2773Z\"\n        fill=\"currentColor\"\n        fillRule=\"evenodd\"\n      />\n      <path\n        d=\"M25.4532 62.0379C25.4524 61.9812 25.463 61.9251 25.4845 61.8727C25.5059 61.8203 25.5378 61.7728 25.5781 61.733C25.6184 61.6933 25.6663 61.6621 25.719 61.6413C25.7717 61.6206 25.828 61.6107 25.8846 61.6123H27.4425C27.555 61.6135 27.6626 61.6587 27.7422 61.7382C27.8217 61.8178 27.8669 61.9253 27.8681 62.0379V66.819L32.3297 61.789C32.3684 61.7354 32.4189 61.6915 32.4775 61.6608C32.536 61.6302 32.6009 61.6136 32.6669 61.6123H34.4339C34.5089 61.6096 34.583 61.6293 34.6467 61.669C34.7104 61.7087 34.7608 61.7664 34.7915 61.8349C34.8222 61.9034 34.8317 61.9794 34.8189 62.0534C34.8061 62.1273 34.7715 62.1957 34.7196 62.2499L30.093 67.4566L35.0509 73.3878C35.094 73.446 35.12 73.5152 35.1259 73.5874C35.1318 73.6596 35.1174 73.732 35.0843 73.7965C35.0512 73.8609 35.0008 73.9149 34.9387 73.9522C34.8766 73.9895 34.8053 74.0087 34.7329 74.0077H32.8054C32.7464 74.0131 32.687 74.0047 32.6318 73.9833C32.5766 73.9618 32.5271 73.9278 32.4873 73.884L27.8622 68.1825V73.5822C27.861 73.6947 27.8158 73.8022 27.7363 73.8818C27.6567 73.9613 27.5491 74.0065 27.4366 74.0077H25.8846C25.8285 74.0085 25.7728 73.998 25.7208 73.9769C25.6688 73.9558 25.6216 73.9245 25.5819 73.8848C25.5423 73.8452 25.5109 73.7979 25.4898 73.7459C25.4687 73.6939 25.4583 73.6383 25.4591 73.5822L25.4532 62.0379Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M36.3398 62.0023C36.3464 61.9009 36.3896 61.8055 36.4615 61.7337C36.5333 61.6619 36.6287 61.6186 36.7301 61.6121H38.1643C38.2663 61.6161 38.3631 61.6585 38.4352 61.7309C38.5073 61.8033 38.5494 61.9002 38.553 62.0023V66.3402C38.9609 65.9853 39.6692 65.6496 40.6425 65.6496C43.2459 65.6496 43.9541 67.4564 43.9541 69.5105V73.6187C43.9505 73.721 43.9082 73.8182 43.8358 73.8906C43.7634 73.963 43.6662 74.0053 43.5639 74.0089H42.1297C42.0267 74.0078 41.9283 73.9662 41.8556 73.8933C41.7829 73.8203 41.7417 73.7217 41.741 73.6187V69.4958C41.741 68.3634 41.2271 67.6728 40.2537 67.6728C39.2804 67.6728 38.765 68.2751 38.553 69.107V73.6187C38.553 73.8499 38.447 74.0089 38.1289 74.0089H36.7301C36.6277 74.0053 36.5306 73.963 36.4582 73.8906C36.3858 73.8182 36.3435 73.721 36.3398 73.6187V62.0023Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M48.4549 68.8405C48.989 68.8466 49.5198 68.9239 50.0334 69.0702C50.0688 68.0248 49.7684 67.53 48.9011 67.53C48.1248 67.5409 47.3522 67.6397 46.5981 67.8245C46.3331 67.9129 46.174 67.7185 46.1387 67.4711L45.959 66.5538C45.94 66.504 45.9319 66.4508 45.9352 66.3977C45.9386 66.3445 45.9533 66.2927 45.9785 66.2458C46.0036 66.1989 46.0386 66.1579 46.0809 66.1257C46.1233 66.0934 46.1721 66.0707 46.2241 66.059C47.1334 65.7946 48.0749 65.6574 49.0218 65.6511C51.5722 65.6511 52.1023 66.9764 52.1023 69.2101V73.6217C52.1015 73.7247 52.0604 73.8233 51.9877 73.8962C51.915 73.9692 51.8166 74.0107 51.7136 74.0119H51.1113C50.9641 74.0119 50.8639 73.9589 50.7564 73.7292L50.5267 73.1799C50.1883 73.5132 49.787 73.776 49.3461 73.9529C48.9053 74.1299 48.4337 74.2175 47.9587 74.2107C46.3301 74.2107 45.1963 73.1667 45.1963 71.413C45.1963 69.9552 46.3831 68.8405 48.4549 68.8405ZM48.5079 72.5586C49.2339 72.5586 49.8715 71.9917 49.9804 71.6913V70.4868C49.5981 70.3271 49.1888 70.2417 48.7745 70.235C47.835 70.235 47.3211 70.6767 47.3211 71.4027C47.3211 72.0977 47.7467 72.5586 48.5079 72.5586Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M53.9443 66.2189C53.9447 66.1158 53.9858 66.017 54.0585 65.944C54.1313 65.8709 54.23 65.8295 54.3331 65.8287H55.006C55.083 65.8213 55.16 65.8426 55.2223 65.8886C55.2845 65.9345 55.3276 66.0018 55.3432 66.0776L55.6377 66.8389C55.9589 66.4534 56.3638 66.1461 56.8215 65.9405C57.2793 65.7348 57.7778 65.6362 58.2794 65.652C60.8827 65.652 61.5557 67.4043 61.5557 69.3877V73.6211C61.5517 73.7233 61.5093 73.8203 61.437 73.8926C61.3646 73.965 61.2677 74.0073 61.1655 74.0113H59.7313C59.6283 74.0102 59.5298 73.9687 59.4571 73.8957C59.3844 73.8227 59.3433 73.7241 59.3425 73.6211V69.3877C59.3425 68.3261 58.917 67.6708 57.926 67.6708C57.5326 67.6611 57.1468 67.7805 56.8277 68.0108C56.5086 68.2411 56.2737 68.5696 56.159 68.946V73.6211C56.159 73.923 56.0353 74.0113 55.6451 74.0113H54.3345C54.2325 74.0073 54.1357 73.9649 54.0636 73.8925C53.9915 73.8202 53.9494 73.7232 53.9458 73.6211L53.9443 66.2189Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M65.7443 73.5521L71.2514 61.6353C71.2759 61.5775 71.3169 61.5281 71.3693 61.4935C71.4217 61.459 71.4832 61.4407 71.5459 61.4409H71.7241C71.7876 61.4372 71.8506 61.4541 71.9037 61.4891C71.9568 61.5242 71.9971 61.5755 72.0186 61.6353L77.4669 73.5521C77.4936 73.6012 77.5067 73.6566 77.5047 73.7124C77.5028 73.7682 77.4859 73.8225 77.4558 73.8696C77.4257 73.9167 77.3836 73.9549 77.3337 73.9801C77.2838 74.0053 77.2281 74.0167 77.1724 74.013H75.6424C75.3774 74.013 75.2537 73.907 75.13 73.6582L74.2612 71.7439H68.9676L68.1003 73.6582C68.0627 73.7637 67.9928 73.8548 67.9006 73.9185C67.8083 73.9821 67.6984 74.0152 67.5864 74.013H66.0462C65.99 74.0176 65.9336 74.007 65.8829 73.9822C65.8322 73.9574 65.7892 73.9194 65.7583 73.8723C65.7274 73.8251 65.7098 73.7705 65.7073 73.7141C65.7049 73.6578 65.7176 73.6018 65.7443 73.5521ZM73.3939 69.7811L71.6269 65.8849H71.5739L69.8349 69.7811H73.3939Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M82.0411 65.6528C83.3163 65.6528 84.3073 66.2021 85.0862 67.034C85.2629 67.2107 85.1746 67.4419 84.9979 67.623L84.2543 68.4373C84.0776 68.6317 83.8832 68.5433 83.7227 68.3843C83.3339 68.0118 82.8554 67.676 82.0941 67.676C80.8189 67.676 79.9339 68.667 79.9339 69.9245C79.9339 71.182 80.8012 72.1907 82.0764 72.1907C82.9791 72.1907 83.4576 71.6959 83.811 71.288C83.8748 71.2169 83.9627 71.1721 84.0577 71.1623C84.1528 71.1525 84.248 71.1784 84.3249 71.235L85.1216 71.908C85.3174 72.0847 85.4057 72.279 85.2688 72.497C84.5782 73.5763 83.4812 74.2139 82.0293 74.2139C79.638 74.2139 77.709 72.3909 77.709 69.9289C77.7031 67.5126 79.6144 65.6528 82.0411 65.6528Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M89.618 68.8405C90.1511 68.8469 90.6809 68.9242 91.1936 69.0702C91.2289 68.0248 90.9285 67.53 90.0612 67.53C89.2849 67.5409 88.5123 67.6397 87.7582 67.8245C87.4932 67.9129 87.3342 67.7185 87.2988 67.4711L87.1207 66.5538C87.1019 66.5039 87.094 66.4506 87.0976 66.3975C87.1011 66.3444 87.116 66.2926 87.1413 66.2457C87.1665 66.1988 87.2016 66.1579 87.244 66.1257C87.2864 66.0935 87.3352 66.0707 87.3872 66.059C88.2965 65.7946 89.238 65.6574 90.1849 65.6511C92.7353 65.6511 93.2654 66.9764 93.2654 69.2101V73.6217C93.2646 73.7247 93.2235 73.8233 93.1508 73.8962C93.0781 73.9692 92.9797 74.0107 92.8767 74.0119H92.2744C92.1272 74.0119 92.0256 73.9589 91.9195 73.7292L91.6898 73.1799C91.3513 73.5132 90.95 73.776 90.5092 73.9529C90.0684 74.1299 89.5968 74.2175 89.1218 74.2107C87.4932 74.2107 86.3594 73.1667 86.3594 71.413C86.3594 69.9552 87.5462 68.8405 89.618 68.8405ZM89.671 72.5586C90.397 72.5586 91.0346 71.9917 91.1435 71.6913V70.4868C90.7616 70.3274 90.3528 70.2419 89.939 70.235C89.001 70.235 88.4871 70.6767 88.4871 71.4027C88.4842 72.0977 88.9083 72.5586 89.671 72.5586Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M98.7096 65.6501C99.3788 65.6533 100.043 65.7667 100.675 65.9858V62.0101C100.682 61.9088 100.725 61.8133 100.797 61.7415C100.869 61.6697 100.964 61.6265 101.066 61.6199H102.5C102.602 61.6239 102.699 61.6663 102.771 61.7387C102.843 61.8111 102.885 61.908 102.889 62.0101V73.6192C102.888 73.7222 102.847 73.8208 102.774 73.8937C102.701 73.9667 102.603 74.0082 102.5 74.0094H101.845C101.649 74.0094 101.525 73.8503 101.454 73.6192L101.242 72.9816C100.911 73.3661 100.5 73.6747 100.039 73.8864C99.5775 74.098 99.0759 74.2078 98.5682 74.2082C96.3374 74.2082 94.6514 72.397 94.6514 69.9173C94.6514 67.5275 96.2711 65.6501 98.7096 65.6501ZM100.675 68.1297C100.162 67.8222 99.5742 67.6627 98.9761 67.6688C97.6302 67.6688 96.9396 68.7659 96.9396 69.9173C96.9396 71.0688 97.5949 72.1835 98.8686 72.1835C99.9317 72.1835 100.499 71.5106 100.675 71.0511V68.1297Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M108.431 65.6526C110.555 65.6526 112.184 67.2281 112.184 69.4413C112.184 69.5665 112.166 69.8492 112.149 69.9729C112.138 70.0709 112.094 70.1621 112.023 70.2303C111.951 70.2986 111.858 70.3393 111.76 70.3454H106.518C106.536 71.3541 107.367 72.239 108.554 72.239C109.191 72.2504 109.812 72.0378 110.308 71.6382C110.502 71.4777 110.714 71.4601 110.838 71.6382L111.529 72.5586C111.566 72.5933 111.595 72.6359 111.614 72.6833C111.633 72.7308 111.641 72.7818 111.638 72.8328C111.634 72.8837 111.62 72.9332 111.595 72.9777C111.57 73.0223 111.535 73.0607 111.493 73.0901C110.647 73.8192 109.565 74.2173 108.448 74.2107C106.004 74.2107 104.305 72.2626 104.305 69.9257C104.305 67.6184 106.004 65.6526 108.431 65.6526ZM109.953 68.8921C109.918 68.094 109.28 67.4755 108.378 67.4755C107.385 67.4755 106.749 68.0763 106.642 68.8921H109.953Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M113.499 66.2193C113.499 66.1162 113.54 66.0174 113.613 65.9443C113.686 65.8713 113.785 65.8299 113.888 65.8291H114.525C114.6 65.8216 114.675 65.8406 114.736 65.883C114.798 65.9253 114.843 65.9881 114.863 66.0603L115.157 66.8392C115.454 66.4615 115.835 66.1577 116.269 65.9518C116.704 65.7459 117.18 65.6434 117.66 65.6524C118.847 65.6524 119.427 66.0779 120.103 66.8922C120.458 66.5197 121.272 65.6524 122.742 65.6524C125.363 65.6524 125.981 67.3163 125.981 69.4411V73.6215C125.98 73.674 125.969 73.7257 125.948 73.7738C125.927 73.8218 125.897 73.8653 125.859 73.9015C125.821 73.9378 125.776 73.9662 125.727 73.9851C125.678 74.004 125.626 74.0131 125.574 74.0117H124.157C124.054 74.0105 123.956 73.969 123.883 73.8961C123.81 73.8231 123.769 73.7245 123.768 73.6215V69.3881C123.768 68.3264 123.378 67.6712 122.352 67.6712C121.165 67.6712 120.828 68.5208 120.828 68.5208C120.828 68.5208 120.863 68.9287 120.863 69.2997V73.6215C120.859 73.7236 120.817 73.8205 120.745 73.8929C120.673 73.9652 120.576 74.0077 120.474 74.0117H119.022C118.971 74.0129 118.92 74.0036 118.872 73.9845C118.824 73.9653 118.78 73.9366 118.744 73.9001C118.707 73.8636 118.679 73.8201 118.659 73.7722C118.64 73.7244 118.631 73.6731 118.632 73.6215V69.3881C118.632 68.3264 118.338 67.6712 117.286 67.6712C116.278 67.6712 115.905 68.3794 115.711 68.9463V73.6215C115.707 73.7236 115.665 73.8205 115.593 73.8929C115.521 73.9652 115.424 74.0077 115.322 74.0117H113.886C113.784 74.0073 113.688 73.9647 113.616 73.8924C113.545 73.8201 113.503 73.7233 113.499 73.6215V66.2193Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M126.828 66.3567C126.722 66.074 126.863 65.8252 127.181 65.8252H128.882C128.956 65.818 129.031 65.8372 129.092 65.8795C129.153 65.9218 129.198 65.9844 129.218 66.0563L130.69 70.9435H130.727L132.582 66.0563C132.706 65.8428 132.847 65.8252 133.096 65.8252H134.601C134.667 65.8179 134.733 65.8289 134.793 65.8568C134.852 65.8847 134.903 65.9285 134.94 65.9834C134.976 66.0383 134.997 66.1021 134.999 66.168C135.002 66.2338 134.986 66.2991 134.954 66.3567L130.138 77.9732C130.107 78.0429 130.058 78.1029 129.995 78.1465C129.933 78.1901 129.859 78.2157 129.783 78.2205H128.085C128.018 78.2265 127.951 78.214 127.89 78.1845C127.83 78.155 127.779 78.1095 127.742 78.053C127.706 77.9965 127.685 77.931 127.683 77.8638C127.681 77.7965 127.697 77.73 127.73 77.6713L129.377 73.5277L126.828 66.3567Z\"\n        fill=\"currentColor\"\n      />\n    </svg>\n  );\n}\n\nfunction Quizlet() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10577)\">\n        <path\n          clipRule=\"evenodd\"\n          d=\"M33.7341 59.391C39.2817 59.391 43.4682 63.4635 43.4682 68.6698C43.4682 71.0671 42.5521 73.1807 41.0605 74.7785L43.6507 77.6393H39.281L38.383 76.6186C37.0846 77.5084 35.4609 77.9228 33.7341 77.9228C28.2125 77.9228 24 73.8762 24 68.6702C24 63.3082 28.3697 59.391 33.7341 59.391ZM33.7341 74.3401C34.4662 74.3401 35.1205 74.1859 35.7487 73.9278L32.0066 69.7525H36.3766L38.3916 72.0468C39.1237 71.1441 39.4642 70.0618 39.4642 68.6698C39.4642 65.5517 37.0839 62.9996 33.7334 62.9996C30.384 62.9996 28.03 65.5255 28.03 68.6698C28.03 71.8658 30.384 74.3404 33.7337 74.3404L33.7341 74.3401ZM46.0126 64.6501H49.9636V72.073C49.9636 73.826 51.0629 74.4698 52.3713 74.4698C53.6794 74.4698 54.7787 73.8256 54.7787 72.073V64.6494H58.7301V72.4071C58.7297 76.2221 55.7471 78.0003 52.3713 78.0003C48.9956 78.0003 46.013 76.2221 46.013 72.4078V64.649L46.0126 64.6501ZM61.4307 77.64H65.3293V64.6494H61.4307V77.6393V77.64ZM61.0729 61.2605C61.0729 59.9843 62.126 59.001 63.3667 59.001C64.6354 59.001 65.6604 59.9843 65.6604 61.2605C65.6604 62.5099 64.6354 63.4939 63.3667 63.4939C62.126 63.4939 61.0729 62.5099 61.0729 61.2605ZM73.962 68.0263H67.9246V64.6501H80.6673L73.4001 74.2637H80.3005V77.64H66.6172L73.962 68.0263ZM82.4987 77.64H86.3974V59.6753H82.4984V77.6393L82.4987 77.64ZM88.6526 71.119C88.6526 66.9953 91.6359 64.3407 95.6392 64.3407C99.6688 64.3407 102.311 67.2789 102.311 70.9133C102.311 70.9133 102.311 71.641 102.233 72.2339H92.552C92.6306 73.7805 93.8071 74.7014 96.0316 74.7014C98.5439 74.7014 99.9566 73.954 100.715 73.4385V76.7893C99.4856 77.5625 98.1252 77.9752 95.8224 77.9752C91.3997 77.9752 88.6526 75.3205 88.6526 71.2481V71.119ZM98.3867 69.6757C98.3867 68.516 97.1832 67.5366 95.6392 67.5366C94.017 67.5366 92.6566 68.4902 92.578 69.6757H98.3867ZM105.301 68.1296H103.548V64.6501H105.301V59.6749H109.095V64.6494H112V68.1289H109.095V77.6396H105.301V68.1289V68.1296Z\"\n          fill=\"currentColor\"\n          fillRule=\"evenodd\"\n        />\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16329_10577\">\n          <rect\n            fill=\"white\"\n            height=\"19\"\n            transform=\"translate(24 59)\"\n            width=\"88\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nfunction Ramp() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <path\n        d=\"M110.286 55C110.481 55.0979 110.579 55.2937 110.775 55.3916C111.754 56.3706 112.708 57.3251 113.59 58.2061C113.492 61.0207 112.537 63.6149 111.167 66.0379C108.842 70.0027 105.073 72.9885 100.618 74.3591C99.37 74.7507 97.9995 75.0444 96.7513 75.0444C95.7723 74.0654 94.9157 73.2088 93.9367 72.2298C93.741 72.034 93.5452 71.9361 93.4473 71.6425C97.51 71.3488 101.475 69.6111 104.363 66.7966C106.394 64.8631 108.132 62.4402 109.111 59.8459C109.796 58.4019 110.188 56.7377 110.286 55Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M24.9927 61.2898C25.5801 60.7024 26.3388 60.2374 27.2199 60.2374C28.0031 60.1395 28.8597 60.2374 29.5449 60.7268C29.0555 61.7058 28.566 62.7582 28.101 63.7127C27.122 63.3211 25.9717 63.3211 25.1151 63.9085C24.5277 64.3001 24.0627 64.8875 23.769 65.5483C23.4753 66.3314 23.2795 67.188 23.2795 67.9712C23.2795 70.3942 23.2795 72.7192 23.2795 75.1177C22.2272 75.1177 21.0524 75.1177 20 75.1177C20 70.2718 20 65.4504 20 60.6045C21.0524 60.6045 22.1293 60.6045 23.1816 60.6045C23.1816 61.8527 23.1816 63.1253 23.1816 64.3735C23.6467 63.3211 24.1361 62.1708 24.9927 61.2898Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M32.4572 61.0939C33.7053 60.2128 35.3696 60.1149 36.8136 60.2128C37.9638 60.3107 39.2365 60.6044 40.191 61.3631C41.0721 62.0484 41.635 63.1987 41.8308 64.2755C42.0266 64.9608 42.0266 65.6216 42.0266 66.4048C42.0266 69.3172 42.0266 72.2052 42.0266 75.1176C40.9742 75.1176 39.8973 75.1176 38.8449 75.1176C38.8449 74.3344 38.8449 73.5757 38.8449 72.6947C38.5512 73.2821 38.1596 73.9429 37.6946 74.3344C36.8136 75.0197 35.7612 75.3868 34.7088 75.3868C33.3627 75.4847 31.8942 75.191 30.8419 74.4079C29.9608 73.8205 29.3979 72.7681 29.2021 71.6912C29.1042 70.8102 29.2021 69.8557 29.6916 68.9746C30.0832 68.2893 30.6705 67.8243 31.3313 67.4327C32.0166 67.0411 32.8732 66.8453 33.6564 66.6495C35.0025 66.3559 36.373 66.3559 37.6212 65.9643C38.1107 65.8664 38.6002 65.5727 38.7715 65.1811C39.0652 64.5937 38.9673 63.9329 38.5757 63.4434C38.1841 62.9539 37.5967 62.7581 37.0338 62.6603C36.1528 62.4645 35.2962 62.5624 34.513 62.9539C33.7298 63.3455 33.2648 64.1042 33.069 64.9853C32.1879 64.5937 31.2334 64.3 30.3524 64.0063C30.5971 62.9295 31.3803 61.7792 32.4572 61.0939ZM38.0617 67.5796C37.3765 68.069 36.5199 68.2648 35.6388 68.4606C34.8556 68.5585 34.1948 68.7543 33.5095 69.1459C33.0201 69.4396 32.5306 69.9291 32.4572 70.5899C32.3593 71.2752 32.4572 71.936 32.8487 72.5234C33.2403 73.0128 33.7298 73.2086 34.2927 73.3065C35.2717 73.5023 36.422 73.3065 37.2051 72.6212C37.9883 72.0339 38.4533 71.1773 38.6491 70.1983C38.9428 69.048 38.8449 67.7754 38.8449 66.5272C38.7225 66.8943 38.4289 67.2859 38.0617 67.5796Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M50.1527 60.9962C51.205 60.1151 52.6735 60.0172 53.9217 60.3109C54.9741 60.5067 55.953 61.2899 56.4425 62.2444C56.7362 62.636 56.8341 63.1255 57.0299 63.5905C57.3236 62.5381 57.911 61.5591 58.7676 60.8738C59.7465 60.1886 61.0926 60.0907 62.2429 60.2865C63.3932 60.4823 64.4701 61.0696 65.1553 62.0241C65.7427 62.8073 66.0364 63.7618 66.1343 64.7408C66.2322 65.2303 66.1343 65.7197 66.1343 66.2826C66.1343 69.2685 66.1343 72.1809 66.1343 75.1668C65.0819 75.1668 64.005 75.1668 62.9527 75.1668C62.9527 72.2543 62.9527 69.4643 62.9527 66.5519C62.9527 65.5729 62.8548 64.6184 62.2674 63.8352C61.8758 63.2478 61.215 62.9542 60.5297 62.9542C59.6486 62.8563 58.792 63.1499 58.2047 63.8352C57.4215 64.8142 57.3236 66.0624 57.2257 67.2127C57.2257 69.8314 57.2257 72.5236 57.2257 75.1423C56.1733 75.1423 55.0964 75.1423 54.044 75.1423C54.044 72.3278 54.044 69.5377 54.044 66.7232C54.044 65.8421 53.9462 64.9855 53.6525 64.2023C53.3588 63.615 52.8693 63.1499 52.3064 63.052C51.4253 62.8563 50.4708 62.9542 49.7855 63.4436C49.1982 63.9331 48.9045 64.5939 48.7331 65.2792C48.5374 65.9645 48.4395 66.6253 48.4395 67.3106C48.4395 69.9293 48.4395 72.5236 48.4395 75.1423C47.3871 75.1423 46.3102 75.1423 45.2578 75.1423C45.2578 70.2964 45.2578 65.475 45.2578 60.6291C46.3102 60.6291 47.3871 60.6291 48.4395 60.6291C48.4395 61.6815 48.4395 62.8563 48.4395 63.9086C48.6842 62.7339 49.1737 61.6815 50.1527 60.9962Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M74.6019 60.996C75.5809 60.3107 76.927 60.1149 78.0773 60.2128C79.4233 60.3107 80.7939 60.996 81.7484 61.9505C82.8008 63.0029 83.486 64.3735 83.7797 65.8174C84.0734 67.2614 84.0734 68.7299 83.6818 70.0759C83.3881 71.422 82.7029 72.7926 81.6505 73.845C80.5981 74.8239 79.2275 75.3868 77.8815 75.4847C76.6333 75.5826 75.2627 75.3868 74.3082 74.5058C73.5251 73.9184 72.9621 72.9639 72.6685 71.9849C72.6685 74.8974 72.6685 77.6874 72.6685 80.5999C71.5182 80.5999 70.4413 80.5999 69.291 80.5999C69.291 73.9184 69.291 67.1635 69.291 60.4821C70.4413 60.4821 71.5182 60.4821 72.6685 60.4821C72.6685 61.461 72.6685 62.4155 72.6685 63.3945C73.06 62.5379 73.6474 61.5834 74.6019 60.996ZM75.7767 62.9295C75.3851 63.0274 74.9935 63.1253 74.6264 63.419C73.7453 63.9084 73.0845 64.8629 72.7908 65.8419C72.3992 66.9922 72.3992 68.2649 72.6929 69.513C72.8887 70.6633 73.574 71.7402 74.5285 72.3276C75.5075 72.915 76.6577 73.0128 77.7101 72.7192C78.7625 72.4255 79.6436 71.6668 80.1331 70.6878C80.8184 69.4396 80.9163 67.9712 80.7205 66.6251C80.5247 65.4748 79.9373 64.3 78.9828 63.5413C77.9793 62.9295 76.8291 62.7337 75.7767 62.9295Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M105.538 74.0654C106.517 73.3801 107.471 72.6214 108.352 71.7404C110.09 71.7404 111.828 71.7404 113.565 71.7404C114.618 72.7927 115.792 73.9675 116.845 75.0199C116.16 75.1178 115.401 75.0199 114.716 75.0199C111.436 75.0199 108.034 75.0199 104.755 75.0199C104.559 75.0199 104.265 75.0199 104.069 75.0199C104.485 74.7262 105.073 74.4325 105.538 74.0654Z\"\n        fill=\"currentColor\"\n      />\n    </svg>\n  );\n}\n\nfunction Strava() {\n  return (\n    <svg\n      aria-hidden=\"true\"\n      fill=\"none\"\n      height=\"136\"\n      preserveAspectRatio=\"xMidYMid meet\"\n      viewBox=\"0 0 136 136\"\n      width=\"136\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n    >\n      <g clipPath=\"url(#clip0_16329_10564)\">\n        <path\n          d=\"M36.5551 69C36.9106 69.6222 37.1106 70.4 37.1106 71.3111V71.3555C37.1106 72.2889 36.9328 73.1333 36.5551 73.8889C36.1773 74.6444 35.6439 75.2666 34.9773 75.8C34.2884 76.3111 33.4662 76.7111 32.4884 77C31.5106 77.2889 30.4217 77.4222 29.2217 77.4222C27.3995 77.4222 25.6884 77.1778 24.1106 76.6666C22.5328 76.1555 21.1773 75.4 20.0439 74.4L23.2439 70.6C24.2217 71.3555 25.2439 71.8889 26.3106 72.2C27.3773 72.5333 28.4439 72.6889 29.5106 72.6889C30.0662 72.6889 30.4439 72.6222 30.6884 72.4889C30.9328 72.3555 31.0439 72.1555 31.0439 71.9333V71.8889C31.0439 71.6222 30.8662 71.4222 30.5106 71.2444C30.1551 71.0667 29.5106 70.8889 28.5551 70.7111C27.5551 70.5111 26.5995 70.2667 25.6884 70C24.7773 69.7333 23.9773 69.3778 23.2884 68.9555C22.5995 68.5333 22.0439 68 21.6439 67.3555C21.1995 66.6667 20.9995 65.8667 20.9995 64.9333V64.8889C20.9995 64.0444 21.1551 63.2444 21.4884 62.5111C21.8217 61.7778 22.3106 61.1333 22.9551 60.6C23.5995 60.0444 24.3995 59.6222 25.3328 59.3111C26.2662 59 27.3551 58.8444 28.5995 58.8444C30.3328 58.8444 31.8662 59.0444 33.1551 59.4667C34.4662 59.8667 35.6217 60.4889 36.6662 61.3111L33.7551 65.3333C32.9106 64.7111 31.9995 64.2667 31.0662 63.9778C30.1106 63.6889 29.2217 63.5555 28.3995 63.5555C27.9551 63.5555 27.6217 63.6222 27.4217 63.7555C27.1995 63.8889 27.1106 64.0667 27.1106 64.2889V64.3333C27.1106 64.5778 27.2662 64.7778 27.5995 64.9555C27.9328 65.1333 28.5551 65.3111 29.4884 65.4889C30.6217 65.6889 31.6662 65.9333 32.5995 66.2222C33.5328 66.5111 34.3328 66.8889 35.0217 67.3333C35.6662 67.8222 36.1995 68.3555 36.5551 69ZM36.7773 64.2444H42.0439V77.0889H48.0217V64.2444H53.2884V59.1778H36.7773V64.2444ZM106.199 58.0667L96.5773 77.0889H102.311L106.199 69.4L110.111 77.0889H115.844L106.199 58.0667ZM79.3995 58.0667L89.0439 77.0889H83.3106L79.4217 69.4L75.5328 77.0889H71.6439H69.7995H64.8217L61.4439 71.9778H61.3995H60.1773V77.0889H54.1995V59.1778H62.8884C64.4884 59.1778 65.7995 59.3555 66.8439 59.7333C67.8662 60.0889 68.7106 60.6 69.3328 61.2222C69.8884 61.7555 70.2884 62.3778 70.5551 63.0667C70.8217 63.7555 70.9551 64.5555 70.9551 65.4667V65.5111C70.9551 66.8222 70.6439 67.9333 69.9995 68.8222C69.3773 69.7333 68.5106 70.4444 67.4217 70.9778L70.5328 75.5111L79.3995 58.0667ZM64.9995 65.9111C64.9995 65.3333 64.7995 64.9111 64.3773 64.6222C63.9773 64.3333 63.4217 64.2 62.7106 64.2H60.1106V67.7111H62.6884C63.3995 67.7111 63.9773 67.5555 64.3773 67.2444C64.7773 66.9333 64.9995 66.5111 64.9995 65.9555V65.9111ZM96.7106 59.1778L92.7995 66.8889L88.8884 59.1778H83.1551L92.7995 78.2L102.422 59.1778H96.7106Z\"\n          fill=\"currentColor\"\n        />\n      </g>\n      <defs>\n        <clipPath id=\"clip0_16329_10564\">\n          <rect\n            fill=\"white\"\n            height=\"20.2222\"\n            transform=\"translate(20 58)\"\n            width=\"96\"\n          />\n        </clipPath>\n      </defs>\n    </svg>\n  );\n}\n\nexport {\n  Canpoy,\n  Canva,\n  Casetext,\n  Clearbit,\n  Descript,\n  Duolingo,\n  Faire,\n  IDEO,\n  KhanAcademy,\n  Quizlet,\n  Ramp,\n  Strava,\n};\n","path":"logos.tsx","target":"components/smoothui/shared/logos.tsx","type":"registry:component"},{"content":"import { Slot } from \"@radix-ui/react-slot\";\nimport { cn } from \"@/lib/utils\";\nimport { cva, type VariantProps } from \"class-variance-authority\";\nimport type React from \"react\";\nimport type { ButtonHTMLAttributes } from \"react\";\n\nconst buttonVariants = cva(\n  \"inline-flex cursor-pointer items-center justify-center gap-2 whitespace-nowrap rounded-md font-medium text-sm ring-offset-background transition-transform duration-150 ease-out focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 active:scale-[0.97] disabled:pointer-events-none disabled:opacity-50\",\n  {\n    defaultVariants: {\n      size: \"default\",\n      variant: \"default\",\n    },\n    variants: {\n      size: {\n        default: \"h-10 px-4 py-2\",\n        icon: \"h-10 w-10\",\n        lg: \"h-11 rounded-md px-8\",\n        sm: \"h-9 rounded-md px-4 py-2\",\n      },\n      variant: {\n        candy:\n          \"border-[0.5px] border-white/25 bg-gradient-to-b from-brand to-brand-secondary text-shadow-sm text-white shadow-black/20 shadow-md ring-(--ring-color) ring-1 [--ring-color:color-mix(in_oklab,var(--color-foreground)15%,var(--color-brand))] hover:from-brand-secondary hover:to-brand-secondary [&_svg]:drop-shadow-sm\",\n        default:\n          \"bg-primary text-primary-foreground shadow-xs hover:bg-primary/90\",\n        destructive:\n          \"bg-gradient-to-b from-[#FD4B4E] to-destructive text-shadow-sm text-white shadow-[0px_1px_2px_rgba(0,0,0,0.4),0px_0px_0px_1px_#F61418,inset_0px_0.75px_0px_rgba(255,255,255,0.2)] hover:from-destructive hover:to-destructive\",\n        ghost: \"hover:bg-background hover:text-foreground hover:shadow-custom\",\n        link: \"text-foreground underline-offset-4 hover:underline\",\n        outline:\n          \"border border-transparent bg-background shadow-black/15 shadow-sm ring-1 ring-foreground/10 hover:bg-primary dark:ring-foreground/15\",\n        secondary:\n          \"bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80\",\n      },\n    },\n  }\n);\n\nexport interface ButtonProps\n  extends ButtonHTMLAttributes<HTMLButtonElement>,\n    VariantProps<typeof buttonVariants> {\n  asChild?: boolean;\n  ref?: React.Ref<HTMLButtonElement>;\n}\n\nfunction Button({\n  className,\n  variant,\n  size,\n  asChild = false,\n  ref,\n  ...props\n}: ButtonProps) {\n  const Comp = asChild ? Slot : \"button\";\n  return (\n    <Comp\n      className={cn(buttonVariants({ className, size, variant }))}\n      ref={ref}\n      {...props}\n    />\n  );\n}\n\nexport { Button, buttonVariants };\n","path":"smoothbutton.tsx","target":"components/smoothui/shared/smoothbutton.tsx","type":"registry:component"}],"name":"shared","registryDependencies":["https://smoothui.dev/r/smooth-button.json","https://smoothui.dev/r/tokens.json"],"title":"Shared","type":"registry:component"}