{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "reward-ladder", "title": "EYFI Reward Ladder", "description": "A scroll-scrubbed milestone ladder: the section pins, the registration count rolls as you scroll, one stage is active at a time with the next dimmed beneath it, and the rail advances itself. No drag control.", "dependencies": [ "motion", "lottie-react" ], "files": [ { "path": "components/reward-ladder/reward-ladder.tsx", "content": "\"use client\";\n\nimport {\n useEffect,\n useId,\n useMemo,\n useRef,\n useState,\n type CSSProperties,\n type ReactNode,\n} from \"react\";\nimport {\n AnimatePresence,\n motion,\n useMotionValueEvent,\n useScroll,\n useTransform,\n} from \"motion/react\";\n\nimport { Celebration } from \"./celebration\";\nimport { EYFI_TIERS, type RewardTier } from \"./tiers\";\nimport \"./reward-ladder.css\";\n\nexport interface RewardLadderProps {\n /** The stages. Defaults to the EYFI Wave 01 ladder. */\n tiers?: RewardTier[];\n /**\n * How much scroll each stage gets, in vh. Lower = the ladder advances\n * faster under the same wheel travel.\n */\n stageScrollVh?: number;\n /**\n * `\"scroll\"` pins the section and scrubs through stages. `\"static\"`\n * renders every stage stacked, for docs, email, print — and it's what\n * reduced-motion users get automatically.\n */\n variant?: \"scroll\" | \"static\";\n /** Fire the Lottie burst when the crowning stage lands. Lazy-loaded. */\n celebrateAtMax?: boolean;\n /** Replacement Lottie JSON for the celebration. */\n celebrationData?: unknown;\n title?: ReactNode;\n subtitle?: ReactNode;\n className?: string;\n}\n\nconst EASE_OUT = [0.16, 1, 0.3, 1] as const;\nconst SWAP = { duration: 0.46, ease: EASE_OUT } as const;\n\n/** The stage and peek cards swap on the same choreography — enter from\n * below, leave upward. The peek trails the stage by a beat. */\nconst swapMotion = (delay = 0) => ({\n initial: { opacity: 0, y: 28 },\n animate: { opacity: 1, y: 0 },\n exit: { opacity: 0, y: -20 },\n transition: { ...SWAP, delay },\n});\n\nconst stageIndexLabel = (index: number, total: number) =>\n `${String(index + 1).padStart(2, \"0\")} / ${String(total).padStart(2, \"0\")}`;\n\nconst toneOf = (tier: RewardTier) => (tier.crowning ? \"gold\" : \"lime\");\n\nconst DEFAULT_TITLE = (\n <>\n Earned, not handed.\n \n);\n\n/** Portion of each stage's scroll segment spent holding on the threshold\n * before the count starts climbing again. Gives the eye time to land. */\nconst DWELL = 0.34;\n\n/** Where the last stage lands, as a fraction of the pinned scroll. The\n * remaining tail is dwell on the crowning stage — without it the payoff\n * (and the confetti) would arrive on the exact frame the pin releases. */\nconst CREST = 0.86;\n\nexport function RewardLadder({\n tiers = EYFI_TIERS,\n stageScrollVh = 78,\n variant = \"scroll\",\n celebrateAtMax = false,\n celebrationData,\n title = DEFAULT_TITLE,\n subtitle = \"Scroll. Every stage is one you climbed to.\",\n className,\n}: RewardLadderProps) {\n const stages = useMemo(\n () => [...tiers].sort((a, b) => a.threshold - b.threshold),\n [tiers],\n );\n const max = stages[stages.length - 1]?.threshold ?? 0;\n const count = stages.length;\n\n const headingId = useId();\n const outerRef = useRef(null);\n\n /* Reduced motion is detected after mount so SSR and first paint agree —\n * branching on it during render would desync hydration. */\n const [prefersReduced, setPrefersReduced] = useState(false);\n useEffect(() => {\n const mq = window.matchMedia(\"(prefers-reduced-motion: reduce)\");\n const sync = () => setPrefersReduced(mq.matches);\n sync();\n mq.addEventListener(\"change\", sync);\n return () => mq.removeEventListener(\"change\", sync);\n }, []);\n\n const isScroll = variant === \"scroll\" && !prefersReduced;\n\n /* ── scroll → registrations ──────────────────────────────── */\n const { scrollYProgress } = useScroll({\n target: outerRef,\n offset: [\"start start\", \"end end\"],\n });\n\n /* Each stage owns an equal slice of the scroll. Inside its slice the\n * count holds on the threshold for a beat, then climbs to the next one.\n * That's what makes the number feel like it's being earned rather than\n * linearly interpolated. */\n const [inputRange, outputRange] = useMemo(() => {\n const input: number[] = [];\n const output: number[] = [];\n const slice = CREST / Math.max(count - 1, 1);\n for (let i = 0; i < count; i += 1) {\n const start = i * slice;\n input.push(start);\n output.push(stages[i].threshold);\n if (i < count - 1) {\n input.push(start + slice * DWELL);\n output.push(stages[i].threshold);\n }\n }\n // Hold on the crowning stage for the remaining tail of the scroll.\n input.push(1);\n output.push(stages[count - 1]?.threshold ?? 0);\n return [input, output];\n }, [count, stages]);\n\n const registrations = useTransform(scrollYProgress, inputRange, outputRange);\n const rolled = useTransform(registrations, (v) =>\n Math.round(v).toLocaleString(\"en-IN\"),\n );\n const railScale = useTransform(registrations, [0, max || 1], [0, 1]);\n\n /* activeIndex only changes at thresholds, so this setState fires a\n * handful of times per scroll-through — not once per frame. */\n const activeMotion = useTransform(registrations, (v) => {\n let index = 0;\n for (let i = 0; i < stages.length; i += 1) {\n if (v >= stages[i].threshold - 0.5) index = i;\n }\n return index;\n });\n\n const [active, setActive] = useState(0);\n useMotionValueEvent(activeMotion, \"change\", (v) => setActive(v));\n\n /* In static mode the scroll wiring is inert — pin the display at the top\n * stage so the section still reads as complete. */\n const activeIndex = isScroll ? active : 0;\n const activeTier = stages[activeIndex];\n const nextTier = stages[activeIndex + 1] ?? null;\n\n const [announcement, setAnnouncement] = useState(\"\");\n const announced = useRef(null);\n useEffect(() => {\n if (!isScroll || !activeTier || announced.current === activeTier.id) return;\n announced.current = activeTier.id;\n setAnnouncement(\n `${activeTier.label}, ${activeTier.threshold} registrations. ${activeTier.rewards.join(\", \")}.`,\n );\n }, [activeTier, isScroll]);\n\n const showCelebration =\n celebrateAtMax && isScroll && activeTier?.crowning === true;\n\n /* ── static variant ──────────────────────────────────────── */\n if (!isScroll) {\n return (\n \n
\n
    \n {stages.map((tier, i) => (\n
  1. \n
    \n {tier.threshold}\n \n {tier.threshold === 0 ? \"from day one\" : \"registrations\"}\n \n
    \n
    \n

    {stageIndexLabel(i, count)}

    \n

    {tier.label}

    \n \n {tier.note ?

    {tier.note}

    : null}\n
    \n
  2. \n ))}\n
\n \n );\n }\n\n /* ── scroll variant ──────────────────────────────────────── */\n return (\n \n \n
\n {/* Full-bleed rather than boxed into the card — the source file\n * is a pair of cannons firing across the frame. */}\n {showCelebration ? (\n \n ) : null}\n\n
\n
\n\n
\n {/* the metric, as the hero object */}\n
\n {rolled}\n registrations\n
\n\n
\n
\n \n \n

\n {stageIndexLabel(activeIndex, count)}\n

\n

{activeTier.label}

\n {activeTier.blurb ? (\n

{activeTier.blurb}

\n ) : null}\n \n {activeTier.note ? (\n

{activeTier.note}

\n ) : null}\n \n
\n
\n\n {/* the next rung, dimmed — this is the pull */}\n
\n \n \n {nextTier ? (\n <>\n \n Next · {nextTier.threshold}\n \n \n {nextTier.label}\n \n \n ) : (\n \n Top of the ladder.\n \n )}\n \n \n
\n
\n
\n\n {/* the rail advances itself — nothing to drag */}\n
\n
\n \n {stages.map((tier, i) => (\n \n \n {tier.threshold}\n \n ))}\n
\n
\n
\n
\n \n\n {/* The visual layer above is aria-hidden — it only ever shows one\n * stage. This is the complete ladder, always, for screen readers. */}\n
    \n {stages.map((tier) => (\n
  1. \n {tier.label} — {tier.threshold} registrations.{\" \"}\n {tier.rewards.join(\", \")}.\n
  2. \n ))}\n
\n\n

\n {announcement}\n

\n \n );\n}\n\nfunction Header({\n id,\n title,\n subtitle,\n}: {\n id: string;\n title: ReactNode;\n subtitle: ReactNode;\n}) {\n return (\n
\n

\n {title}\n

\n {subtitle ?

{subtitle}

: null}\n
\n );\n}\n\nfunction RewardList({\n rewards,\n stagger = false,\n}: {\n rewards: string[];\n stagger?: boolean;\n}) {\n return (\n
    \n {rewards.map((reward, i) => (\n \n \n {reward}\n \n ))}\n
\n );\n}\n\nexport default RewardLadder;\n", "type": "registry:component", "target": "components/reward-ladder/reward-ladder.tsx" }, { "path": "components/reward-ladder/reward-ladder.css", "content": "/* Hallmark · component: reward-ladder · genre: atmospheric · theme: studied-DNA\n * interaction: scroll-scrubbed · one stage active, next stage dimmed\n * states: default · active · reached · crowning · reduced-motion · static\n * contrast: pass\n * ------------------------------------------------------------------\n * Every declaration resolves through `var(--token, fallback)`. Drop this\n * into a project that already defines the shadcn semantic tokens and the\n * host's values win; drop it into a bare project and the EYFI defaults\n * carry it. No raw colour is written below the token block.\n */\n\n.rl {\n /* ── host tokens win, EYFI defaults as fallback ─────────── */\n --rl-bg: var(--background, #0a0a0a);\n --rl-border-strong: var(--border-strong, #2a2a2a);\n\n --rl-fg: var(--foreground, #ffffff);\n --rl-muted: var(--muted-foreground, #c8c8c4);\n --rl-muted-2: var(--muted-foreground-2, #8a8a85);\n --rl-muted-3: var(--muted-foreground-3, #4a4a4a);\n\n --rl-primary: var(--primary, #c4f62e);\n --rl-primary-rgb: var(--primary-rgb, 196 246 46);\n --rl-gold: var(--gold, #e8b923);\n --rl-gold-rgb: var(--gold-rgb, 232 185 35);\n\n --rl-font-display: var(\n --font-display,\n \"Bricolage Grotesque\",\n ui-sans-serif,\n system-ui,\n sans-serif\n );\n --rl-font-sans: var(\n --font-sans,\n \"Space Grotesk\",\n ui-sans-serif,\n system-ui,\n sans-serif\n );\n --rl-font-serif-italic: var(\n --font-serif-italic,\n \"Instrument Serif\",\n ui-serif,\n Georgia,\n serif\n );\n\n --rl-ease-out: var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));\n --rl-dur-fast: var(--dur-fast, 150ms);\n --rl-dur-mid: var(--dur-mid, 280ms);\n --rl-dur-slow: var(--dur-slow, 420ms);\n\n --rl-radius-card: var(--radius-card, 14px);\n --rl-radius-row: var(--radius-row, 12px);\n --rl-radius-pill: var(--radius-pill, 999px);\n\n color: var(--rl-fg);\n font-family: var(--rl-font-sans);\n}\n\n.rl *,\n.rl *::before,\n.rl *::after {\n box-sizing: border-box;\n}\n\n/* ══ the pin ════════════════════════════════════════════════ */\n\n/* Tall parent + sticky child = the pin. No scroll library, no\n * ScrollTrigger; `useScroll` reads progress across exactly this range. */\n.rl-scroll {\n position: relative;\n height: calc(var(--rl-track, 390vh) + 100svh);\n}\n\n.rl-pin {\n position: sticky;\n top: 0;\n height: 100svh;\n display: flex;\n align-items: center;\n overflow: hidden;\n}\n\n.rl-pin__inner {\n width: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n gap: clamp(1.25rem, 3.5vh, 2.5rem);\n padding-block: clamp(1.5rem, 5vh, 3rem);\n}\n\n/* ══ header ═════════════════════════════════════════════════ */\n\n.rl-head {\n text-align: center;\n}\n\n.rl-head__title {\n font-family: var(--rl-font-display);\n font-weight: 800;\n letter-spacing: -0.01em;\n line-height: 1.12;\n font-size: clamp(1.75rem, 4vw, 2.6rem);\n margin: 0 0 0.375rem;\n overflow-wrap: anywhere;\n min-width: 0;\n}\n\n.rl-head__title em {\n font-family: var(--rl-font-serif-italic);\n font-style: italic;\n font-weight: 400;\n color: var(--rl-primary);\n}\n\n.rl-head__sub {\n font-size: clamp(0.9375rem, 2vw, 1.0625rem);\n line-height: 1.55;\n color: var(--rl-muted-2);\n margin: 0;\n}\n\n/* ══ the stack: metric + stage + peek ═══════════════════════ */\n\n.rl-stack {\n /* The two swapping boxes are a fixed size at every breakpoint. Sized to\n * the tallest stage so a 1-reward stage and a 3-reward stage occupy the\n * identical box — nothing under them ever moves. */\n --rl-stage-h: 20rem;\n --rl-peek-h: 3.5rem;\n\n display: grid;\n grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);\n align-items: center;\n gap: clamp(1.25rem, 4vw, 3.5rem);\n}\n\n/* the metric is the hero object — the coins were decoration, this is\n * the thing the ambassador is actually chasing */\n.rl-count {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n min-width: 0;\n /* breathing room off the container's left edge, for both lines */\n padding-inline-start: clamp(0.75rem, 2.5vw, 2.5rem);\n}\n\n.rl-count__num {\n font-family: var(--rl-font-display);\n font-weight: 800;\n font-size: clamp(4rem, 13.5vw, 10rem);\n line-height: 0.84;\n letter-spacing: -0.045em;\n font-variant-numeric: tabular-nums;\n /* Reserve three digits so the unit label doesn't shuffle as the count\n * rolls 0 → 200. */\n min-width: 3ch;\n color: var(--rl-primary);\n transition: color var(--rl-dur-slow) var(--rl-ease-out);\n}\n\n.rl-count[data-tone=\"gold\"] .rl-count__num {\n color: var(--rl-gold);\n}\n\n.rl-count__unit {\n margin-top: 0.625rem;\n font-size: 0.8125rem;\n letter-spacing: 0.08em;\n text-transform: uppercase;\n color: var(--rl-muted-3);\n}\n\n.rl-stages {\n display: flex;\n flex-direction: column;\n gap: 0.75rem;\n min-width: 0;\n}\n\n/* Entering and exiting cards share one grid cell so the swap never\n * shifts the layout underneath it. */\n.rl-stage-slot,\n.rl-peek-slot {\n display: grid;\n}\n.rl-stage-slot > *,\n.rl-peek-slot > * {\n grid-area: 1 / 1;\n}\n\n.rl-stage-slot {\n height: var(--rl-stage-h);\n}\n.rl-peek-slot {\n height: var(--rl-peek-h);\n}\n.rl-stage-slot > *,\n.rl-peek-slot > * {\n height: 100%;\n}\n\n/* ── the active stage ───────────────────────────────────── */\n\n.rl-stage {\n position: relative;\n isolation: isolate;\n display: flex;\n flex-direction: column;\n border: 1px solid rgb(var(--rl-primary-rgb) / 0.4);\n background: rgb(var(--rl-primary-rgb) / 0.06);\n border-radius: var(--rl-radius-card);\n padding: clamp(1.125rem, 3vw, 1.75rem);\n min-width: 0;\n overflow: hidden;\n}\n\n/* Rewards take the slack so the note stays pinned to the bottom edge\n * regardless of how many reward lines a stage has. */\n.rl-stage__rewards {\n flex: 1;\n}\n\n.rl-stage[data-tone=\"gold\"] {\n border-color: rgb(var(--rl-gold-rgb) / 0.45);\n background: rgb(var(--rl-gold-rgb) / 0.07);\n}\n\n.rl-stage__index {\n font-size: 0.6875rem;\n letter-spacing: 0.12em;\n text-transform: uppercase;\n color: var(--rl-muted-3);\n margin: 0 0 0.5rem;\n font-variant-numeric: tabular-nums;\n}\n\n.rl-stage__label {\n font-family: var(--rl-font-display);\n font-weight: 800;\n letter-spacing: -0.015em;\n line-height: 1.15;\n font-size: clamp(1.375rem, 3vw, 1.875rem);\n margin: 0;\n overflow-wrap: anywhere;\n min-width: 0;\n}\n\n.rl-stage__blurb {\n margin: 0.5rem 0 0;\n font-size: 0.9375rem;\n line-height: 1.55;\n color: var(--rl-muted);\n}\n\n.rl-stage__rewards {\n list-style: none;\n margin: 1rem 0 0;\n padding: 0;\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n align-content: flex-start;\n}\n\n.rl-stage__reward {\n display: flex;\n align-items: flex-start;\n gap: 0.625rem;\n font-size: 0.9375rem;\n line-height: 1.5;\n color: var(--rl-fg);\n min-width: 0;\n overflow-wrap: anywhere;\n}\n\n.rl-stage__bullet {\n flex-shrink: 0;\n width: 6px;\n height: 6px;\n margin-top: 0.5rem;\n border-radius: 50%;\n background: var(--rl-primary);\n}\n.rl-stage[data-tone=\"gold\"] .rl-stage__bullet {\n background: var(--rl-gold);\n}\n\n.rl-stage__note {\n font-family: var(--rl-font-serif-italic);\n font-style: italic;\n font-size: 0.9375rem;\n color: var(--rl-muted-2);\n margin: 0.875rem 0 0;\n}\n\n/* ── the next stage, diminished ─────────────────────────── */\n\n.rl-peek {\n display: flex;\n align-items: center;\n gap: 0.75rem;\n padding: 0.875rem 1.125rem;\n border: 1px dashed var(--rl-border-strong);\n border-radius: var(--rl-radius-row);\n min-width: 0;\n overflow: hidden;\n}\n\n.rl-peek__tag {\n flex-shrink: 0;\n font-size: 0.6875rem;\n font-weight: 700;\n letter-spacing: 0.08em;\n text-transform: uppercase;\n color: var(--rl-muted-3);\n font-variant-numeric: tabular-nums;\n}\n\n.rl-peek__label {\n font-family: var(--rl-font-display);\n font-weight: 700;\n font-size: 1rem;\n color: var(--rl-muted-3);\n min-width: 0;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.rl-peek--done .rl-peek__label {\n color: var(--rl-gold);\n}\n.rl-peek--done {\n border-style: solid;\n border-color: rgb(var(--rl-gold-rgb) / 0.3);\n}\n\n/* ══ the rail — advances itself ═════════════════════════════ */\n\n.rl-rail {\n padding-inline: 1.25rem;\n padding-bottom: 1.5rem;\n}\n\n.rl-rail__track {\n position: relative;\n height: 3px;\n border-radius: var(--rl-radius-pill);\n background: var(--rl-border-strong);\n}\n\n.rl-rail__fill {\n position: absolute;\n inset: 0;\n border-radius: var(--rl-radius-pill);\n background: var(--rl-primary);\n transform-origin: left center;\n will-change: transform;\n}\n\n.rl-rail__tick {\n position: absolute;\n top: 50%;\n left: var(--rl-at);\n transform: translate(-50%, -50%);\n display: block;\n}\n\n.rl-rail__dot {\n display: block;\n width: 10px;\n height: 10px;\n border-radius: 50%;\n background: var(--rl-border-strong);\n outline: 3px solid var(--rl-bg);\n transition:\n background var(--rl-dur-mid) var(--rl-ease-out),\n transform var(--rl-dur-mid) var(--rl-ease-out);\n}\n\n.rl-rail__tick[data-reached=\"true\"] .rl-rail__dot {\n background: var(--rl-primary);\n}\n.rl-rail__tick[data-reached=\"true\"][data-crowning=\"true\"] .rl-rail__dot {\n background: var(--rl-gold);\n transform: scale(1.35);\n}\n\n.rl-rail__label {\n position: absolute;\n top: 100%;\n left: 50%;\n transform: translateX(-50%);\n margin-top: 0.5rem;\n font-size: 0.6875rem;\n color: var(--rl-muted-3);\n font-variant-numeric: tabular-nums;\n transition: color var(--rl-dur-mid) var(--rl-ease-out);\n}\n.rl-rail__tick[data-reached=\"true\"] .rl-rail__label {\n color: var(--rl-primary);\n}\n.rl-rail__tick[data-reached=\"true\"][data-crowning=\"true\"] .rl-rail__label {\n color: var(--rl-gold);\n}\n\n/* ══ celebration ════════════════════════════════════════════ */\n\n.rl-celebration {\n position: absolute;\n inset: 0;\n pointer-events: none;\n z-index: 3;\n overflow: hidden;\n}\n.rl-celebration > * {\n width: 100%;\n height: 100%;\n}\n\n/* ══ static variant ═════════════════════════════════════════ */\n\n.rl--static {\n padding-block: clamp(2.5rem, 6vw, 4.5rem);\n}\n\n.rl-static-list {\n list-style: none;\n margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;\n padding: 0;\n display: flex;\n flex-direction: column;\n gap: 0.75rem;\n}\n\n.rl-static-item {\n display: grid;\n grid-template-columns: minmax(0, 6.5rem) minmax(0, 1fr);\n gap: clamp(1rem, 3vw, 2rem);\n align-items: start;\n padding: clamp(1rem, 2.5vw, 1.5rem);\n border: 1px solid rgb(var(--rl-primary-rgb) / 0.4);\n background: rgb(var(--rl-primary-rgb) / 0.06);\n border-radius: var(--rl-radius-card);\n}\n.rl-static-item[data-tone=\"gold\"] {\n border-color: rgb(var(--rl-gold-rgb) / 0.45);\n background: rgb(var(--rl-gold-rgb) / 0.07);\n}\n\n.rl-static-item__num {\n display: block;\n font-family: var(--rl-font-display);\n font-weight: 800;\n font-size: clamp(2rem, 5vw, 2.75rem);\n line-height: 1;\n letter-spacing: -0.03em;\n color: var(--rl-primary);\n font-variant-numeric: tabular-nums;\n}\n.rl-static-item[data-tone=\"gold\"] .rl-static-item__num {\n color: var(--rl-gold);\n}\n\n.rl-static-item__unit {\n display: block;\n margin-top: 0.375rem;\n font-size: 0.6875rem;\n letter-spacing: 0.08em;\n text-transform: uppercase;\n color: var(--rl-muted-3);\n}\n\n.rl-static-item__body {\n min-width: 0;\n}\n\n/* ══ screen-reader layer ════════════════════════════════════ */\n\n.rl-sr {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip-path: inset(50%);\n white-space: nowrap;\n border: 0;\n}\n\n/* ══ responsive ═════════════════════════════════════════════ */\n\n@media (max-width: 860px) {\n .rl-stack {\n --rl-stage-h: 22rem;\n grid-template-columns: minmax(0, 1fr);\n gap: 1rem;\n align-items: start;\n }\n\n .rl-count {\n flex-direction: row;\n align-items: baseline;\n gap: 0.75rem;\n }\n .rl-count__num {\n font-size: clamp(3.5rem, 19vw, 6rem);\n }\n .rl-count__unit {\n margin-top: 0;\n }\n}\n\n@media (max-width: 480px) {\n .rl-stack {\n --rl-stage-h: 23rem;\n }\n .rl-rail {\n padding-inline: 0.875rem;\n }\n .rl-rail__label {\n font-size: 0.625rem;\n }\n .rl-static-item {\n grid-template-columns: minmax(0, 1fr);\n gap: 0.75rem;\n }\n}\n\n/* Landscape phones and short laptops: the pin still has to fit 100svh.\n * Last in the cascade so it wins over the width rules above. */\n@media (max-height: 760px) {\n .rl-head__sub {\n display: none;\n }\n .rl-count__num {\n font-size: clamp(3rem, 9vw, 5.5rem);\n }\n .rl-stage__blurb {\n display: none;\n }\n .rl-stack {\n --rl-stage-h: 15rem;\n }\n}\n\n@media (max-height: 560px) {\n .rl-stack {\n --rl-stage-h: 12rem;\n --rl-peek-h: 3rem;\n }\n .rl-stage__note {\n display: none;\n }\n}\n\n/* ══ reduced motion ═════════════════════════════════════════\n * The component swaps to the static variant in JS, so this is the\n * belt-and-braces pass for anything still animating. */\n@media (prefers-reduced-motion: reduce) {\n .rl *,\n .rl *::before,\n .rl *::after {\n animation-duration: 0.01ms !important;\n animation-iteration-count: 1 !important;\n transition-duration: var(--rl-dur-fast) !important;\n }\n}\n", "type": "registry:component", "target": "components/reward-ladder/reward-ladder.css" }, { "path": "components/reward-ladder/tiers.ts", "content": "export interface RewardTier {\n /** Stable key. Used for animation identity — don't reuse across tiers. */\n id: string;\n /** Registrations needed to unlock. The first tier should be 0. */\n threshold: number;\n /** The title of the stage. */\n label: string;\n /** A short line of framing shown under the title on the active stage. */\n blurb?: string;\n /** What actually lands in the ambassador's hands. */\n rewards: string[];\n /** One line of voice under the rewards. Optional, use sparingly. */\n note?: string;\n /** `true` renders the stage in gold rather than lime. */\n crowning?: boolean;\n}\n\n/**\n * EYFI Campus Ambassador — Wave 01.\n *\n * Copy follows the ambassador site's voice: second person, sentence case,\n * short. Swap this array (or pass your own via the `tiers` prop) without\n * touching the component.\n */\nexport const EYFI_TIERS: RewardTier[] = [\n {\n id: \"scout\",\n threshold: 0,\n label: \"Selected as Scout\",\n blurb: \"You're in. Before anyone on your campus has heard of it.\",\n rewards: [\"Private community access\", \"Starter kit\"],\n note: \"Day one. Nobody handed you this either.\",\n },\n {\n id: \"ambassador\",\n threshold: 25,\n label: \"Campus Ambassador\",\n blurb: \"Twenty-five people signed up because of you.\",\n rewards: [\n \"Official Campus Ambassador title\",\n \"First swag drop\",\n \"Prize-linked challenge\",\n ],\n note: \"The title you earn, not the one you're handed.\",\n },\n {\n id: \"grants\",\n threshold: 50,\n label: \"Campus Grants\",\n blurb: \"Now you can put something on, not just talk about it.\",\n rewards: [\"First event grant for your campus\", \"Exclusive merch\"],\n },\n {\n id: \"mentorship\",\n threshold: 75,\n label: \"Mentorship\",\n blurb: \"You stop being supported and start being coached.\",\n rewards: [\"Mentorship access\", \"Larger, repeatable campus grants\"],\n },\n {\n id: \"internship\",\n threshold: 100,\n label: \"Paid Internship\",\n blurb: \"A hundred registrations is a track record, not a favour.\",\n rewards: [\"Paid internship opportunities\", \"Invite to ambassador events\"],\n },\n {\n id: \"founding\",\n threshold: 200,\n label: \"Founding Team\",\n blurb: \"At this point you didn't join the movement. You built it.\",\n crowning: true,\n rewards: [\"Consideration for the Founding Team\"],\n note: \"Not a reward. An invitation.\",\n },\n];\n", "type": "registry:component", "target": "components/reward-ladder/tiers.ts" }, { "path": "components/reward-ladder/celebration.tsx", "content": "\"use client\";\n\nimport { Suspense, lazy } from \"react\";\n\n/**\n * The Founding Team celebration.\n *\n * Both `lottie-react` and the 71 KB animation sit behind a dynamic import,\n * so nothing here is downloaded until someone actually scrolls to the top\n * stage. Pass your own `animationData` to swap the file out.\n */\nconst LottieConfetti = lazy(async () => {\n const [lottie, confetti] = await Promise.all([\n import(\"lottie-react\"),\n import(\"./confetti.json\"),\n ]);\n const Lottie = lottie.default;\n const fallbackData = confetti.default;\n\n return {\n default: function Burst({ animationData }: { animationData?: unknown }) {\n return (\n \n );\n },\n };\n});\n\nexport interface CelebrationProps {\n /** Optional replacement Lottie JSON. */\n animationData?: unknown;\n}\n\nexport function Celebration({ animationData }: CelebrationProps) {\n return (\n
\n \n \n \n
\n );\n}\n", "type": "registry:component", "target": "components/reward-ladder/celebration.tsx" }, { "path": "components/reward-ladder/confetti.json", "content": "{\"nm\":\"lottie (mobile)\",\"mn\":\"\",\"layers\":[{\"ty\":0,\"nm\":\"cannon (small - left)\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":300,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,360,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[76,451.99999999999994,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10}},\"ef\":[],\"w\":480,\"h\":720,\"refId\":\"comp_0\",\"ind\":0},{\"ty\":0,\"nm\":\"cannon (small - right)\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":300,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[479.994,360,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[533,451.99999999999994,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10}},\"ef\":[],\"w\":480,\"h\":720,\"refId\":\"comp_2\",\"ind\":1},{\"ty\":0,\"nm\":\"cannon (small - top)\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":300,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[400,400,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[102,102,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[304,408,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10}},\"ef\":[],\"w\":800,\"h\":800,\"refId\":\"comp_3\",\"ind\":2}],\"ddd\":0,\"h\":812,\"w\":609,\"meta\":{\"a\":\"\",\"k\":\"\",\"d\":\"\",\"g\":\"@lottiefiles/toolkit-js 0.21.1\",\"tc\":\"#ffffff\"},\"v\":\"5.5.6\",\"fr\":70,\"op\":370,\"ip\":0,\"assets\":[{\"nm\":\"\",\"mn\":\"\",\"layers\":[{\"ty\":0,\"nm\":\"_small-side\",\"mn\":\"\",\"sr\":1,\"st\":15,\"op\":234,\"ip\":15,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[400,400,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[-100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[218,320,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10}},\"ef\":[],\"w\":800,\"h\":800,\"refId\":\"comp_1\",\"ind\":0}],\"id\":\"comp_0\",\"fr\":30},{\"nm\":\"\",\"mn\":\"\",\"layers\":[{\"ty\":4,\"nm\":\"streamer b\",\"mn\":\"\",\"sr\":1,\"st\":9,\"op\":58,\"ip\":9,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[554,664,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":166,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":2,\"lj\":2,\"ml\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":9},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":57}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.4039,0.8863,0.6275],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":9},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[35],\"t\":14},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":57}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":14},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":57}],\"ix\":1},\"m\":1}],\"ind\":0},{\"ty\":4,\"nm\":\"streamer a\",\"mn\":\"\",\"sr\":1,\"st\":5,\"op\":49,\"ip\":5,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[-100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[532,582,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":167,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":2,\"lj\":2,\"ml\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":5},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":48}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.6549,0.902,0.0941],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":5},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[35],\"t\":10},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":48}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":10},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":48}],\"ix\":1},\"m\":1}],\"ind\":1},{\"ty\":4,\"nm\":\"circle a\",\"mn\":\"\",\"sr\":1,\"st\":1,\"op\":159,\"ip\":1,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":29},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":128}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[419.5,198,0],\"t\":29},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[319.5,838,0],\"t\":158}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[321.019],\"t\":29},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[1800],\"t\":158}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2039,0.9294,0.6039],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":2},{\"ty\":4,\"nm\":\"circle b\",\"mn\":\"\",\"sr\":1,\"st\":3,\"op\":129,\"ip\":3,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":21},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":98}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[439.5,278,0],\"t\":21},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[199.5,838,0],\"t\":128}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":3},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[1440],\"t\":128}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2667,0.7059,0.3843],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":3},{\"ty\":4,\"nm\":\"star a\",\"mn\":\"\",\"sr\":1,\"st\":1,\"op\":159,\"ip\":1,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":31},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":128}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[596.087,836.292,0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[379.5,236.292,0],\"t\":31},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[279.5,836.292,0],\"t\":158}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[343.949],\"t\":31},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[1800],\"t\":158}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.4039,0.8863,0.6275],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":4},{\"ty\":4,\"nm\":\"star b\",\"mn\":\"\",\"sr\":1,\"st\":3,\"op\":129,\"ip\":3,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":23},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":98}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[596.087,836.292,0],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[359.5,156.292,0],\"t\":23},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[199.5,826.292,0],\"t\":128}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[288],\"t\":23},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[1800],\"t\":128}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.502,1,0.7451],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":5},{\"ty\":4,\"nm\":\"rec a\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":219,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":33},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":188}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,842,0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[459.5,242,0],\"t\":33},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[351.5,834,0],\"t\":218}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[381.468],\"t\":33},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2520],\"t\":218}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[1,0.8431,0.5882],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":6},{\"ty\":4,\"nm\":\"rec b\",\"mn\":\"\",\"sr\":1,\"st\":2,\"op\":192,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":25},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":161}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,842,0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[459.5,162,0],\"t\":25},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[155.5,812,0],\"t\":191}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[262.857],\"t\":25},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2160],\"t\":191}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2,0.949,0.7961],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":7},{\"ty\":4,\"nm\":\"square a\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":219,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":35},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":188}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[339.5,98,0],\"t\":35},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[239.5,838,0],\"t\":218}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[462.385],\"t\":35},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2880],\"t\":218}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.3451,0.7569,0.4667],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":8},{\"ty\":4,\"nm\":\"square b\",\"mn\":\"\",\"sr\":1,\"st\":2,\"op\":192,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[50,100,100],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":27},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":161}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[419.5,118,0],\"t\":27},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[149.5,818,0],\"t\":191}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[285.714],\"t\":27},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2160],\"t\":191}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.6549,0.902,0.0941],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":9},{\"ty\":4,\"nm\":\"streamer b 2\",\"mn\":\"\",\"sr\":1,\"st\":13,\"op\":62,\"ip\":13,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[543,427,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":171,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":2,\"lj\":2,\"ml\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":13},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":61}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.9804,0.8235,0.7059],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":13},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[35],\"t\":18},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":61}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":18},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":61}],\"ix\":1},\"m\":1}],\"ind\":10},{\"ty\":4,\"nm\":\"streamer a 2\",\"mn\":\"\",\"sr\":1,\"st\":10,\"op\":54,\"ip\":10,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[-100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[454,444,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":151,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":2,\"lj\":2,\"ml\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":10},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":53}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.749,0.9333,1],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":10},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[35],\"t\":15},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":53}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":15},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":53}],\"ix\":1},\"m\":1}],\"ind\":11},{\"ty\":4,\"nm\":\"circle a 2\",\"mn\":\"\",\"sr\":1,\"st\":1,\"op\":192,\"ip\":1,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,100,100],\"t\":29},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":161}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[279.5,158,0],\"t\":29},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[259.5,858,0],\"t\":191}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-371.368],\"t\":29},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2520],\"t\":191}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[1,0.8431,0.5882],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":12},{\"ty\":4,\"nm\":\"circle b 2\",\"mn\":\"\",\"sr\":1,\"st\":3,\"op\":159,\"ip\":3,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,100,100],\"t\":21},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":128}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[279.5,238,0],\"t\":21},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[221.5,880,0],\"t\":158}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-250.839],\"t\":21},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2160],\"t\":158}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.502,1,0.7451],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":13},{\"ty\":4,\"nm\":\"star a 2\",\"mn\":\"\",\"sr\":1,\"st\":1,\"op\":192,\"ip\":1,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,100,100],\"t\":31},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":161}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[596.087,836.292,0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[539.5,156.292,0],\"t\":31},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[339.5,856.292,0],\"t\":191}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":1},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-397.895],\"t\":31},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2520],\"t\":191}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.749,0.9333,1],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":14},{\"ty\":4,\"nm\":\"star b 2\",\"mn\":\"\",\"sr\":1,\"st\":3,\"op\":159,\"ip\":3,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,100,100],\"t\":23},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":128}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[596.087,836.292,0],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[519.5,256.292,0],\"t\":23},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[279.5,856.292,0],\"t\":158}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":3},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-278.71],\"t\":23},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2160],\"t\":158}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2,0.949,0.7961],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":15},{\"ty\":4,\"nm\":\"rec a 2\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":129,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":1},\"s\":[100,100,100],\"t\":33},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":98}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,842,0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[499.5,122,0],\"t\":33},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[199.5,842,0],\"t\":128}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-556.875],\"t\":33},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2160],\"t\":128}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.3451,0.7569,0.4667],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":16},{\"ty\":4,\"nm\":\"rec b 2\",\"mn\":\"\",\"sr\":1,\"st\":2,\"op\":219,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,100,100],\"t\":25},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":188}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,842,0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[339.5,262,0],\"t\":25},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[219.5,862,0],\"t\":218}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-306.667],\"t\":25},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2880],\"t\":218}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.9804,0.8235,0.7059],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":17},{\"ty\":4,\"nm\":\"square a 2\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":129,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,100,100],\"t\":35},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":98}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[479.5,298,0],\"t\":35},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[379.5,838,0],\"t\":128}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":0},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-590.625],\"t\":35},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2160],\"t\":128}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2039,0.9294,0.6039],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":18},{\"ty\":4,\"nm\":\"square b 2\",\"mn\":\"\",\"sr\":1,\"st\":2,\"op\":219,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0},\"i\":{\"x\":0.667,\"y\":1},\"s\":[100,50,100],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,100,100],\"t\":27},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":188}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[599.5,838,0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[539.5,218,0],\"t\":27},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[299.5,838,0],\"t\":218}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.667,\"y\":1},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.333,\"y\":0},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-333.333],\"t\":27},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2880],\"t\":218}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2667,0.7059,0.3843],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":19}],\"id\":\"comp_1\",\"fr\":30},{\"nm\":\"\",\"mn\":\"\",\"layers\":[{\"ty\":0,\"nm\":\"_small-side\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":219,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[400,400,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[260,320,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10}},\"ef\":[],\"w\":800,\"h\":800,\"refId\":\"comp_1\",\"ind\":0}],\"id\":\"comp_2\",\"fr\":30},{\"nm\":\"\",\"mn\":\"\",\"layers\":[{\"ty\":0,\"nm\":\"left\",\"mn\":\"\",\"sr\":1,\"st\":13,\"op\":313,\"ip\":13,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[400,400,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[400,400,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10}},\"ef\":[],\"w\":800,\"h\":800,\"refId\":\"comp_4\",\"ind\":0},{\"ty\":0,\"nm\":\"right\",\"mn\":\"\",\"sr\":1,\"st\":30,\"op\":330,\"ip\":30,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[400,400,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[-100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":0,\"k\":[400,400,0],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":0,\"ix\":10}},\"ef\":[],\"w\":800,\"h\":800,\"refId\":\"comp_4\",\"ind\":1}],\"id\":\"comp_3\",\"fr\":30},{\"nm\":\"\",\"mn\":\"\",\"layers\":[{\"ty\":4,\"nm\":\"streamer a 4\",\"mn\":\"\",\"sr\":1,\"st\":13,\"op\":174,\"ip\":13,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[-100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[219.178,-190.096,0],\"t\":13},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[179.178,989.904,0],\"t\":173}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":14,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":1,\"lj\":1,\"ml\":4,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":13},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":176}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.6549,0.902,0.0941],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":13},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[40],\"t\":18},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":176}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":18},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":176}],\"ix\":1},\"m\":1}],\"ind\":0},{\"ty\":4,\"nm\":\"streamer b 4\",\"mn\":\"\",\"sr\":1,\"st\":5,\"op\":174,\"ip\":5,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[269.863,-175.455,0],\"t\":5},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[69.863,984.545,0],\"t\":173}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":-1.458,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":1,\"lj\":1,\"ml\":4,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":5},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":173}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.4039,0.8863,0.6275],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":5},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[40],\"t\":10},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":173}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":10},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":173}],\"ix\":1},\"m\":1}],\"ind\":1},{\"ty\":4,\"nm\":\"circle a 4\",\"mn\":\"\",\"sr\":1,\"st\":-7,\"op\":156,\"ip\":8,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":155}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[325.643,-26.292,0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[125.643,835.708,0],\"t\":155}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[1800],\"t\":155}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2039,0.9294,0.6039],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":2},{\"ty\":4,\"nm\":\"circle b 4\",\"mn\":\"\",\"sr\":1,\"st\":-13,\"op\":216,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":215}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[619.5,-26.292,0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[259.5,835.708,0],\"t\":215}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2520],\"t\":215}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2667,0.7059,0.3843],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":3},{\"ty\":4,\"nm\":\"star a 4\",\"mn\":\"\",\"sr\":1,\"st\":-9,\"op\":246,\"ip\":6,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":245}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[376.929,-28,0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[116.929,834,0],\"t\":245}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2880],\"t\":245}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.4039,0.8863,0.6275],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":4},{\"ty\":4,\"nm\":\"star b 4\",\"mn\":\"\",\"sr\":1,\"st\":-13,\"op\":126,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":125}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[171.786,-28,0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[251.786,834,0],\"t\":125}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[1800],\"t\":125}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.502,1,0.7451],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":5},{\"ty\":4,\"nm\":\"rec a 4\",\"mn\":\"\",\"sr\":1,\"st\":-11,\"op\":186,\"ip\":4,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":185}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[428.214,-22.292,0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[228.214,839.708,0],\"t\":185}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2520],\"t\":185}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[1,0.8431,0.5882],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":6},{\"ty\":4,\"nm\":\"rec b 4\",\"mn\":\"\",\"sr\":1,\"st\":-9,\"op\":246,\"ip\":6,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":245}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[223.071,-22.292,0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[223.071,839.708,0],\"t\":245}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2880],\"t\":245}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2,0.949,0.7961],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":7},{\"ty\":4,\"nm\":\"square a 4\",\"mn\":\"\",\"sr\":1,\"st\":-11,\"op\":218,\"ip\":4,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":217}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[120.5,-26.292,0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[198.5,833.708,0],\"t\":217}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2520],\"t\":217}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.3451,0.7569,0.4667],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":8},{\"ty\":4,\"nm\":\"square b 4\",\"mn\":\"\",\"sr\":1,\"st\":-7,\"op\":216,\"ip\":8,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":215}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[274.357,-26.292,0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[114.357,835.708,0],\"t\":215}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[2520],\"t\":215}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.3451,0.7569,0.4667],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":9},{\"ty\":4,\"nm\":\"streamer a 3\",\"mn\":\"\",\"sr\":1,\"st\":0,\"op\":186,\"ip\":0,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[-100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[275.178,-173.096,0],\"t\":0},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[219.178,974.904,0],\"t\":185}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":3,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":2,\"lj\":2,\"ml\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":0},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":177}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.749,0.9333,1],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":0},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[40],\"t\":5},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":177}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":5},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":177}],\"ix\":1},\"m\":1}],\"ind\":10},{\"ty\":4,\"nm\":\"streamer b 3\",\"mn\":\"\",\"sr\":1,\"st\":11,\"op\":218,\"ip\":11,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[-157,-245,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100,100],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[199.863,74.545,0],\"t\":11},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[139.863,834.545,0],\"t\":217}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":0,\"k\":9,\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Shape 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sh\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Group\",\"nm\":\"Path 1\",\"ix\":1,\"d\":1,\"ks\":{\"a\":0,\"k\":{\"c\":false,\"i\":[[0,0],[-1.685,-13.314],[0,-14.907],[0,-15.206],[0,-14.907],[0,-14.907],[0,-15.206],[1.754,-14.206],[-3.934,-9.465]],\"o\":[[-3.895,8.562],[1.872,14.789],[0,15.206],[0,14.907],[0,14.907],[0,15.206],[0,14.314],[-1.803,14.605],[0,0]],\"v\":[[-156.5,-406],[-166.5,-367],[-146.5,-327],[-166.5,-286],[-146.5,-246],[-166.5,-206],[-146.5,-165],[-166.5,-127],[-156.5,-84]]},\"ix\":2}},{\"ty\":\"st\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Stroke\",\"nm\":\"Stroke 1\",\"lc\":2,\"lj\":2,\"ml\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":4},\"w\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[4],\"t\":11},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0.5],\"t\":199}],\"ix\":5},\"d\":[],\"c\":{\"a\":0,\"k\":[0.9804,0.8235,0.7059],\"ix\":3}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]},{\"ty\":\"tm\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Filter - Trim\",\"nm\":\"Trim Paths 1\",\"ix\":2,\"e\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":11},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[40],\"t\":16},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":199}],\"ix\":2},\"o\":{\"a\":0,\"k\":0,\"ix\":3},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":16},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100],\"t\":199}],\"ix\":1},\"m\":1}],\"ind\":11},{\"ty\":4,\"nm\":\"circle a 3\",\"mn\":\"\",\"sr\":1,\"st\":-13,\"op\":126,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":125}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[365.643,-26.292,0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[165.643,835.708,0],\"t\":125}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-1800],\"t\":125}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[1,0.8431,0.5882],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":12},{\"ty\":4,\"nm\":\"circle b 3\",\"mn\":\"\",\"sr\":1,\"st\":-7,\"op\":246,\"ip\":8,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":245}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[519.5,-26.292,0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[159.5,835.708,0],\"t\":245}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2880],\"t\":245}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Ellipse 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"el\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Ellipse\",\"nm\":\"Ellipse Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.502,1,0.7451],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":13},{\"ty\":4,\"nm\":\"star a 3\",\"mn\":\"\",\"sr\":1,\"st\":-9,\"op\":246,\"ip\":6,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":245}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[416.929,-28,0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[156.929,834,0],\"t\":245}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2880],\"t\":245}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.749,0.9333,1],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":14},{\"ty\":4,\"nm\":\"star b 3\",\"mn\":\"\",\"sr\":1,\"st\":-7,\"op\":156,\"ip\":8,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":155}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[211.786,-28,0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[291.786,834,0],\"t\":155}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":8},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2160],\"t\":155}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Polystar 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"sr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Star\",\"nm\":\"Polystar Path 1\",\"ix\":1,\"d\":1,\"ir\":{\"a\":0,\"k\":5,\"ix\":6},\"is\":{\"a\":0,\"k\":0,\"ix\":8},\"pt\":{\"a\":0,\"k\":5,\"ix\":3},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":4},\"or\":{\"a\":0,\"k\":12,\"ix\":7},\"os\":{\"a\":0,\"k\":0,\"ix\":9},\"r\":{\"a\":0,\"k\":0,\"ix\":5},\"sy\":1},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2,0.949,0.7961],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":15},{\"ty\":4,\"nm\":\"rec a 3\",\"mn\":\"\",\"sr\":1,\"st\":-11,\"op\":186,\"ip\":4,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":185}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[468.214,-22.292,0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[268.214,839.708,0],\"t\":185}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2160],\"t\":185}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.3451,0.7569,0.4667],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":16},{\"ty\":4,\"nm\":\"rec b 3\",\"mn\":\"\",\"sr\":1,\"st\":-9,\"op\":246,\"ip\":6,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":245}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[263.071,-22.292,0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[263.071,839.708,0],\"t\":245}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":6},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2880],\"t\":245}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,8],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.9804,0.8235,0.7059],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":17},{\"ty\":4,\"nm\":\"square a 3\",\"mn\":\"\",\"sr\":1,\"st\":-13,\"op\":218,\"ip\":2,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":217}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[160.5,-26.292,0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[238.5,833.708,0],\"t\":217}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":100,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":2},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2520],\"t\":217}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2039,0.9294,0.6039],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":18},{\"ty\":4,\"nm\":\"square b 3\",\"mn\":\"\",\"sr\":1,\"st\":-11,\"op\":186,\"ip\":4,\"hd\":false,\"cl\":\"\",\"ln\":\"\",\"ddd\":0,\"bm\":0,\"tt\":0,\"hasMask\":false,\"td\":0,\"ao\":0,\"ks\":{\"a\":{\"a\":0,\"k\":[0,0,0],\"ix\":1},\"s\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[100,50,100],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[50,100,100],\"t\":185}],\"ix\":6},\"sk\":{\"a\":0,\"k\":0},\"p\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[314.357,-26.292,0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[154.357,835.708,0],\"t\":185}],\"ix\":2},\"sa\":{\"a\":0,\"k\":0},\"o\":{\"a\":0,\"k\":50,\"ix\":11},\"r\":{\"a\":1,\"k\":[{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[0],\"t\":4},{\"o\":{\"x\":0.167,\"y\":0.167},\"i\":{\"x\":0.833,\"y\":0.833},\"s\":[-2160],\"t\":185}],\"ix\":10}},\"ef\":[],\"shapes\":[{\"ty\":\"gr\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Group\",\"nm\":\"Rectangle 1\",\"ix\":1,\"cix\":2,\"np\":2,\"it\":[{\"ty\":\"rc\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Shape - Rect\",\"nm\":\"Rectangle Path 1\",\"d\":1,\"p\":{\"a\":0,\"k\":[0,0],\"ix\":3},\"r\":{\"a\":0,\"k\":0,\"ix\":4},\"s\":{\"a\":0,\"k\":[16,16],\"ix\":2}},{\"ty\":\"fl\",\"bm\":0,\"cl\":\"\",\"ln\":\"\",\"hd\":false,\"mn\":\"ADBE Vector Graphic - Fill\",\"nm\":\"Fill 1\",\"c\":{\"a\":0,\"k\":[0.2667,0.7059,0.3843],\"ix\":4},\"r\":1,\"o\":{\"a\":0,\"k\":100,\"ix\":5}},{\"ty\":\"tr\",\"a\":{\"a\":0,\"k\":[0,0],\"ix\":1},\"s\":{\"a\":0,\"k\":[100,100],\"ix\":3},\"sk\":{\"a\":0,\"k\":0,\"ix\":4},\"p\":{\"a\":0,\"k\":[0,0],\"ix\":2},\"r\":{\"a\":0,\"k\":0,\"ix\":6},\"sa\":{\"a\":0,\"k\":0,\"ix\":5},\"o\":{\"a\":0,\"k\":100,\"ix\":7}}]}],\"ind\":19}],\"id\":\"comp_4\",\"fr\":30}]}", "type": "registry:file", "target": "components/reward-ladder/confetti.json" }, { "path": "components/reward-ladder/index.ts", "content": "export { RewardLadder, default } from \"./reward-ladder\";\nexport type { RewardLadderProps } from \"./reward-ladder\";\nexport { EYFI_TIERS } from \"./tiers\";\nexport type { RewardTier } from \"./tiers\";\nexport { Celebration } from \"./celebration\";\nexport type { CelebrationProps } from \"./celebration\";\n", "type": "registry:component", "target": "components/reward-ladder/index.ts" } ], "cssVars": { "theme": { "--ease-out": "cubic-bezier(0.16, 1, 0.3, 1)", "--dur-fast": "150ms", "--dur-mid": "280ms", "--dur-slow": "420ms", "--radius-card": "14px", "--radius-row": "12px", "--radius-pill": "999px" }, "dark": { "--background": "#0a0a0a", "--border-strong": "#2a2a2a", "--foreground": "#ffffff", "--muted-foreground": "#c8c8c4", "--muted-foreground-2": "#8a8a85", "--muted-foreground-3": "#4a4a4a", "--primary": "#c4f62e", "--primary-rgb": "196 246 46", "--gold": "#e8b923", "--gold-rgb": "232 185 35" } }, "type": "registry:block" }