diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 0000000..5f81f77
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,75 @@
+{
+ "plugins": ["@typescript-eslint", "simple-import-sort", "unused-imports"],
+ "extends": [
+ "eslint:recommended",
+ "next",
+ "next/core-web-vitals",
+ "plugin:@typescript-eslint/recommended",
+ "prettier",
+ ],
+ "rules": {
+ "no-unused-vars": "off",
+ "no-console": "warn",
+ "@typescript-eslint/explicit-module-boundary-types": "off",
+ "react/no-unescaped-entities": "off",
+
+ "react/display-name": "off",
+ "react/jsx-curly-brace-presence": [
+ "warn",
+ { "props": "never", "children": "never" },
+ ],
+
+ //#region //*=========== Unused Import ===========
+ "@typescript-eslint/no-unused-vars": "off",
+ "unused-imports/no-unused-imports": "warn",
+ "unused-imports/no-unused-vars": [
+ "warn",
+ {
+ "vars": "all",
+ "varsIgnorePattern": "^_",
+ "args": "after-used",
+ "argsIgnorePattern": "^_",
+ },
+ ],
+ //#endregion //*======== Unused Import ===========
+
+ //#region //*=========== Import Sort ===========
+ "simple-import-sort/exports": "warn",
+ "simple-import-sort/imports": [
+ "warn",
+ {
+ "groups": [
+ // ext library & side effect imports
+ ["^@?\\w", "^\\u0000"],
+ // {s}css files
+ ["^.+\\.s?css$"],
+ // Lib and hooks
+ ["^@/lib", "^@/hooks"],
+ // static data
+ ["^@/data"],
+ // components
+ ["^@/components", "^@/container"],
+ // zustand store
+ ["^@/store"],
+ // Other imports
+ ["^@/"],
+ // relative paths up until 3 level
+ [
+ "^\\./?$",
+ "^\\.(?!/?$)",
+ "^\\.\\./?$",
+ "^\\.\\.(?!/?$)",
+ "^\\.\\./\\.\\./?$",
+ "^\\.\\./\\.\\.(?!/?$)",
+ "^\\.\\./\\.\\./\\.\\./?$",
+ "^\\.\\./\\.\\./\\.\\.(?!/?$)",
+ ],
+ ["^@/types"],
+ // other that didnt fit in
+ ["^"],
+ ],
+ },
+ ],
+ //#endregion //*======== Import Sort ===========
+ },
+}
diff --git a/.github/issue-branch.yml b/.github/issue-branch.yml
new file mode 100644
index 0000000..1626600
--- /dev/null
+++ b/.github/issue-branch.yml
@@ -0,0 +1,9 @@
+# https://github.com/robvanderleek/create-issue-branch#option-2-configure-github-action
+
+# ex: i4-lower_camel_upper
+branchName: 'i${issue.number}-${issue.title,}'
+branches:
+ - label: epic
+ skip: true
+ - label: debt
+ skip: true
diff --git a/.github/workflows/create-branch.yml b/.github/workflows/create-branch.yml
new file mode 100644
index 0000000..b8d5195
--- /dev/null
+++ b/.github/workflows/create-branch.yml
@@ -0,0 +1,14 @@
+name: Create Branch from Issue
+
+on:
+ issues:
+ types: [assigned]
+
+jobs:
+ create_issue_branch_job:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Create Issue Branch
+ uses: robvanderleek/create-issue-branch@main
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/issue-autolink.yml b/.github/workflows/issue-autolink.yml
new file mode 100644
index 0000000..dac81ed
--- /dev/null
+++ b/.github/workflows/issue-autolink.yml
@@ -0,0 +1,14 @@
+name: 'Issue Autolink'
+on:
+ pull_request:
+ types: [opened]
+
+jobs:
+ issue-links:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: tkt-actions/add-issue-links@v1.6.0
+ with:
+ repo-token: '${{ secrets.GITHUB_TOKEN }}'
+ branch-prefix: 'i'
+ resolve: 'true'
diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml
new file mode 100644
index 0000000..7112600
--- /dev/null
+++ b/.github/workflows/release-please.yml
@@ -0,0 +1,19 @@
+name: release-please
+on:
+ push:
+ branches:
+ - main
+ workflow_dispatch:
+
+permissions:
+ contents: write
+ pull-requests: write
+
+jobs:
+ release-please:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: google-github-actions/release-please-action@v3
+ with:
+ release-type: node
+ package-name: aireadi.org
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7f8daa3
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,47 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.pnpm-debug.log*
+
+# local env files
+.env
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
+
+# next-sitemap
+robots.txt
+sitemap.xml
+sitemap-*.xml
+test.html
+ignore/
+yarn.lock
+.yarnrc.yml
+yarn.lock
diff --git a/.markdownlint.json b/.markdownlint.json
new file mode 100644
index 0000000..4c98f54
--- /dev/null
+++ b/.markdownlint.json
@@ -0,0 +1,5 @@
+{
+ "MD013": false,
+ "MD033": false,
+ "MD041": false
+}
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 0000000..bf79505
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1 @@
+v16.14.0
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..8cf70b1
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,40 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+.next
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+# vercel
+.vercel
+
+# changelog
+CHANGELOG.md
+
+/public/favicon/site.webmanifest
\ No newline at end of file
diff --git a/.vscode/css.code-snippets b/.vscode/css.code-snippets
new file mode 100644
index 0000000..951943e
--- /dev/null
+++ b/.vscode/css.code-snippets
@@ -0,0 +1,10 @@
+{
+ "Region CSS": {
+ "prefix": "regc",
+ "body": [
+ "/* #region /**=========== ${1} =========== */",
+ "$0",
+ "/* #endregion /**======== ${1} =========== */",
+ ],
+ },
+}
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..44bf298
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,9 @@
+{
+ "recommendations": [
+ // Tailwind CSS Intellisense
+ "bradlc.vscode-tailwindcss",
+ "esbenp.prettier-vscode",
+ "dbaeumer.vscode-eslint",
+ "aaron-bond.better-comments"
+ ]
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..7e957b7
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,12 @@
+{
+ "css.validate": false,
+ "editor.formatOnSave": true,
+ "editor.tabSize": 2,
+ "editor.codeActionsOnSave": {
+ "source.fixAll": "explicit"
+ },
+ "headwind.runOnSave": false,
+ "typescript.preferences.importModuleSpecifier": "non-relative",
+ "typescript.tsdk": "./node_modules/typescript/lib",
+ "typescript.enablePromptUseWorkspaceTsdk": true
+}
diff --git a/.vscode/typescriptreact.code-snippets b/.vscode/typescriptreact.code-snippets
new file mode 100644
index 0000000..6f8f0ff
--- /dev/null
+++ b/.vscode/typescriptreact.code-snippets
@@ -0,0 +1,193 @@
+{
+ //#region //*=========== React ===========
+ "import React": {
+ "prefix": "ir",
+ "body": ["import * as React from 'react';"],
+ },
+ "React.useState": {
+ "prefix": "us",
+ "body": [
+ "const [${1}, set${1/(^[a-zA-Z])(.*)/${1:/upcase}${2}/}] = React.useState<$3>(${2:initial${1/(^[a-zA-Z])(.*)/${1:/upcase}${2}/}})$0",
+ ],
+ },
+ "React.useEffect": {
+ "prefix": "uf",
+ "body": ["React.useEffect(() => {", " $0", "}, []);"],
+ },
+ "React.useReducer": {
+ "prefix": "ur",
+ "body": [
+ "const [state, dispatch] = React.useReducer(${0:someReducer}, {",
+ " ",
+ "})",
+ ],
+ },
+ "React.useRef": {
+ "prefix": "urf",
+ "body": ["const ${1:someRef} = React.useRef($0)"],
+ },
+ "React Functional Component": {
+ "prefix": "rc",
+ "body": [
+ "import * as React from 'react';\n",
+ "export default function ${1:${TM_FILENAME_BASE}}() {",
+ " return (",
+ "
",
+ " $0",
+ "
",
+ " )",
+ "}",
+ ],
+ },
+ "React Functional Component with Props": {
+ "prefix": "rcp",
+ "body": [
+ "import * as React from 'react';\n",
+ "import clsxm from '@/lib/clsxm';\n",
+ "type ${1:${TM_FILENAME_BASE}}Props= {\n",
+ "} & React.ComponentPropsWithoutRef<'div'>\n",
+ "export default function ${1:${TM_FILENAME_BASE}}({className, ...rest}: ${1:${TM_FILENAME_BASE}}Props) {",
+ " return (",
+ " ",
+ " $0",
+ "
",
+ " )",
+ "}",
+ ],
+ },
+ //#endregion //*======== React ===========
+
+ //#region //*=========== Commons ===========
+ "Region": {
+ "prefix": "reg",
+ "scope": "javascript, typescript, javascriptreact, typescriptreact",
+ "body": [
+ "//#region //*=========== ${1} ===========",
+ "${TM_SELECTED_TEXT}$0",
+ "//#endregion //*======== ${1} ===========",
+ ],
+ },
+ "Region CSS": {
+ "prefix": "regc",
+ "scope": "css, scss",
+ "body": [
+ "/* #region /**=========== ${1} =========== */",
+ "${TM_SELECTED_TEXT}$0",
+ "/* #endregion /**======== ${1} =========== */",
+ ],
+ },
+ //#endregion //*======== Commons ===========
+
+ //#region //*=========== Nextjs ===========
+ "Next Pages": {
+ "prefix": "np",
+ "body": [
+ "import * as React from 'react';\n",
+ "import Layout from '@/components/layout/Layout';",
+ "import Seo from '@/components/Seo';\n",
+ "export default function ${1:${TM_FILENAME_BASE/(^[a-zA-Z])(.*)/${1:/upcase}${2}/}}Page() {",
+ " return (",
+ " ",
+ " \n",
+ " \n",
+ " ",
+ " ",
+ " $0",
+ "
",
+ " ",
+ " ",
+ " ",
+ " )",
+ "}",
+ ],
+ },
+ "Next API": {
+ "prefix": "napi",
+ "body": [
+ "import { NextApiRequest, NextApiResponse } from 'next';\n",
+ "export default async function handler(req: NextApiRequest, res: NextApiResponse) {",
+ " if (req.method === 'GET') {",
+ " res.status(200).json({ name: 'Bambang' });",
+ " } else {",
+ " res.status(405).json({ message: 'Method Not Allowed' });",
+ " }",
+ "}",
+ ],
+ },
+ "Get Static Props": {
+ "prefix": "gsp",
+ "body": [
+ "export const getStaticProps = async (context: GetStaticPropsContext) => {",
+ " return {",
+ " props: {}",
+ " };",
+ "}",
+ ],
+ },
+ "Get Static Paths": {
+ "prefix": "gspa",
+ "body": [
+ "export const getStaticPaths: GetStaticPaths = async () => {",
+ " return {",
+ " paths: [",
+ " { params: { $1 }}",
+ " ],",
+ " fallback: ",
+ " };",
+ "}",
+ ],
+ },
+ "Get Server Side Props": {
+ "prefix": "gssp",
+ "body": [
+ "export const getServerSideProps = async (context: GetServerSidePropsContext) => {",
+ " return {",
+ " props: {}",
+ " };",
+ "}",
+ ],
+ },
+ "Infer Get Static Props": {
+ "prefix": "igsp",
+ "body": "InferGetStaticPropsType",
+ },
+ "Infer Get Server Side Props": {
+ "prefix": "igssp",
+ "body": "InferGetServerSidePropsType",
+ },
+ "Import useRouter": {
+ "prefix": "imust",
+ "body": ["import { useRouter } from 'next/router';"],
+ },
+ "Import Next Image": {
+ "prefix": "imimg",
+ "body": ["import Image from 'next/image';"],
+ },
+ "Import Next Link": {
+ "prefix": "iml",
+ "body": ["import Link from 'next/link';"],
+ },
+ //#endregion //*======== Nextjs ===========
+
+ //#region //*=========== Snippet Wrap ===========
+ "Wrap with Fragment": {
+ "prefix": "ff",
+ "body": ["<>", "\t${TM_SELECTED_TEXT}", ">"],
+ },
+ "Wrap with clsx": {
+ "prefix": "cx",
+ "body": ["{clsx(${TM_SELECTED_TEXT}$0)}"],
+ },
+ "Wrap with clsxm": {
+ "prefix": "cxm",
+ "body": ["{clsxm(${TM_SELECTED_TEXT}$0, className)}"],
+ },
+ //#endregion //*======== Snippet Wrap ===========
+
+ "Logger": {
+ "prefix": "lg",
+ "body": [
+ "logger({ ${1:${CLIPBOARD}} }, '${TM_FILENAME} line ${TM_LINE_NUMBER}')",
+ ],
+ },
+}
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..e69de29
diff --git a/CITATION.cff b/CITATION.cff
new file mode 100644
index 0000000..7078338
--- /dev/null
+++ b/CITATION.cff
@@ -0,0 +1,25 @@
+abstract: Website for AI-READI project
+authors:
+ - affiliation: FAIR Data Innovations Hub
+ email: ssoundarajan@calmi2.org
+ family-names: Soundarajan
+ given-names: Sanjay
+ - affiliation: FAIR Data Innovations Hub
+ email: bpatel@calmi2.org
+ family-names: Patel
+ given-names: Bhavesh
+ - affiliation: FAIR Data Innovations Hub
+ email: wheresdorian@gmail.com
+ family-names: Portillo
+ given-names: Dorian
+cff-version: 1.2.0
+date-released: '2022-11-28'
+keywords:
+ - EyeACT
+license: MIT
+message: If you use this software, please cite it as below.
+repository-artifact: https://github.com/EyeACT/eyeactstudy.org
+repository-code: https://github.com/EyeACT/eyeactstudy.org
+title: EyeACT Website
+type: software
+version: 0.0.1
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000..50e14ba
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,116 @@
+# Code of Conduct - Template
+
+## Our Pledge
+
+In the interest of fostering an open and welcoming environment, we as
+contributors and maintainers pledge to make participation in our project and
+our community a harassment-free experience for everyone, regardless of age, body
+size, disability, ethnicity, sex characteristics, gender identity and expression,
+level of experience, education, socio-economic status, nationality, personal
+appearance, race, religion, or sexual identity and orientation.
+
+## Our Standards
+
+Examples of behavior that contributes to a positive environment for our
+community include:
+
+- Demonstrating empathy and kindness toward other people
+- Being respectful of differing opinions, viewpoints, and experiences
+- Giving and gracefully accepting constructive feedback
+- Accepting responsibility and apologizing to those affected by our mistakes,
+ and learning from the experience
+- Focusing on what is best not just for us as individuals, but for the
+ overall community
+
+Examples of unacceptable behavior include:
+
+- The use of sexualized language or imagery, and sexual attention or
+ advances
+- Trolling, insulting or derogatory comments, and personal or political attacks
+- Public or private harassment
+- Publishing others' private information, such as a physical or email
+ address, without their explicit permission
+- Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Our Responsibilities
+
+Project maintainers are responsible for clarifying and enforcing our standards of
+acceptable behavior and will take appropriate and fair corrective action in
+response to any behavior that they deem inappropriate,
+threatening, offensive, or harmful.
+
+Project maintainers have the right and responsibility to remove, edit, or reject
+comments, commits, code, wiki edits, issues, and other contributions that are
+not aligned to this Code of Conduct, and will
+communicate reasons for moderation decisions when appropriate.
+
+## Scope
+
+This Code of Conduct applies within all community spaces, and also applies when
+an individual is officially representing the community in public spaces.
+Examples of representing our community include using an official e-mail address,
+posting via an official social media account, or acting as an appointed
+representative at an online or offline event.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported to the community leaders responsible for enforcement at .
+All complaints will be reviewed and investigated promptly and fairly.
+
+All community leaders are obligated to respect the privacy and security of the
+reporter of any incident.
+
+## Enforcement Guidelines
+
+Community leaders will follow these Community Impact Guidelines in determining
+the consequences for any action they deem in violation of this Code of Conduct:
+
+### 1. Correction
+
+**Community Impact**: Use of inappropriate language or other behavior deemed
+unprofessional or unwelcome in the community.
+
+**Consequence**: A private, written warning from community leaders, providing
+clarity around the nature of the violation and an explanation of why the
+behavior was inappropriate. A public apology may be requested.
+
+### 2. Warning
+
+**Community Impact**: A violation through a single incident or series
+of actions.
+
+**Consequence**: A warning with consequences for continued behavior. No
+interaction with the people involved, including unsolicited interaction with
+those enforcing the Code of Conduct, for a specified period of time. This
+includes avoiding interactions in community spaces as well as external channels
+like social media. Violating these terms may lead to a temporary or
+permanent ban.
+
+### 3. Temporary Ban
+
+**Community Impact**: A serious violation of community standards, including
+sustained inappropriate behavior.
+
+**Consequence**: A temporary ban from any sort of interaction or public
+communication with the community for a specified period of time. No public or
+private interaction with the people involved, including unsolicited interaction
+with those enforcing the Code of Conduct, is allowed during this period.
+Violating these terms may lead to a permanent ban.
+
+### 4. Permanent Ban
+
+**Community Impact**: Demonstrating a pattern of violation of community
+standards, including sustained inappropriate behavior, harassment of an
+individual, or aggression toward or disparagement of classes of individuals.
+
+**Consequence**: A permanent ban from any sort of public interaction within
+the community.
+
+## Attribution
+
+This Code of Conduct is adapted from the [Contributor Covenant](https://contributor-covenant.org/), version
+[1.4](https://www.contributor-covenant.org/version/1/4/code-of-conduct/code_of_conduct.md) and
+[2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct/code_of_conduct.md),
+and was generated by [contributing-gen](https://github.com/bttger/contributing-gen).
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..979ee56
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,168 @@
+
+
+# Contributing to Template
+
+First off, thanks for taking the time to contribute! ❤️
+
+All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉
+
+> And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
+>
+> - Star the project
+> - Tweet about it
+> - Refer this project in your project's readme
+> - Mention the project at local meetups and tell your friends/colleagues
+
+
+
+## Table of Contents
+
+- [Code of Conduct](#code-of-conduct)
+- [I Have a Question](#i-have-a-question)
+- [I Want To Contribute](#i-want-to-contribute)
+ - [Reporting Bugs](#reporting-bugs)
+ - [Suggesting Enhancements](#suggesting-enhancements)
+ - [Your First Code Contribution](#your-first-code-contribution)
+ - [Improving The Documentation](#improving-the-documentation)
+- [Styleguides](#styleguides)
+ - [Commit Messages](#commit-messages)
+- [Join The Project Team](#join-the-project-team)
+
+## Code of Conduct
+
+This project and everyone participating in it is governed by the
+[Template Code of Conduct](https://github.com/AI-READI/eyeactstudy.org/blob/main/CODE_OF_CONDUCT.md).
+By participating, you are expected to uphold this code. Please report unacceptable behavior
+to .
+
+## I Have a Question
+
+
+
+Before you ask a question, it is best to search for existing [Issues](https://github.com/EyeACT/eyeactstudy.org/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first.
+
+If you then still feel the need to ask a question and need clarification, we recommend the following:
+
+- Open an [Issue](https://github.com/EyeACT/eyeactstudy.org/issues/new).
+- Provide as much context as you can about what you're running into.
+- Provide project and platform versions (nodejs, npm, etc), depending on what seems relevant.
+
+We will then take care of the issue as soon as possible.
+
+
+
+## I Want To Contribute
+
+> ### Legal Notice
+>
+> When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project license.
+
+### Reporting Bugs
+
+
+
+#### Before Submitting a Bug Report
+
+A good bug report shouldn't leave others needing to chase you up for more information. Therefore, we ask you to investigate carefully, collect information and describe the issue in detail in your report. Please complete the following steps in advance to help us fix any potential bug as fast as possible.
+
+- Make sure that you are using the latest version.
+
+- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/EyeACT/eyeactstudy.org/issues?q=label%3Abug).
+- Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue.
+- Collect information about the bug:
+ - Stack trace (Traceback)
+ - OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
+ - Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant.
+ - Possibly your input and the output
+ - Can you reliably reproduce the issue? And can you also reproduce it with older versions?
+
+
+
+#### How Do I Submit a Good Bug Report?
+
+> You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead sensitive bugs must be sent by email to .
+
+
+
+We use GitHub issues to track bugs and errors. If you run into an issue with the project:
+
+- Open an [Issue](https://github.com/EyeACT/eyeactstudy.org/issues/new). (Since we can't be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and not to label the issue.)
+- Explain the behavior you would expect and the actual behavior.
+- Please provide as much context as possible and describe the _reproduction steps_ that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case.
+- Provide the information you collected in the previous section.
+
+Once it's filed:
+
+- The project team will label the issue accordingly.
+- A team member will try to reproduce the issue with your provided steps. If there are no reproduction steps or no obvious way to reproduce the issue, the team will ask you for those steps and mark the issue as `needs-repro`. Bugs with the `needs-repro` tag will not be addressed until they are reproduced.
+- If the team is able to reproduce the issue, it will be marked `needs-fix`, as well as possibly other tags (such as `critical`), and the issue will be left to be [implemented by someone](#your-first-code-contribution).
+
+
+
+### Suggesting Enhancements
+
+This section guides you through submitting an enhancement suggestion for Template, **including completely new features and minor improvements to existing functionality**. Following these guidelines will help maintainers and the community to understand your suggestion and find related suggestions.
+
+
+
+#### Before Submitting an Enhancement
+
+- Make sure that you are using the latest version.
+
+- Perform a [search](https://github.com/EyeACT/eyeactstudy.org/issues) to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
+- Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library.
+
+
+
+#### How Do I Submit a Good Enhancement Suggestion?
+
+Enhancement suggestions are tracked as [GitHub issues](https://github.com/EyeACT/eyeactstudy.org/issues).
+
+- Use a **clear and descriptive title** for the issue to identify the suggestion.
+- Provide a **step-by-step description of the suggested enhancement** in as many details as possible.
+- **Describe the current behavior** and **explain which behavior you expected to see instead** and why. At this point you can also tell which alternatives do not work for you.
+- You may want to **include screenshots and animated GIFs** which help you demonstrate the steps or point out the part which the suggestion is related to. You can use [this tool](https://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) on Linux.
+- **Explain why this enhancement would be useful** to most Template users. You may also want to point out the other projects that solved it better and which could serve as inspiration.
+
+
+
+### Your First Code Contribution
+
+
+
+### Improving The Documentation
+
+
+
+## Styleguides
+
+### Commit Messages
+
+
+
+## Join The Project Team
+
+
+
+
diff --git a/blog/bradley-malin.md b/blog/bradley-malin.md
new file mode 100644
index 0000000..628ebe8
--- /dev/null
+++ b/blog/bradley-malin.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Bradley Malin'
+date: '2023-10-17'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/ttVpcCk.jpg'
+subtitle: 'Dr. Bradley Malin: One Size Does Not Fit All: How to Build Respectful Cohorts for Biomedical Data Science'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to participate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## October 2023:
+
+This month, Dr. Malin drew upon examples from large-scale data-driven projects like the EMR and bio-repository at Vanderbilt University Medical Center, the eMERGE consortium of the NIH, and the All of Us Research Program, aiming to create a comprehensive database of EMRs, genome sequences, and mHealth records from one million Americans.You can find a recording to his talk [here](https://public.3.basecamp.com/p/YjPGqeLizC6PawLn3fstTa4P)
diff --git a/blog/causal-fairness-in-healthcare.md b/blog/causal-fairness-in-healthcare.md
new file mode 100644
index 0000000..c80660a
--- /dev/null
+++ b/blog/causal-fairness-in-healthcare.md
@@ -0,0 +1,18 @@
+---
+title: 'Causal Fairness in Healthcare'
+authors:
+ - 'Sudip Gupta'
+date: '2024-03-01'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/UtJWuya.jpeg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of March 2024: Causal Fairness in Healthcare
+
+Causal fairness in healthcare refers to an ethical and methodological approach aimed at addressing disparities and ensuring equity in healthcare outcomes by focusing on the underlying causal relationships between interventions and health outcomes. It involves identifying and understanding the causal factors that contribute to differential health outcomes among individuals or populations, including social determinants of health, environmental factors, and structural inequalities. Causal fairness emphasizes the importance of considering not only statistical parity but also the causal mechanisms that lead to healthcare disparities, with the goal of designing interventions and policies that target these root causes to promote fairness and equity in healthcare delivery and outcomes.
diff --git a/blog/data-quality-and-algorithmic-fairness.md b/blog/data-quality-and-algorithmic-fairness.md
new file mode 100644
index 0000000..1b7f161
--- /dev/null
+++ b/blog/data-quality-and-algorithmic-fairness.md
@@ -0,0 +1,22 @@
+---
+title: 'Data Quality and Algorithmic Fairness'
+authors:
+ - 'Babak Salimi'
+date: '2023-10-26'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/14LzLcf.jpg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of October 2023: Data Quality and Algorithmic Fairness
+
+In today's digital age, algorithmic decision-making systems play a crucial role in fields like credit scoring and medical diagnoses. While they are often praised for being 'objective,' these systems can exhibit biases, mostly stemming from the data they rely on. Current methods for reducing bias in machine learning tend to focus on fixing the surface-level issues, rather than addressing the root causes. Taking inspiration from the idea that "garbage in, garbage out," it becomes clear that we need to shift towards a data-centric approach. This means improving data quality right from the beginning. Our research aims to use established data quality management practices from the database field to effectively tackle the underlying causes of algorithmic biases, resulting in more dependable and fair algorithmic systems.
+
+
+
+
diff --git a/blog/data-subject.md b/blog/data-subject.md
new file mode 100644
index 0000000..488be8f
--- /dev/null
+++ b/blog/data-subject.md
@@ -0,0 +1,20 @@
+---
+title: 'Data Subject'
+authors:
+ - 'Kadija-Ferryman'
+date: '2023-07-28'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/wflkMib.jpg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of July 2023: Data subject
+
+The term `data subject` refers to an individual whose data are used in data science research using de-identified, public datasets.
+
+In this article, the authors compare the data subject with the human subject in traditional human subjects research and raise questions about trust and responsibility when using public and de-identified data for data science analysis:
diff --git a/blog/dignitary-privacy.md b/blog/dignitary-privacy.md
new file mode 100644
index 0000000..ebe900a
--- /dev/null
+++ b/blog/dignitary-privacy.md
@@ -0,0 +1,22 @@
+---
+title: 'Dignitary Privacy'
+authors:
+ - 'Kadija-Ferryman'
+date: '2023-09-28'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/q08HQen.jpg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of September 2023: Dignitary Privacy
+
+“Dignitary privacy is based on a belief that privacy is intrinsically valuable, whereas resource privacy is based on a belief that privacy is simply a tool that has instrumental value.”
+
+Hughes, RL David. "Two concepts of privacy." Computer Law & Security Review 31.4 (2015): 527-537.
+
+
diff --git a/blog/glamour-ai.md b/blog/glamour-ai.md
new file mode 100644
index 0000000..83e599a
--- /dev/null
+++ b/blog/glamour-ai.md
@@ -0,0 +1,18 @@
+---
+title: 'Glamour AI'
+authors:
+ - 'Cybil Roehrenbeck'
+date: '2024-05-01'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/LTuUBKW.jpeg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `term of the month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of May 2024: Glamour AI
+
+AI that has little or no meaningful clinical value
diff --git a/blog/indigenous-data-sovereinity-and-blockchain.md b/blog/indigenous-data-sovereinity-and-blockchain.md
new file mode 100644
index 0000000..a441a14
--- /dev/null
+++ b/blog/indigenous-data-sovereinity-and-blockchain.md
@@ -0,0 +1,18 @@
+---
+title: 'Indigenous Data Sovereignty and Blockchain'
+authors:
+ - 'Timothy Mackey'
+date: '2024-02-14'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/f1oj3ju.jpg.'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of February 2024: Indigenous Data Sovereignty and Blockchain
+
+"Indigenous data sovereignty (IDS) is defined as the right of an Indigenous nation to govern the collection, ownership, and application of data generated by its members. Blockchain systems are primarily composed of a distributed ledger that records transactions and is shared and agreed upon by all parties as the sole record of transactions (with agreement on transactions established through a process known as a consensus mechanism); a cryptographic hash function (used to generate a value to cryptographically link series of “blocks” of data, ensuring their security and near immutability); and a series of nodes (e.g., computers in a peer-to-peer network) that make up the network that operates the blockchain. Learn more by reading the following article [here]()
diff --git a/blog/invisible-populations.md b/blog/invisible-populations.md
new file mode 100644
index 0000000..637b39f
--- /dev/null
+++ b/blog/invisible-populations.md
@@ -0,0 +1,18 @@
+---
+title: 'Invisible Populations'
+authors:
+ - 'Michael D. Abràmoff'
+date: '2024-06-01'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/1UmVa4W.jpeg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `term of the month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of June 2024: Invisible Populations
+
+A subset of the population that is not considered in healthcare clinical trials and are not considered in the data sets for new AI applications. This can lead to increased health disparities for invisible populations who may also not have consistent access to high-quality care. In order to improve patient outcomes across healthcare, invisible populations must be accounted for and included in clinical trials and considered in the solutions being created to increase patient access
diff --git a/blog/learning-code-tests-nada-haboudal.md b/blog/learning-code-tests-nada-haboudal.md
new file mode 100644
index 0000000..f72757c
--- /dev/null
+++ b/blog/learning-code-tests-nada-haboudal.md
@@ -0,0 +1,67 @@
+---
+title: 'Learning and Implementing Code Tests'
+authors:
+ - 'Nada-Haboudal'
+date: '2024-01-18'
+categories:
+ - 'Engineering'
+heroImage: 'https://i.imgur.com/RTykJ1Q.jpg'
+subtitle: "An Intern's Perspective"
+tags:
+ - 'pytest'
+---
+
+Welcome to my blog post, where I showcase my work with pytest, a super handy tool for testing Python code.
+
+## Introduction
+
+As part of my internship with the AI-READI project, I am working with the team developing FAIRhub, a platform aimed at simplifying the management, preparation, and sharing of datasets that are ready for downstream AI-based analysis. A major part of making data AI-ready is to make it compliant with the FAIR (Findable, Accessible, Interoperable, Reusable) Principles, which are a set of high-level instructions for making data optimally reusable by humans and machines including AI models. This consists for instance of structuring the data according to a strict folder structure, using accessible file formats, including rich metadata with controlled vocabulary, etc. This can be difficult and time consuming to do manually, so the FAIRhub team is developing a Python package called pyfairdatatool that will help automate the process of making data FAIR on the FAIRhub platform. My work within the team consists of developing code tests for pyfairdatatools, to ensure that for a given input, functions in pyfairdatatools are providing the expected output. I used a Python tool called pytest to achieve that. I explain below in more detail what pyfairdatatools is and how I used pytest to develop code tests for it.
+
+## Overview
+
+The pyfairdatatools package consists of a collection of helpful functions for extracting, transforming raw data, generating relevant metadata files and validating the data and metadata files against the FAIR guidelines adopted by the AI-READI project.
+
+## Elements
+
+pyfairdatatools has many elements but the elements we are going to focus on here are the schema, validation code, and testing code.
+
+1. **The schema** is like a blueprint for data; it outlines the structure, type, and format of the data expected in a JSON file. For example, the `participants.schema.json` in the pyfairdatatols project specifies the rules for what information should be included about participants in a study and how that information should be formatted
+2. **The validation** code is a set of rules or functions that check if the actual data matches the blueprint described by the schema. It ensures that the data you have meets the expected standards and guidelines before you proceed with using it in your project.
+3. **Testing the validation code** involves writing tests that confirm whether the validation code works correctly. It typically involves passing in known data to the validate functions and checking to make sure they return the correct result (true if the data meets the schema, false otherwise).
+
+### To explain the elements using real-world analogies
+
+1. **The schema:** Think of a schema as your grocery shopping list. It's got specifics like what you need to buy and how much.
+
+2. **The validation:** This is like checking your cart against the list before you check out. Our `validate.py` is the diligent checker here.
+
+3. **Testing the validation code:** Testing with pytest is like doing a mock shopping run to make sure you don’t forget anything when it’s game time.
+
+## Learning pytest
+
+I picked up pytest by checking out a few key resources ( listed below), which really helped me understand the general idea of code testing and how pytest works. I also got a lot of help from ChatGPT to go through the code line by line, and that really sped up my learning. Once I got a feel for the different styles of writing test code, it became a lot easier to understand previous code done by my peers and improve on it.
+
+## Implementing Tests
+
+My job was to make sure our pyfairdatatools package was bug-free and working smoothly by writing tests to confirm the effectiveness of the validation code. I implemented the following steps to achieve our goal.
+
+1. **Understanding the Schema:** Understanding how our data should be structured.
+ For example: figuring out which parts were essential and which were optional.
+
+2. **Building the Test Checklist:** I harnessed Excel to create a detailed checklist, documenting each aspect of the schema we needed to test.
+
+3. **Crafting Test Scenarios:** Developed a range of test scenarios using pytest, guided by our checklist to ensure no error slipped through.
+
+4. **Optimising the Code:** Aimed to make our code more efficient by consolidating tests from various functions and keeping the comments clear and concise.
+
+Through my process, I have successfully increased test coverage for our code from 30% to 80%. This means the test covers 80% of the code lines increasing the reliability of the code to function as intended.
+
+## Conclusion
+
+Diving into pytest has been an insightful experience. It's way more than just a testing tool. It's like a roadmap for our code, making sure everything runs smoothly and as expected, which is important when handling a large volume of data and collaborating with various software developers. I believe this will be very valuable for me as I anticipate developing AI/ML models in the future using Python, and I can foresee using pytest to build code tests.
+
+## References
+
+- FAIR Data Principles:
+- Nature Article on FAIR Data:
+- pyfairdatatools:
diff --git a/blog/precision-medicine.md b/blog/precision-medicine.md
new file mode 100644
index 0000000..3784145
--- /dev/null
+++ b/blog/precision-medicine.md
@@ -0,0 +1,18 @@
+---
+title: 'Precision Medicine'
+authors:
+ - 'James Tabery'
+date: '2023-12-08'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/DxGleb8.jpg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of December 2023: Precision Medicine
+
+Watch this short informational video on precision medicine [here](https://urldefense.com/v3/__https://www.youtube.com/watch?v=zkagtWSeisQ__;!!LLK065n_VXAQ!ibH1zXJz1040px17h8fOxc_Sz-1ZDSbY8tUQOpAN9V9aXfH9zPKXLdqMIXN3Itax7fKj9q9mPU-wb0SWdp4Ahv1R$)
diff --git a/blog/precision-phi-screening.md b/blog/precision-phi-screening.md
new file mode 100644
index 0000000..dcaf386
--- /dev/null
+++ b/blog/precision-phi-screening.md
@@ -0,0 +1,20 @@
+---
+title: 'Precision PHI Screening'
+authors:
+ - 'Xiaoqian Jiang'
+date: '2023-11-28'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/WMl3JRa.jpg.'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of November 2023: Precision PHI Screening
+
+"This term reflects the paper's emphasis on using high-throughput machine learning models to precisely detect sensitive data, specifically Protected Health Information (PHI), in electronic health records. The term 'Precision' highlights the accuracy and specificity of the approach, while 'PHI Screening' directly references the focus on identifying and protecting sensitive health information in compliance with regulations like HIPAA. This term aligns with the paper's innovative approach to enhancing data privacy and security in the healthcare domain through advanced machine learning techniques."
+
+
diff --git a/blog/social-license.md b/blog/social-license.md
new file mode 100644
index 0000000..6fa6f14
--- /dev/null
+++ b/blog/social-license.md
@@ -0,0 +1,19 @@
+---
+title: 'Social License'
+authors:
+ - 'Kadija-Ferryman'
+date: '2023-08-31'
+categories:
+ - 'Term of the Month'
+heroImage: 'https://i.imgur.com/09Gj9al.jpg'
+subtitle: 'Your term of the month is here!'
+tags:
+ - 'Term of the Month'
+---
+
+Every month, ETAI will be sharing a term or concept of the month that is related to ethical issues in biomedical research. The `Term of the Month` is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## Term of August 2023: Social License
+
+In a recent article in the Stanford Social Innovation Review, a group of authors “define a social license as the process of building trust and legitimacy from ongoing (i.e., constantly renewed) community or stakeholder engagement and acceptance of how data is being accessed and reused.”
+We invite the AI-READI team to read the [article](https://urldefense.com/v3/__https://ssir.org/articles/entry/the_urgent_need_to_reimagine_data_consent__;!!LLK065n_VXAQ!lDb8W7AXHvROJnDCTXO5SrOo1qQuCmsANB2HElJhsgIGxNSxQ0gTwa8mxXxRq1vojehLpV71JgFqpA0HtbDiNL7AdfuH$) and consider how the concept of social license may or may not be relevant to our study.
diff --git a/blog/virtual-monthly-speaker-series-tim-mackey.md b/blog/virtual-monthly-speaker-series-tim-mackey.md
new file mode 100644
index 0000000..efb41a9
--- /dev/null
+++ b/blog/virtual-monthly-speaker-series-tim-mackey.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Tim Mackey'
+date: '2024-02-27'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/QUKWYUf.jpeg'
+subtitle: 'Dr. Tim Mackey: Leveraging Blockchain Technology to Enable Indigenous Data Sovereignty of Genomic Data'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to particpate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## February 2024
+
+This month, Dr. Mackey discussed a project funded by the Robert Wood Johnson Foundation in partnership with The Native Biodata Consortium to develop a blockchain-based governance system for managing Indigenous genomic data. He described the prototype's architecture, including features like privacy preservation, distributed governance, and token/voting rights. You can find a recording to his talk [here](https://public.3.basecamp.com/p/qoCoo1Pfw9Qg2eeqEJbW958E)
diff --git a/blog/virtual-monthly-speakers-babak-salimi.md b/blog/virtual-monthly-speakers-babak-salimi.md
new file mode 100644
index 0000000..681fcf0
--- /dev/null
+++ b/blog/virtual-monthly-speakers-babak-salimi.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Spaker Series'
+authors:
+ - 'Babak Salimi'
+date: '2023-11-28'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/IKiDdzD.jpg'
+subtitle: 'Dr. Babak Salimi: Certifying Fair Predictive Models in the Face of Selection Bias'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to participate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## November 2023
+
+This month, Dr. Salimi offered insights for data management, machine learning, and responsible data science, emphasizing the significance of handling selection bias in algorithmic decision-making. You can find a recording to his talk [here](https://public.3.basecamp.com/p/JGgT9SDA27Aaoir2qbwf2mGm)
diff --git a/blog/virtual-monthly-speakers-cybil-roehrenbeck.md b/blog/virtual-monthly-speakers-cybil-roehrenbeck.md
new file mode 100644
index 0000000..0f6c992
--- /dev/null
+++ b/blog/virtual-monthly-speakers-cybil-roehrenbeck.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Cybil Roehrenbeck'
+date: '2024-05-21'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/reDwsFz.jpeg'
+subtitle: 'Cybil Roehrenbeck: Legal and regulatory landscape of healthcare AI technologies'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to particpate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## May 2024:
+
+This month, Cybil Roehrenbeck discussed the rapidly evolving landscape of AI regulations in clinical settings. Policymakers swiftly adopted new rules, and the talk provided a comprehensive overview of the applicable laws and regulations for developers and users of AI medical technologies. Key topics included privacy, liability, commercialization, research, and authorization issues. [here](https://public.3.basecamp.com/p/oGPDHP411SEdM2ENGNt9bfRq)
diff --git a/blog/virtual-monthly-speakers-debra-mathews.md b/blog/virtual-monthly-speakers-debra-mathews.md
new file mode 100644
index 0000000..1387561
--- /dev/null
+++ b/blog/virtual-monthly-speakers-debra-mathews.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Debra-Mathews'
+date: '2023-09-19'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/YEtl3b5.jpg'
+subtitle: 'Dr. Debra Mathews: Using Population Descriptors in Genetics and Genomics Research: A New Framework for an Evolving Field — Lessons from a NASEM Consensus Study for AI-READI'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to particpate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## September 2023
+
+This month, Dr Mathews provided an overview of the recent NASEM consensus study report that focused on the use of race and ethnicity and other population descriptors in genomics research, including the recommendations made by the committee. She offered some reflections on the report from an ethics perspective and discussed potential lessons for AI-READI. You can find a recording to her talk [here](https://public.3.basecamp.com/p/KNgYxCzBShfhdY7obPpDiz4Q)
diff --git a/blog/virtual-monthly-speakers-series-Xiaoqian-Jiang.md b/blog/virtual-monthly-speakers-series-Xiaoqian-Jiang.md
new file mode 100644
index 0000000..04e2370
--- /dev/null
+++ b/blog/virtual-monthly-speakers-series-Xiaoqian-Jiang.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Xiaoqian Jiang'
+date: '2023-12-05'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/pcliq1b.jpg'
+subtitle: 'Dr. Xiaoqian Jiang: Sensitive Data Detection with High-Throughput Machine Learning Models in Electronic Health Records'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to participate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## December 2023
+
+This month, Dr. Jiang explored how a groundbreaking discovery was utilized to generate 30 metadata-based features through machine learning for the automatic detection of PHI fields in structured Electronic Health Record (EHR) data. The model, trained on diverse EHR databases, attained an impressive 99% accuracy in identifying PHI-related fields for unseen datasets, presenting significant implications for industries dealing with sensitive data.You can find a recording to his talk [here](https://public.3.basecamp.com/p/oyZRyATXk54EDGtEv3vXY9Mb)
diff --git a/blog/virtual-monthly-speakers-series-aaron-goldenberg.md b/blog/virtual-monthly-speakers-series-aaron-goldenberg.md
new file mode 100644
index 0000000..0919b73
--- /dev/null
+++ b/blog/virtual-monthly-speakers-series-aaron-goldenberg.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Aaron Goldenberg'
+date: '2023-07-25'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/VhnkzJu.jpg'
+subtitle: 'Dr. Aaron Goldenberg: Unanswered ELSI Questions in the Development of Biomedical Repositories: Privacy, Equity, and Stewardship'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to particpate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## July 2023
+
+This month, Dr. Goldenberg discussed the evolving ethical, legal, and social concerns (ELSI) associated with biorepositories and biobanking. The discussion covers a range of topics, including legal cases and ongoing research in this domain, particularly focusing on privacy issues, heightened equity considerations, shifts in Return on Research (ROR), and matters related to trust and trustworthiness. You can find a recording to his talk [here](https://public.3.basecamp.com/p/JAt3CMhYo3uZwTS2RDaK1Thn)
diff --git a/blog/virtual-monthly-speakers-series-berk-ustun.md b/blog/virtual-monthly-speakers-series-berk-ustun.md
new file mode 100644
index 0000000..c0403b8
--- /dev/null
+++ b/blog/virtual-monthly-speakers-series-berk-ustun.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Berk Ustun'
+date: '2023-06-06'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/kQ7pEgb.jpeg'
+subtitle: 'Dr. Berk Ustun: Towards Personalization without Harm'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to particpate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## June 2023
+
+This month, Dr. Ustun discussed how machine learning models, personalized with sensitive features like sex, age group, and HIV status, can perform better for populations but worse for specific groups, potentially causing harm. He proposed formal conditions for fair group attribute use and outlined practical methods, such as "personalization budgets" and "participatory systems," to ensure fairness in personalized predictions. You can find a recording to his talk [here](https://public.3.basecamp.com/p/oMgBK3rWBWG4tx5hwo6ssJTY)
diff --git a/blog/virtual-monthly-speakers-series-joseph-yracheta.md b/blog/virtual-monthly-speakers-series-joseph-yracheta.md
new file mode 100644
index 0000000..ce61c68
--- /dev/null
+++ b/blog/virtual-monthly-speakers-series-joseph-yracheta.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Joseph-Yracheta'
+date: '2023-08-29'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/FAcuPSX.jpg'
+subtitle: 'Joseph Yracheta: The Dissonance between Scientific Altruism & Capitalist Extraction for & from the Amerindigenous'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to particpate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## August 2023
+
+American Indians experience elevated rates of health conditions like diabetes, chronic kidney disease, and cardiovascular disease, as well as greater exposure to environmental hazards. Similarly, Latin Indigenous and Polynesian populations exhibit comparable health risk profiles, despite different ancestral backgrounds, illustrating the enduring effects of colonization. This discussion emphasizes the responsibility of scientists to build trust within an untrustworthy system, as seen from the perspective of First Peoples, by highlighting initiatives like the Native BioData Consortium that aim to enhance trustworthiness and empower indigenous communities within the colonial framework. You can find a recording to his talk [here](https://public.3.basecamp.com/p/hNTfeyKNpAYVVKExLYKpXZsK)
diff --git a/blog/virtual-monthly-speakers-sudip-gupta.md b/blog/virtual-monthly-speakers-sudip-gupta.md
new file mode 100644
index 0000000..599e8a2
--- /dev/null
+++ b/blog/virtual-monthly-speakers-sudip-gupta.md
@@ -0,0 +1,18 @@
+---
+title: 'Virtual Monthly Speaker Series'
+authors:
+ - 'Sudip Gupta'
+date: '2024-03-19'
+categories:
+ - 'Virtual Monthly Speaker Series'
+heroImage: 'https://i.imgur.com/M16GPQy.jpeg'
+subtitle: 'Dr. Sudip Gupta: Algorithmic Bias and Causal Fairness in Healthcare Evidence from MIMIC database'
+tags:
+ - 'Virtual Monthly Speaker Series'
+---
+
+Every month, ETAI will invite a speaker to particpate in a monthly speaker series related to ethical issues in biomedical research. The monthly speaker series is part of our module's milestones relating to engagement and reflection on ethics with the AI-READI team.
+
+## March 2024:
+
+This month, Dr. Gupta discussed causal fairness principles to mitigate bias and promote equity in healthcare using MIMIC 3 data. By addressing the causal factors behind health disparities, healthcare systems can implement interventions targeting the root causes of inequity, fostering a more just and equitable healthcare landscape. You can find a recording to his talk [here](https://public.3.basecamp.com/p/NXEwDiebuyAm6XvRhviqqoHh)
diff --git a/codemeta.json b/codemeta.json
new file mode 100644
index 0000000..e6d2aa2
--- /dev/null
+++ b/codemeta.json
@@ -0,0 +1,50 @@
+{
+ "@context": "https://doi.org/10.5063/schema/codemeta-2.0",
+ "@type": "SoftwareSourceCode",
+ "license": "https://spdx.org/licenses/MIT",
+ "codeRepository": "https://github.com/EyeACT/eyeactstudy.org",
+ "dateCreated": "2022-11-28",
+ "dateModified": "2022-11-28",
+ "downloadUrl": "https://github.com/EyeACT/eyeactstudy.org",
+ "issueTracker": "https://github.com/EyeACT/eyeactstudy.org/issues",
+ "name": "EyeACT Website",
+ "version": "0.0.1",
+ "description": "Website for the EyeACT project",
+ "applicationCategory": "Scientific",
+ "developmentStatus": "active",
+ "keywords": ["EyeAct"],
+ "programmingLanguage": ["JavaScript", "CSS"],
+ "relatedLink": ["https://github.com/EyeAct"],
+ "author": [
+ {
+ "@type": "Person",
+ "givenName": "Sanjay",
+ "familyName": "Soundarajan",
+ "email": "ssoundarajan@calmi2.org",
+ "affiliation": {
+ "@type": "Organization",
+ "name": "FAIR Data Innovations Hub"
+ }
+ },
+ {
+ "@type": "Person",
+ "givenName": "Bhavesh",
+ "familyName": "Patel",
+ "email": "bpatel@calmi2.org",
+ "affiliation": {
+ "@type": "Organization",
+ "name": "FAIR Data Innovations Hub"
+ }
+ },
+ {
+ "@type": "Person",
+ "givenName": "Dorian",
+ "familyName": "Portillo",
+ "email": "wheresdorian@gmail.com",
+ "affiliation": {
+ "@type": "Organization",
+ "name": "FAIR Data Innovations Hub"
+ }
+ }
+ ]
+}
diff --git a/commitlint.config.js b/commitlint.config.js
new file mode 100644
index 0000000..0e0cd71
--- /dev/null
+++ b/commitlint.config.js
@@ -0,0 +1,6 @@
+// eslint-disable-next-line @typescript-eslint/no-var-requires
+const { commitlintConfig } = require('@fairdataihub/config');
+
+const config = commitlintConfig();
+
+module.exports = config;
diff --git a/devmoji.config.js b/devmoji.config.js
new file mode 100644
index 0000000..da9c239
--- /dev/null
+++ b/devmoji.config.js
@@ -0,0 +1,6 @@
+// eslint-disable-next-line @typescript-eslint/no-var-requires
+const { devmojiConfig } = require('@fairdataihub/config');
+
+const config = devmojiConfig();
+
+module.exports = config;
diff --git a/events/arvo-2024.md b/events/arvo-2024.md
new file mode 100644
index 0000000..4864d6d
--- /dev/null
+++ b/events/arvo-2024.md
@@ -0,0 +1,79 @@
+---
+title: 'ARVO 2024 Annual Meeting'
+startDateTime: '2024-05-05T08:00:00'
+endDateTime: '2024-05-09T17:00:00'
+heroImage: 'https://i.imgur.com/tpVvtdW.jpeg'
+subtitle: 'The ARVO Annual Meeting is the premiere gathering for eye and vision scientists from across the globe, at all career stages, students, and those in affiliated fields to share the latest research findings and collaborate on innovative solutions'
+type: 'Conference'
+timeZone: 'America/Los_Angeles'
+location: 'Seattle, WA'
+---
+
+## Overview
+
+The theme of the 2024 Annual Meeting addresses how vision research is continually being transformed by new information and technologies. Exponentially expanding computing power is giving rise to improved artificial intelligence and powerful big data. Increasingly sensitive and elegant molecular techniques, including CRISPR and mRNA technologies, as well as more sophisticated imaging modalities, virtual reality, and breakthroughs in gene therapy are catalyzing our research as we aim to treat, cure and ultimately prevent blinding eye diseases.
+
+The AI-READI project will be presenting six posters at the ARVO 2024 Annual Meeting. Information about the posters are as follows:
+
+### Generation of a Multimodal Atlas of Type 2 Diabetes for Artificial Intelligence (AI-READI): Purpose and Design
+
+- **Presentation Number**: 3728
+- **Posterboard Number**: B0391
+- **Presentation Type**: Poster Session
+- **Session Number**: 347
+- **Session Title**: AI in epidemiology and clinical research
+- **Session Date**: May 7, 2024 from 1:15 PM to 3:00 PM
+
+### Artificial Intelligence Ready and Equitable Atlas for Diabetes Insights (AI-READI) study: Report on recruitment strategy and pilot data collection
+
+- **Presentation Number**: 3727
+- **Posterboard Number**: B0390
+- **Presentation Type**: Poster Session
+- **Session Number**: 347
+- **Session Title**: AI in epidemiology and clinical research
+- **Session Date**: May 7, 2024 from 1:15 PM to 3:00 PM
+
+### Clinical Dataset Structure: A Universal Standard for Structuring Clinical Research Data and Metadata
+
+- **Presentation Number**: 2418
+- **Posterboard Number**: A0310
+- **Presentation Type**: Poster Session
+- **Session Number**: 250
+- **Session Title**: Big data and EHR analysis
+- **Session Date**: May 6, 2024 from 3:00 PM to 4:45 PM
+
+### Portable Environmental Sensor Enabling Studies of Exposome on Ocular Health
+
+- **Presentation Number**: 6370
+- **Posterboard Number**: B0692
+- **Presentation Type**: Poster Session
+- **Session Number**: 534
+- **Session Title**: Ophthalmology health and healthcare research
+- **Session Date**: May 9, 2024 from 11:45 AM to 1:30 PM
+
+### Streamlined DICOM Standardization in Retinal Imaging: Bridging Gaps in Ophthalmic Healthcare and AI Research
+
+- **Presentation Number**: 5879
+- **Posterboard Number**: B0480
+- **Presentation Type**: Poster Session
+- **Session Number**: 510
+- **Session Title**: Advancements in ophthalmic imaging
+- **Session Date**: May 9, 2024 from 8:00 AM to 9:45 AM
+
+### High Prevalence of Artifacts in Optical Coherence Tomography Images with Adequate Signal Strength
+
+- **Presentation Number**: 1598
+- **Posterboard Number**: A0232
+- **Presentation Type**: Poster Session
+- **Session Number**: 216
+- **Session Title**: Machine learning for classification
+- **Session Date**: May 6, 2024 from 8:30 AM to 10:15 AM
+
+### Artificial Intelligence Ready and Equitable Atlas for Diabetes Insights (AI-READI) Research Internship Program: Recruiting and Developing a Diverse AI Workforce
+
+- **Presentation Number**: 3726
+- **Posterboard Number**: B0389
+- **Presentation Type**: Poster Session
+- **Session Number**: 347
+- **Session Title**: AI in epidemiology and clinical research
+- **Session Date**: May 7, 2024 from 1:15 PM to 3:00 PM
diff --git a/events/bridge2ai-april-2024-open-house.md b/events/bridge2ai-april-2024-open-house.md
new file mode 100644
index 0000000..e28fde7
--- /dev/null
+++ b/events/bridge2ai-april-2024-open-house.md
@@ -0,0 +1,34 @@
+---
+title: 'Bridge2AI April 2024 Open House'
+startDateTime: '2024-04-18T15:45:00'
+endDateTime: '2024-04-19T17:00:00'
+heroImage: 'https://i.imgur.com/FO21rRg.jpeg'
+subtitle: 'People, Ethics and Data'
+type: 'Conference'
+timeZone: 'America/New_York'
+location: 'Rockville, MD'
+---
+
+## Overview
+
+The Bridge2AI Open House will focus on collaborative approaches, learn about current considerations, explore new datasets, and discuss other key issues related to bridging the gap from biomedical information to AI. Sessions will be centered around the activities of the Bridge2AI Data Generation Projects, which stemmed from Grand Challenges put forth by the National Institutes of Health (NIH). The Four Grand Challenges are:
+
+- [Bridge2AI for Clinical Care](https://chorus4ai.org/) (Patient-Focused Collaborative Hospital Repository Uniting Standards (CHoRUS) for Equitable AI)
+- [Functional Genomics Grand Challenge](https://cm4ai.org/) (Cell Maps for AI (CM4AI) Data Generation Project)..
+- [Precision Public Health (Voice) Grand Challenge](https://www.b2ai-voice.org/) (Voice as a Biomarker of Health – Building an ethically sourced, bioaccoustic database to understand disease like never before).
+- [Salutogenesis Grand Challenge](https://aireadi.org/) (The Artificial Intelligence Ready and Equitable Atlas for Diabetes Insights (AI-READI) project)
+
+The Open House will consist of both Bridge2AI-wide sessions on cross-cutting themes, such as ethical considerations for biomedical AI, data exploration sessions to showcase the new datasets being developed by the Grand Challenges, and the launching of new data challenges around these datasets. The Open House will emphasize the sharing of expertise and insight through shared presentations, with live demonstrations during the event.
+
+The Open House will be held on the afternoon of April 18th and all-day April 19th(till 3:00 pm for the main sessions). We welcome your application to participate through the Apply Link above, and please address some basic information such that we can have a diverse expertise and experience levels for the event.
+
+Please apply by March 22nd to ensure registration availability by the conference deadline.
+
+**When**: April 18-19, 2024
+**Where**: NIH Neuroscience Building, Bethesda, MD
+**Registration**:
+
+Attendees will have an opportunity to meet the DGPs and learn about the launch of Bridge2AI’s Data Challenges and the road ahead with biomedical AI.
+More information about the Open House and registration details may be found at .
+Space for in-person attendance is limited, so please register early!
+Learn more about the NIH Common Fund’s Bridge to Artificial Intelligence (Bridge2AI) program.
diff --git a/events/bridge2ai-pi-meeting.md b/events/bridge2ai-pi-meeting.md
new file mode 100644
index 0000000..98e5535
--- /dev/null
+++ b/events/bridge2ai-pi-meeting.md
@@ -0,0 +1,14 @@
+---
+title: 'Bridge2AI Annual PIs Meeting'
+startDateTime: '2024-12-05T08:00:00'
+endDateTime: '2024-12-06T17:00:00'
+heroImage: 'https://images.unsplash.com/photo-1549496620-037fca760261?q=80&w=2669&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'
+subtitle: 'The Bridge2AI Annual PIs Meeting is a gathering of the Bridge2AI Consortium PIs to discuss high-level progress and strategies.'
+type: 'Workshop'
+timeZone: 'America/Los_Angeles'
+location: 'San Diego, CA'
+---
+
+## Overview
+
+The Bridge2AI Annual PIs Meeting is a gathering of the Bridge2AI Consortium PIs to discuss high-level progress and strategies. More details will be provided as the event approaches.
diff --git a/events/dknet-Webinar.md b/events/dknet-Webinar.md
new file mode 100644
index 0000000..9af07e1
--- /dev/null
+++ b/events/dknet-Webinar.md
@@ -0,0 +1,36 @@
+---
+title: 'Introduction to AI-READI, Studying Salutogenesis in T2DM'
+startDateTime: '2024-10-11T11:00:00'
+endDateTime: '2024-10-11T12:00:00'
+heroImage: 'https://i.imgur.com/CNG6e01.jpeg'
+subtitle: 'This webinar will introduce the AI-READI project, present the dataset, show how to request it, and explore research questions for machine learning, such as predicting health improvement in T2DM, understanding disease progression, and investigating risk factors.'
+type: 'Webinar '
+timeZone: 'America/Los_Angeles'
+location: 'Online'
+---
+
+## Presenters:
+
+- [Cecilia Lee](/team#Cecilia-Lee), MD, MS. Professor, Klorfine Family Endowed Chair of Ophthalmology, University of Washington
+- [Bhavesh Patel](/team#Bhavesh-Patel), PhD. Research Professor, California Medical Innovations Institute
+- [Sally L. Baxter](/team#Sally-Baxter), MD, MSc. Associate Professor of Ophthalmology and Biomedical Informatics, University of California San Diego
+
+## Overview
+
+The AI-READI (Artificial Intelligence Ready and Equitable Atlas for Diabetes Insights, https://aireadi.org) project, funded by the NIH Common Fund’s Bridge2AI Program, aims to develop a multimodal dataset specifically designed to be AI-ready for the study of salutogenesis in Type 2 Diabetes Mellitus (T2DM). Despite advancements in diabetes care, limited knowledge exists on how individuals with T2DM may revert to health. AI-READI team is building this dataset from a diverse cohort of 4,000 participants, ensuring it is structured for immediate use in machine learning algorithm training and analysis. The project emphasizes ethical and equitable data collection, adherence to FAIR (Findable, Accessible, Interoperable, Reusable) data principles, and establishing best practices for data sharing and management. By focusing on AI-readiness, the dataset will enable rapid application of machine learning to uncover novel insights into effective treatment strategies.
+
+### The top 3 key questions that Bridge2AI AI-READI datasets can answer:
+
+1. How can we better understand Type 2 Diabetes (T2DM) heterogeneity?
+2. What are the connections between multi-organ function in T2DM, and how are the kidney, heart, eye, brain interlinked?
+3. How do interactions between environmental factors (e.g. air pollution) drive outcomes in T2DM?
+
+### Date/Time:
+
+Friday, October 11, 2024, 11 am - 12 pm PT
+
+### Dial-in Information:
+
+https://uchealth.zoom.us/meeting/register/tZEsdOmqqDgiEtes2c8OVfCoFPZlZ2vxi6Hx.
+
+More information about the webinar may be found [here](https://dknet.org/about/blog/2776)!
diff --git a/events/trm-bridge2ai-lecture.md b/events/trm-bridge2ai-lecture.md
new file mode 100644
index 0000000..9dc431e
--- /dev/null
+++ b/events/trm-bridge2ai-lecture.md
@@ -0,0 +1,24 @@
+---
+title: 'Introduction to AI-READI, Studying Salutogenesis in T2DM'
+startDateTime: '2024-10-10T12:00:00'
+endDateTime: '2024-10-10T15:00:00'
+heroImage: 'https://i.imgur.com/KO3ZmU4.jpeg'
+subtitle: 'This lecture, in collaboration with the Grand Challenges (GCs) at Bridge2AI, the Bridge Center Training, Recruitment, and Mentorship Working Group introduces a new education module: “Introduction to the Bridge2AI GC Datasets".'
+type: 'Lecture'
+timeZone: 'America/New_York'
+location: 'Online'
+---
+
+## Overview
+
+In collaboration with the Grand Challenges (GCs) at Bridge2AI, the Bridge Center Training, Recruitment, and Mentorship Working Group presents a new education module launching this fall: “Introduction to the Bridge2AI GC Datasets.” Please join us on Thursday, October 10th 2024, for the first lecture in this series “Introduction to AI-READI, Studying Salutogenesis in T2DM.”Please see attached for more information. We look forward to your attendance!
+
+### Date/Time:
+
+Thursday, October 10, 2024, 12 pm - 3 pm EDT
+
+### Dial-in Information:
+
+https://uclahs.zoom.us/j/96802224199
+
+More information about the webinar may be found [here](https://drive.google.com/drive/u/0/folders/1LqvCyQos7w_N7is8Ux1VxFgEgckNHsMQ)!
diff --git a/next-sitemap.config.js b/next-sitemap.config.js
new file mode 100644
index 0000000..4f91c40
--- /dev/null
+++ b/next-sitemap.config.js
@@ -0,0 +1,11 @@
+/**
+ * @type {import('next-sitemap').IConfig}
+ * @see https://github.com/iamvishnusankar/next-sitemap#readme
+ */
+module.exports = {
+ siteUrl: 'https://eyeactstudy.org',
+ generateRobotsTxt: true,
+ robotsTxtOptions: {
+ policies: [{ userAgent: '*', allow: '/' }],
+ },
+};
diff --git a/next.config.js b/next.config.js
new file mode 100644
index 0000000..4ac311e
--- /dev/null
+++ b/next.config.js
@@ -0,0 +1,51 @@
+/** @type {import('next').NextConfig} */
+const nextConfig = {
+ eslint: {
+ dirs: ['src'],
+ },
+
+ reactStrictMode: true,
+ swcMinify: true,
+
+ images: {
+ domains: [
+ 'storage.googleapis.com',
+ 'storage.tally.so',
+ 'images.unsplash.com',
+ 'fairdataihub.org',
+ 'ucarecdn.com',
+ 'i.imgur.com',
+ ],
+ },
+
+ async redirects() {
+ return [
+ {
+ source: '/data',
+ destination: '/comingsoon',
+ permanent: false,
+ },
+ ];
+ },
+
+ // SVGR
+ webpack(config) {
+ config.module.rules.push({
+ test: /\.svg$/i,
+ issuer: /\.[jt]sx?$/,
+ use: [
+ {
+ loader: '@svgr/webpack',
+ options: {
+ typescript: true,
+ icon: true,
+ },
+ },
+ ],
+ });
+
+ return config;
+ },
+};
+
+module.exports = nextConfig;
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..3221b17
--- /dev/null
+++ b/package.json
@@ -0,0 +1,104 @@
+{
+ "name": "aireadi.org",
+ "version": "0.0.1",
+ "private": false,
+ "typings": "index.d.ts",
+ "scripts": {
+ "dev": "next dev",
+ "build": "next build && rm -rf ./.next/cache",
+ "start": "next start",
+ "lint": "eslint --ignore-path .gitignore \"./**/*.+(ts|js|tsx)\"",
+ "lint:fix": "eslint src --fix && yarn format",
+ "lint:strict": "eslint --max-warnings=0 src",
+ "typecheck": "tsc --noEmit --incremental false",
+ "test:watch": "jest --watch",
+ "test": "jest",
+ "format": "prettier --ignore-path .gitignore \"./**/*.+(ts|js|tsx)\" --write",
+ "format:write": "prettier --write .",
+ "format:check": "prettier -c .",
+ "postbuild": "next-sitemap --config next-sitemap.config.js",
+ "commit": "cz",
+ "semantic-release": "semantic-release"
+ },
+ "dependencies": {
+ "@chakra-ui/icons": "^2.0.11",
+ "@chakra-ui/react": "^2.3.7",
+ "@chakra-ui/skip-nav": "^2.0.11",
+ "@emotion/react": "^11",
+ "@emotion/styled": "^11",
+ "@headlessui/react": "^1.7.18",
+ "@iconify/react": "^4.1.0",
+ "@sendgrid/mail": "^7.7.0",
+ "add-to-calendar-button-react": "^2.6.8",
+ "clsx": "^1.2.1",
+ "d3": "^7.9.0",
+ "dayjs": "^1.11.9",
+ "formik": "^2.2.9",
+ "framer-motion": "^8.0.2",
+ "gray-matter": "^4.0.3",
+ "html-react-parser": "^3.0.4",
+ "next": "^13.0.2",
+ "plaiceholder": "^2.5.0",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "react-icons": "^4.6.0",
+ "react-lottie-player": "^1.5.0",
+ "react-toastify": "^9.1.1",
+ "react-use": "^17.5.0",
+ "rehype-document": "7.0.3",
+ "rehype-external-links": "3.0.0",
+ "rehype-format": "5.0.0",
+ "rehype-highlight": "7.0.0",
+ "rehype-raw": "7.0.0",
+ "rehype-sanitize": "6.0.0",
+ "rehype-stringify": "10.0.0",
+ "remark": "15.0.1",
+ "remark-gfm": "^4.0.0",
+ "remark-parse": "11.0.0",
+ "remark-rehype": "11.1.0",
+ "sharp": "^0.31.3",
+ "sib-api-v3-sdk": "^8.4.2",
+ "tailwind-merge": "^1.7.0",
+ "unified": "11.0.4",
+ "words-count": "^2.0.2"
+ },
+ "devDependencies": {
+ "@commitlint/cli": "^16.3.0",
+ "@commitlint/config-conventional": "^16.2.4",
+ "@fairdataihub/config": "^2.2.1",
+ "@svgr/webpack": "^6.5.1",
+ "@tailwindcss/forms": "^0.5.3",
+ "@tailwindcss/typography": "^0.5.8",
+ "@testing-library/jest-dom": "^5.16.5",
+ "@testing-library/react": "^13.4.0",
+ "@types/d3": "^7.4.3",
+ "@types/jest": "^29.2.3",
+ "@types/mocha": "^10.0.1",
+ "@types/react": "^18.0.25",
+ "@typescript-eslint/eslint-plugin": "^5.42.0",
+ "@typescript-eslint/parser": "^5.42.0",
+ "autoprefixer": "^10.4.13",
+ "eslint": "^8.26.0",
+ "eslint-config-next": "^13.0.2",
+ "eslint-config-prettier": "^8.5.0",
+ "eslint-plugin-prettier": "^5.1.3",
+ "eslint-plugin-simple-import-sort": "^7.0.0",
+ "eslint-plugin-unused-imports": "^2.0.0",
+ "jest": "^27.5.1",
+ "megasanjay-devmoji": "^1.2.1",
+ "next-router-mock": "^0.7.4",
+ "next-sitemap": "^2.5.28",
+ "postcss": "^8.4.18",
+ "prettier": "3.3.0",
+ "prettier-plugin-tailwindcss": "0.6.1",
+ "run-script-os": "^1.1.6",
+ "tailwindcss": "^3.2.2",
+ "tailwindcss-debug-screens": "^2.2.1",
+ "typescript": "^4.8.4"
+ },
+ "config": {
+ "commitizen": {
+ "path": "cz-conventional-changelog"
+ }
+ }
+}
diff --git a/postcss.config.js b/postcss.config.js
new file mode 100644
index 0000000..12a703d
--- /dev/null
+++ b/postcss.config.js
@@ -0,0 +1,6 @@
+module.exports = {
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+};
diff --git a/prettier.config.js b/prettier.config.js
new file mode 100644
index 0000000..c58d405
--- /dev/null
+++ b/prettier.config.js
@@ -0,0 +1,9 @@
+module.exports = {
+ singleQuote: true,
+ trailingComma: 'all',
+ arrowParens: 'always',
+ jsxSingleQuote: true,
+ tabWidth: 2,
+ semi: true,
+ plugins: ['prettier-plugin-tailwindcss'],
+};
diff --git a/public/data/scholars.json b/public/data/scholars.json
new file mode 100644
index 0000000..00eb2a3
--- /dev/null
+++ b/public/data/scholars.json
@@ -0,0 +1,288 @@
+[
+ {
+ "id": "Hadi-Khazaei",
+ "name": "Hadi Khazaei",
+ "class": "2023-2024",
+ "image": "https://ucarecdn.com/503173c5-1eb1-42bc-9005-c390fa8340bf/-/crop/face/200px160p/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "",
+ "tag": ["#OpenToWork", "#OpenToVolunteer"],
+ "education": [
+ { "degree": "MD Internal Medicine", "institution": "" },
+ { "degree": "MS Ophthalmology", "institution": "" },
+ { "degree": "MCR Translational Research", "institution": "" }
+ ],
+ "expertise": [
+ "Translational Medicine",
+ "Research Methodology Training",
+ "Grant Writing"
+ ],
+ "about": "I am research scholar and scientist in field of translational medicine with training in machine learning and AI.",
+ "after": "I am currently working as adjunct professor in Portland State University and looking for collaborative projects and opportunities.",
+ "social": {
+ "linkedin": "http://linkedin.com/in/hadikhazaei"
+ }
+ },
+ {
+ "id": "Kyongmi-Simpkins",
+ "name": "Kyongmi Simpkins",
+ "class": "2023-2024",
+ "image": "https://ucarecdn.com/57e1acbd-2e97-41d4-bf70-d2355f1a9f8a/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/190px150p/",
+ "tag": ["#OpenToWork"],
+ "education": [{ "degree": "PhD in Neuroscience", "institution": "" }],
+ "expertise": [
+ "Molecular neuroscience",
+ "Imaging",
+ "Genomics",
+ "Data science"
+ ],
+ "about": "I am a data scientist with a background in neuroscience and human genomics. I have extensive experience in molecular bench work as well as data analysis. As a person who has experience in both areas of study, I feel that I can be a wonderful resource to connect the often disparate fields.",
+ "after": "I am currently looking for new opportunities to apply my skills and expertise in a dynamic and collaborative environment in academia or industry. I believe in opening doors and fully exploring possibilities!",
+ "social": {
+ "linkedin": "https://www.linkedin.com/in/kyongmi-um-simpkins-29093971"
+ }
+ },
+ {
+ "id": "Anna-Heinke",
+ "name": "Anna Heinke",
+ "class": "2023-2024",
+ "image": "https://ucarecdn.com/45f1eb9a-b6f2-4b5e-9618-18189285af62/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px160p/",
+ "tag": ["#OpenToWork"],
+ "education": [
+ {
+ "degree": "PhD in Opthalmology",
+ "institution": "Medical University of Silesia, Katowice, Poland"
+ },
+ {
+ "degree": "MD",
+ "institution": "Jagiellonian University Medical College, Cracow, Poland"
+ }
+ ],
+ "expertise": [
+ "Ophthalmology",
+ "Retinal Imaging",
+ "Digital Health",
+ "Clinical Research",
+ "Clinical Trials",
+ "Data Analysis"
+ ],
+ "about": "I am a clinician scientist, ophthalmologist and retina specialist with almost 8 years of clinical and research experience in ophthalmology. I have experience as a sub-investigator in phase II-III clinical trials. In my research I am interested in different imaging modalities in ophthalmology and specifically in applications of AI/ML in retinal imaging and integration of new technologies in clinical care. After work I enjoy surfing, pilates and being outdoors.",
+ "after": "I am currently looking for new opportunities to apply my skills and expertise in a dynamic and collaborative environment. I am open to work in academia or industry. I am currently in San Diego, CA, but I am open to relocating anywhere in the USA or working remotely. I am currently on a J-1 visa sponsored by UCSD, so I will need a visa sponsorship for my next position outside UCSD.",
+ "social": {
+ "linkedin": "https://www.linkedin.com/in/annaheinke/"
+ }
+ },
+ {
+ "id": "Nada-Haboudal",
+ "name": "Nada Haboudal",
+ "class": "2023-2024",
+ "image": "https://ucarecdn.com/12c60787-2733-4802-b96e-0a43bfa907c2/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px150p/",
+ "tag": ["#OpenToWork", "#OpenToVolunteer"],
+ "education": [
+ {
+ "degree": "M.S. Engineering Technology",
+ "institution": "University of Houston"
+ },
+ {
+ "degree": "B.S Industrial Engineering",
+ "institution": ""
+ }
+ ],
+ "expertise": [
+ "Data Science",
+ "Signal Processing",
+ "Data Analysis",
+ "Python"
+ ],
+ "about": "I'm a Data Scientist with a background in Engineering and Computational Health Informatics. During the AI-READI Internship, I applied machine learning models to estimate HbA1C levels from Continuous Glucose Monitors (CGM). My passion and focus are on translating complex health data into actionable insights.",
+ "after": "I'm seeking opportunities in the fields of data science, signal processing, and machine learning. I have a particular interest in wearables and women's health but am also open to exploring opportunities in any health-related domain.",
+ "social": {
+ "linkedin": "https://www.linkedin.com/in/nada-haboudal",
+ "resume": "https://aqua-kaitlynn-73.tiiny.site/"
+ }
+ },
+ {
+ "id": "Shahin-Hallaj",
+ "name": "Shahin Hallaj",
+ "class": "2023-2024",
+ "image": "https://ucarecdn.com/a7686be0-dfda-4d71-91e3-e27812fccc00/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "",
+ "tag": ["#OpenToVolunteer"],
+ "education": [
+ {
+ "degree": "MD",
+ "institution": "Tabriz University of Medical Sciences"
+ },
+ {
+ "degree": "Glaucoma Research Fellowship",
+ "institution": "Wills Eye Hospital"
+ }
+ ],
+ "expertise": [
+ "Data Science",
+ "Informatics",
+ "AI/ML",
+ "Biomedical Research"
+ ],
+ "about": "I am a postdoctoral researcher with extensive work experience in biomedical research, preparing to participate in the residency match cycle 2026. I am passionate about applications of AI/ML and informatics to enhance not only patient care but also the medical provider's experience.",
+ "after": "I am truly honored to have been selected for a departmental T32 postdoctoral research fellowship program in data sciences at UCSD. At the Baxter Lab of Ophthalmology Informatics and Data Sciences and the Computational Ophthalmology lab, I will continue to pursue my passion for data science and informatics. I am now seeking volunteer clinical rotations and sub-internships in ophthalmology, internal medicine, and critical care to keep my clinical skills sharp and strengthen my residency application.",
+ "social": {
+ "linkedin": "https://www.linkedin.com/in/shahin-hallaj-38780a95/"
+ }
+ },
+ {
+ "id": "Fritz-Gerald-Kalaw",
+ "name": "Fritz Gerald Kalaw",
+ "class": "2023-2024",
+ "image": "https://ucarecdn.com/a711ef59-e368-4d0c-bb8e-ea2d6244322e/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "",
+ "tag": ["#OpenToWork", "#OpenToVolunteer"],
+ "education": [
+ {
+ "degree": "Ophthalmology Residency",
+ "institution": "Philippines"
+ },
+ {
+ "degree": "Fellowship in ophthalmology informatics and data science",
+ "institution": "UC San Diego"
+ },
+ {
+ "degree": "Research fellowship in vitreoretinal diseases",
+ "institution": "UC San Diego"
+ },
+ {
+ "degree": "MD",
+ "institution": "Philippines"
+ }
+ ],
+ "expertise": [
+ "Ophthalmology",
+ "Informatics",
+ "Retina",
+ "Clinical applications of AI"
+ ],
+ "about": "I am an ophthalmologist with extensive clinical experience in the diagnosis and management of vitreoretinal diseases. I am interested in integrating multimodal retinal imaging and informatics and understanding oculomics through data.",
+ "after": "I am open to collaborating through basic, translational, and clinical research focusing on ophthalmology and vitreoretinal diseases. I am also looking for opportunities in biomedical research in academia, agencies, or industries.",
+ "social": {}
+ },
+ {
+ "id": "Apoorva-Karsolia",
+ "name": "Apoorva Karsolia",
+ "class": "2023-2024",
+ "image": "https://ucarecdn.com/5f77b9d1-d9c5-4a7f-b62c-992a6a1e25e3/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px170p/",
+ "tag": ["#OpenToWork"],
+ "education": [
+ {
+ "degree": "PhD in Vision Science",
+ "institution": "University of Houston"
+ },
+ {
+ "degree": "MS in Vision Science",
+ "institution": "Marshall B. Ketchum University"
+ },
+ {
+ "degree": "BS in Optometry",
+ "institution": "Bharati Vidyapeeth University, Pune, India"
+ }
+ ],
+ "expertise": [
+ "Visual Neuroscience",
+ "Clinical Research",
+ "Scientific Writing",
+ "Digital Health"
+ ],
+ "about": "I'm a data scientist with a background in vision science, eye-tracking, and neuroscience. I have experience in clinical and human factors research, scientific writing, data management, analysis, and presentation. I am passionate about the application of AI/ML to enhance clinical care and advance our understanding of human perception and behavior. Outside of work, I enjoy reading, hiking, and exploring the great outdoors!",
+ "after": "I am actively seeking new opportunities to apply my skills and expertise in a dynamic and collaborative environment. I am open to working in either academia or industry. Currently, I am based in San Diego, CA, but I am willing to relocate anywhere in the USA or work remotely. Additionally, I have an OPT work permit and do not require visa sponsorship.",
+ "social": {
+ "linkedin": "http://www.linkedin.com/in/apoorva-karsolia-47466873"
+ }
+ },
+ {
+ "id": "Adelle-Engmann",
+ "name": "Adelle Engmann",
+ "class": "2024-2025",
+ "image": "https://ucarecdn.com/268db5fe-2a84-439b-a024-d0cfce508baf/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px140p/",
+ "tag": ["#OpenToWork"],
+ "education": [
+ {
+ "degree": "Masters in Computational Social Science",
+ "institution": "UC San Diego"
+ },
+ {
+ "degree": "Bachelors in Public Health with College Honors",
+ "institution": "University of Washington"
+ }
+ ],
+ "expertise": [
+ "AI & Digital Literacy",
+ "ESG & Sustainability",
+ "Data Analytics",
+ "Public Health"
+ ],
+ "about": "I am passionate about using technology to bring social change. As a dedicated public health professional and data analyst with experience in journalism, I bring a unique perspective that prioritizes accessibility, ethics, and culturally sensitive engagement. I aim to foster impactful, solution-oriented strategies that enhance community resilience and improves digital literacy for underserved communities who need it the most.",
+ "after": "I am seeking industry-focused opportunities in the healthcare tech space, specializing in product and project development. With aspirations to grow as a dynamic leader, I aim to secure associate-level roles in product/project management, product strategy, or marketing. I am committed to advancing my interdisciplinary skills in health leadership, data analytics, and marketing to drive innovation at the intersection of social science and technology.",
+ "social": {
+ "linkedin": "https://www.linkedin.com/in/adelle-e-64a857183/"
+ }
+ },
+ {
+ "id": "Aya-Motoyoshi",
+ "name": "Aya Motoyoshi",
+ "class": "2024-2025",
+ "image": "https://ucarecdn.com/bcbc259b-f0df-4c9b-b602-d7c4da2d2481/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px160p/",
+ "tag": ["#OpenToWork", "#OpenToVolunteer"],
+ "education": [
+ {
+ "degree": "PhD in Medicine",
+ "institution": "Tokyo Women's Medical University, Japan"
+ },
+ {
+ "degree": "MD",
+ "institution": "Tokyo Women's Medical University, Japan"
+ }
+ ],
+ "expertise": [
+ "Ophthalmology",
+ "AI/ML",
+ "Digital Health",
+ "Data Analysis",
+ "Retina",
+ "Basic Medicine"
+ ],
+ "about": "I was born and raised in Tokyo, Japan. I previously worked as an ophthalmologist for about 6 years with a board certification in Japan. And I took a PhD in medicine by researching retina regeneration using mice and rats. I am interested in AI and Ophthalmology, especially the retina. I hope to continue researching to prevent vision loss. I am now learning how to analyze data and how to use AI/ML by using R and Python to contribute to advancements in the field of medicine. When I'm not working, I enjoy spending time with my cat, my husband, and doing ballet to relax and recharge.",
+ "after": "I am seeking opportunities to leverage my expertise in ophthalmology and vision science, AI/ML and data analysis to address complex challenges. I am particularly interested in roles that involve developing innovative models, analyzing large-scale datasets, and applying machine learning techniques to improve patient outcomes and advance research in academia or industry. I am looking for opportunities in a research-focused team where innovation and interdisciplinary collaboration drive impactful discoveries. I am currently on a J-1 visa sponsored by the University of Washington, so I will need a visa sponsorship for my position.",
+ "social": {
+ "linkedin": "https://www.linkedin.com/in/aya-motoyoshi-6a371b246/",
+ "resume": "https://researchmap.jp/motoyoshi.aya?lang=en"
+ }
+ },
+ {
+ "id": "Taiki-Nishihara",
+ "name": "Taiki Nishihara",
+ "class": "2024-2025",
+ "image": "https://ucarecdn.com/893f0613-6795-40b9-baa8-8f16507ef780/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px160p/",
+ "tag": ["#OpenToWork"],
+ "education": [
+ {
+ "degree": "MD Candidate",
+ "institution": "UC San Diego School of Medicine"
+ },
+ {
+ "degree": "Bachelors in Molecular and Cell Biology",
+ "institution": "UC Berkeley"
+ }
+ ],
+ "expertise": ["Ophthalmology", "AI/ML", "Medicine", "Data Science"],
+ "about": "I am a medical student at UC San Diego School of Medicine with a strong interest in pursuing a career in ophthalmology. My research background includes statistical analysis and clinical modeling, utilizing techniques such as Markov models to investigate innovative solutions in ophthalmology. As an AI-READI intern this year, I am focused on exploring the clinical applications of AI and machine learning in ophthalmology, with a particular emphasis on retinal imaging analysis. When not working, I enjoy taking my dog to the nearest dog beach!",
+ "after": "After completing the AI-READI internship, I plan to apply for residency programs in ophthalmology. Throughout my career, I'm eager to leverage the knowledge and skills gained during this experience to contribute to translational AI research and advancements in eye care.",
+ "social": {
+ "linkedin": "https://www.linkedin.com/in/taiki-nishihara/"
+ }
+ }
+]
diff --git a/public/data/team.json b/public/data/team.json
new file mode 100644
index 0000000..d5eedc1
--- /dev/null
+++ b/public/data/team.json
@@ -0,0 +1,61 @@
+[
+ {
+ "id": "Bhavesh-Patel",
+ "name": "Bhavesh Patel",
+ "pronoun": "he/him",
+ "roles": ["Associate Research Professor"],
+ "department": "FAIR Data Innovations Hub",
+ "organization": "California Medical Innovations Institute",
+ "location": "San Diego, CA",
+ "caption": "Qui molestiae aspernatur a ducimus architecto et impedit molestias aut voluptatem molestiae in omnis placeat aut veniam exercitationem. Sit autem nobis ex sequi quia ut quia provident eos quas molestiae ab eveniet eaque ut eius dignissimos? Et error sequi et voluptates iure eum nulla optio aut quia illo.",
+ "image": "https://ucarecdn.com/b36da179-1c47-4fa9-9e9b-9001ffc9b869/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px180p/",
+ "modules": [
+ "data-sharing",
+ "capacity-building",
+ "american-indian-engagement",
+ "data-collection"
+ ],
+ "social": {
+ "website": ["https://fairdataihub.org"],
+ "linkedin": "https://linkedin.com/in/bvhpatel",
+ "twitter": "https://twitter.com/fairdataihub"
+ }
+ },
+ {
+ "id": "Sanjay-Soundarajan",
+ "name": "Sanjay Soundarajan",
+ "pronoun": "he/him",
+ "roles": ["Front End Developer"],
+ "department": "FAIR Data Innovations Hub",
+ "organization": "California Medical Innovations Institute",
+ "location": "San Diego, CA",
+ "caption": "Qui molestiae aspernatur a ducimus architecto et impedit molestias aut voluptatem molestiae in omnis placeat aut veniam exercitationem. Sit autem nobis ex sequi quia ut quia provident eos quas molestiae ab eveniet eaque ut eius dignissimos? Et error sequi et voluptates iure eum nulla optio aut quia illo. ",
+ "image": "https://ucarecdn.com/dca922ac-d2dc-4fb4-8c37-5bdc2d5aa768/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px150p/",
+ "modules": ["data-sharing", "data-sharing", "data-collection"],
+ "social": {
+ "website": ["https://sanjaysoundarajan.dev"],
+ "github": "https://github.com/megasanjay",
+ "twitter": "https://twitter.com/megasanjay"
+ }
+ },
+ {
+ "id": "Dorian-Portillo",
+ "name": "Dorian Portillo",
+ "pronoun": "they/them",
+ "roles": ["Web Developer"],
+ "department": "FAIR Data Innovations Hub",
+ "organization": "California Medical Innovations Institute",
+ "location": "San Bernardino, CA",
+ "caption": "Qui molestiae aspernatur a ducimus architecto et impedit molestias aut voluptatem molestiae in omnis placeat aut veniam exercitationem. Sit autem nobis ex sequi quia ut quia provident eos quas molestiae ab eveniet eaque ut eius dignissimos? Et error sequi et voluptates iure eum nulla optio aut quia illo. ",
+ "image": "https://ucarecdn.com/a3ed77eb-24bc-4b55-b8f9-118a9d07f760/-/quality/smart_retina/-/format/auto/-/progressive/yes/",
+ "moduleImageParams": "-/crop/face/200px200p/",
+ "modules": ["data-sharing", "data-collection"],
+ "social": {
+ "website": ["https://dorianportillo.dev"],
+ "github": "https://github.com/slugb0t",
+ "linkedin": "https://www.linkedin.com/in/dorian-portillo-4733b61b5/"
+ }
+ }
+]
diff --git a/public/data/viz.json b/public/data/viz.json
new file mode 100644
index 0000000..2e3858e
--- /dev/null
+++ b/public/data/viz.json
@@ -0,0 +1,18141 @@
+[
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -22,
+ "y": -87
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 69,
+ "y": 16
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -158,
+ "y": 104
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 184,
+ "y": 51
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 58,
+ "y": -89
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 70,
+ "y": 196
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -150,
+ "y": 115
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -32,
+ "y": 133
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 192,
+ "y": 84
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 149,
+ "y": 9
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -137,
+ "y": -116
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -159,
+ "y": 3
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -59,
+ "y": -81
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -69,
+ "y": 72
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -118,
+ "y": -106
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -27,
+ "y": 154
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 128,
+ "y": -41
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 67,
+ "y": 127
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -149,
+ "y": 57
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -85,
+ "y": 47
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -36,
+ "y": -31
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 82,
+ "y": 190
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 83,
+ "y": -132
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -57,
+ "y": 39
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 169,
+ "y": -84
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 155,
+ "y": 81
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 14,
+ "y": -163
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 68,
+ "y": 61
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -181,
+ "y": -73
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -105,
+ "y": -187
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 103,
+ "y": -158
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 193,
+ "y": -12
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 154,
+ "y": 126
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 159,
+ "y": 132
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 166,
+ "y": 28
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -99,
+ "y": -44
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 139,
+ "y": -120
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 162,
+ "y": 85
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -75,
+ "y": -16
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 168,
+ "y": -71
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -108,
+ "y": 5
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -48,
+ "y": 93
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 159,
+ "y": -145
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -52,
+ "y": 155
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 26,
+ "y": 7
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -116,
+ "y": 61
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 65,
+ "y": 179
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 40,
+ "y": -78
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -198,
+ "y": -101
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -34,
+ "y": -79
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -174,
+ "y": 171
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 10,
+ "y": 114
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -4,
+ "y": 94
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -151,
+ "y": -117
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -1,
+ "y": -93
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 106,
+ "y": -175
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -190,
+ "y": -143
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -106,
+ "y": -21
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 23,
+ "y": 22
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -56,
+ "y": -22
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -136,
+ "y": 184
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 96,
+ "y": -65
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 185,
+ "y": -171
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 24,
+ "y": -188
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 58,
+ "y": 175
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 8,
+ "y": 22
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 105,
+ "y": 26
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -15,
+ "y": -96
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -27,
+ "y": 40
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 54,
+ "y": 101
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -86,
+ "y": 153
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 166,
+ "y": 132
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -37,
+ "y": -132
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 177,
+ "y": 97
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -34,
+ "y": 174
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 181,
+ "y": 185
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 53,
+ "y": 51
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -186,
+ "y": -132
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -136,
+ "y": 46
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -124,
+ "y": 71
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -50,
+ "y": -91
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -82,
+ "y": 33
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 52,
+ "y": 200
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 115,
+ "y": -105
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 64,
+ "y": 46
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 76,
+ "y": -197
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -19,
+ "y": 101
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 154,
+ "y": 152
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 66,
+ "y": 10
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 27,
+ "y": 39
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -35,
+ "y": 165
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -114,
+ "y": -43
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -44,
+ "y": 180
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -119,
+ "y": 113
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -180,
+ "y": -143
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -160,
+ "y": 105
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -72,
+ "y": 22
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -66,
+ "y": -149
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 117,
+ "y": -126
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -32,
+ "y": 28
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -198,
+ "y": 89
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 87,
+ "y": 95
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 155,
+ "y": -21
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -153,
+ "y": -112
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 153,
+ "y": 181
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -134,
+ "y": 186
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 67,
+ "y": -68
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -56,
+ "y": -189
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -176,
+ "y": -37
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 52,
+ "y": 137
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -15,
+ "y": 69
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 64,
+ "y": 58
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 171,
+ "y": 145
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -99,
+ "y": 104
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 113,
+ "y": -144
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -115,
+ "y": -56
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -180,
+ "y": -90
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 8,
+ "y": -119
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -31,
+ "y": 38
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 8,
+ "y": -153
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 163,
+ "y": 178
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -4,
+ "y": 75
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 155,
+ "y": 66
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 107,
+ "y": 71
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 20,
+ "y": 43
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 177,
+ "y": -166
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -128,
+ "y": 41
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -127,
+ "y": 135
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -138,
+ "y": 48
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -153,
+ "y": 87
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 28,
+ "y": -200
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 54,
+ "y": -193
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -115,
+ "y": 196
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -125,
+ "y": -69
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 42,
+ "y": 56
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 46,
+ "y": -33
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -32,
+ "y": 61
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 43,
+ "y": 1
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 43,
+ "y": -89
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -31,
+ "y": 80
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 191,
+ "y": 139
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 41,
+ "y": 23
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -127,
+ "y": -17
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -87,
+ "y": 93
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -44,
+ "y": 197
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -162,
+ "y": 135
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 57,
+ "y": 14
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -193,
+ "y": -177
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 73,
+ "y": 50
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 47,
+ "y": -167
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 71,
+ "y": -5
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -145,
+ "y": 99
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -157,
+ "y": -185
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 184,
+ "y": 19
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 81,
+ "y": 13
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 14,
+ "y": -143
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 80,
+ "y": -149
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 36,
+ "y": 90
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 129,
+ "y": 138
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 125,
+ "y": 48
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 26,
+ "y": 92
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 91,
+ "y": 132
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 10,
+ "y": 172
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 153,
+ "y": -50
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -99,
+ "y": 0
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 12,
+ "y": -101
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 76,
+ "y": 98
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 28,
+ "y": -94
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -43,
+ "y": 191
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 32,
+ "y": 141
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -92,
+ "y": 137
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -43,
+ "y": 9
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -135,
+ "y": -61
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 85,
+ "y": 74
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -195,
+ "y": -74
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 165,
+ "y": 12
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -26,
+ "y": 197
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -84,
+ "y": -46
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -43,
+ "y": 31
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -163,
+ "y": -20
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -112,
+ "y": -20
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 12,
+ "y": 71
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -159,
+ "y": 19
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -67,
+ "y": 145
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 51,
+ "y": -105
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 192,
+ "y": -171
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -144,
+ "y": 27
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 157,
+ "y": 112
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 130,
+ "y": -138
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -41,
+ "y": 46
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 148,
+ "y": -68
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 175,
+ "y": -15
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 7,
+ "y": -195
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 171,
+ "y": 172
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 140,
+ "y": 165
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -90,
+ "y": 184
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 182,
+ "y": -145
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -182,
+ "y": -167
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 92,
+ "y": 12
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -6,
+ "y": 157
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -199,
+ "y": 103
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 138,
+ "y": -14
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 187,
+ "y": 37
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -9,
+ "y": 124
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Missing",
+ "OCTA": "Missing",
+ "CFP": "Missing",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 59,
+ "y": 94
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -114,
+ "y": 71
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 88,
+ "y": 16
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 67,
+ "y": 111
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 3,
+ "y": 12
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -11,
+ "y": -122
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 10,
+ "y": -36
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": 114,
+ "y": 92
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -186,
+ "y": 200
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 178,
+ "y": 37
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -194,
+ "y": 122
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 182,
+ "y": -8
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 157,
+ "y": -164
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -190,
+ "y": 4
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -191,
+ "y": -130
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 30,
+ "y": 120
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -52,
+ "y": 200
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -188,
+ "y": 170
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -52,
+ "y": -41
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -108,
+ "y": 179
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 27,
+ "y": 71
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": 41,
+ "y": 176
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -135,
+ "y": -166
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -69,
+ "y": 41
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 57,
+ "y": 19
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 52,
+ "y": 115
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 19,
+ "y": 31
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -2,
+ "y": 79
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 186,
+ "y": -135
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 114,
+ "y": 113
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -113,
+ "y": -62
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 174,
+ "y": 41
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -67,
+ "y": -14
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -102,
+ "y": -25
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -119,
+ "y": 106
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -91,
+ "y": 157
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -130,
+ "y": 135
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -50,
+ "y": -76
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 99,
+ "y": 50
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -199,
+ "y": -46
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 137,
+ "y": 88
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -87,
+ "y": 3
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -153,
+ "y": 9
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": -189,
+ "y": 59
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -127,
+ "y": 56
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -50,
+ "y": 89
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 81,
+ "y": -6
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -34,
+ "y": -116
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -183,
+ "y": -55
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -199,
+ "y": 88
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 133,
+ "y": -193
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 90,
+ "y": -9
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 38,
+ "y": -155
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 94,
+ "y": -22
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 67,
+ "y": 71
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -186,
+ "y": 26
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -107,
+ "y": 28
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 26,
+ "y": 10
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -10,
+ "y": 51
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 161,
+ "y": -183
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -178,
+ "y": 5
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -160,
+ "y": 44
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 126,
+ "y": 153
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 75,
+ "y": -1
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -48,
+ "y": 76
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -186,
+ "y": 130
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -9,
+ "y": 45
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -177,
+ "y": -200
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 143,
+ "y": 67
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -148,
+ "y": -49
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 119,
+ "y": -130
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 49,
+ "y": -7
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 87,
+ "y": -42
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -14,
+ "y": 176
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": 160,
+ "y": 68
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 194,
+ "y": 33
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -32,
+ "y": -157
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 132,
+ "y": 56
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -87,
+ "y": -18
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 137,
+ "y": 60
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 112,
+ "y": -76
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 37,
+ "y": 113
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -8,
+ "y": 41
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 0,
+ "y": -49
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 36,
+ "y": 90
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -188,
+ "y": -55
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -145,
+ "y": 64
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -135,
+ "y": -55
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 144,
+ "y": -171
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -38,
+ "y": 41
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -100,
+ "y": -35
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -160,
+ "y": 30
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 126,
+ "y": 29
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 129,
+ "y": -188
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -183,
+ "y": -109
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 102,
+ "y": 114
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 105,
+ "y": -169
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 41,
+ "y": -27
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 38,
+ "y": 66
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -138,
+ "y": -60
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -18,
+ "y": 152
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": -59,
+ "y": 75
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -5,
+ "y": -35
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 9,
+ "split": "val",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 63,
+ "y": -176
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 176,
+ "y": -7
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 15,
+ "y": -30
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -28,
+ "y": -16
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -69,
+ "y": 73
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 19,
+ "y": 73
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 186,
+ "y": 75
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -32,
+ "y": 92
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -143,
+ "y": 24
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 82,
+ "y": -138
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 135,
+ "y": -197
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 189,
+ "y": -172
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 125,
+ "y": -173
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -69,
+ "y": -160
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 197,
+ "y": -91
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 52,
+ "y": -44
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 137,
+ "y": -90
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -142,
+ "y": 114
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -57,
+ "y": 119
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -187,
+ "y": -121
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -117,
+ "y": -45
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 73,
+ "y": -103
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -106,
+ "y": 199
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 164,
+ "y": 181
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -52,
+ "y": 104
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 152,
+ "y": 176
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -159,
+ "y": -151
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 28,
+ "y": 89
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -176,
+ "y": -31
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 55,
+ "y": -195
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -104,
+ "y": -13
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -69,
+ "y": -114
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 164,
+ "y": -79
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -110,
+ "y": 124
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 73,
+ "y": -197
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -36,
+ "y": -29
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Missing",
+ "OCTA": "Missing",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 24,
+ "y": 110
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 165,
+ "y": 45
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 32,
+ "y": 132
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 91,
+ "y": -179
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 84,
+ "y": -127
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 161,
+ "y": 50
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -58,
+ "y": -2
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 137,
+ "y": 198
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -7,
+ "y": -169
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -39,
+ "y": 19
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -75,
+ "y": -171
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -58,
+ "y": 178
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 98,
+ "y": -138
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 192,
+ "y": 199
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -182,
+ "y": -124
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -39,
+ "y": 4
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": -37,
+ "y": 163
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -50,
+ "y": -40
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -150,
+ "y": 140
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 1,
+ "y": 152
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -137,
+ "y": 156
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 108,
+ "y": 67
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 134,
+ "y": 31
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 183,
+ "y": 6
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 69,
+ "y": -106
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -115,
+ "y": 141
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 190,
+ "y": -86
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -105,
+ "y": 107
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 74,
+ "y": -197
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -21,
+ "y": 101
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 174,
+ "y": -90
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -121,
+ "y": 36
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -119,
+ "y": -104
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -98,
+ "y": 8
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -32,
+ "y": -119
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 175,
+ "y": 60
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 140,
+ "y": 151
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 183,
+ "y": 109
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -72,
+ "y": 39
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 19,
+ "y": -120
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -44,
+ "y": -121
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -134,
+ "y": 24
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 190,
+ "y": 12
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 17,
+ "y": -136
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 179,
+ "y": 33
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -122,
+ "y": 37
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -192,
+ "y": 194
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -75,
+ "y": 110
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -108,
+ "y": 143
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 2,
+ "y": -185
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -162,
+ "y": 78
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 197,
+ "y": 171
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 78,
+ "y": -16
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 143,
+ "y": 196
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -41,
+ "y": -144
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 125,
+ "y": 118
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 20,
+ "y": 28
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -165,
+ "y": -56
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 145,
+ "y": 86
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 29,
+ "y": 30
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 68,
+ "y": 114
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -109,
+ "y": 76
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 91,
+ "y": 174
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -28,
+ "y": 16
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -54,
+ "y": 95
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 15,
+ "y": -15
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 152,
+ "y": -169
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 96,
+ "y": 173
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 55,
+ "y": 15
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -103,
+ "y": 36
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -73,
+ "y": 13
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -53,
+ "y": 149
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -18,
+ "y": 200
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -172,
+ "y": 3
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 182,
+ "y": -197
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -179,
+ "y": 106
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Missing",
+ "OCT": "Missing",
+ "OCTA": "Missing",
+ "CFP": "Missing",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": -196,
+ "y": 114
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -193,
+ "y": -144
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 4,
+ "y": 29
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -198,
+ "y": -85
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -149,
+ "y": -29
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -178,
+ "y": 77
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -5,
+ "y": 47
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -157,
+ "y": -78
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 96,
+ "y": -183
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 16,
+ "y": 26
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -46,
+ "y": 70
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -81,
+ "y": -136
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -144,
+ "y": 150
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -118,
+ "y": 57
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 96,
+ "y": -158
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 89,
+ "y": 139
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 100,
+ "y": -66
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -92,
+ "y": 180
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -1,
+ "y": -81
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -54,
+ "y": 88
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -132,
+ "y": 56
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 79,
+ "y": -125
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 44,
+ "y": 46
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -35,
+ "y": -28
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -43,
+ "y": 131
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -49,
+ "y": 154
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 123,
+ "y": 200
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 67,
+ "y": 80
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -123,
+ "y": 83
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -167,
+ "y": 57
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 101,
+ "y": 105
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 20,
+ "y": 39
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -74,
+ "y": -105
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 80,
+ "y": -42
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -83,
+ "y": 33
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -44,
+ "y": 73
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -33,
+ "y": 141
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -5,
+ "y": 25
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 90,
+ "y": 129
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": -83,
+ "y": 166
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -168,
+ "y": 51
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -123,
+ "y": 157
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -5,
+ "y": 158
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 51,
+ "y": 144
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 17,
+ "y": 48
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 116,
+ "y": 112
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 167,
+ "y": 168
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 29,
+ "y": -86
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -69,
+ "y": 109
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -49,
+ "y": -190
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 61,
+ "y": -129
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -194,
+ "y": -123
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -89,
+ "y": -141
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -33,
+ "y": 1
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -189,
+ "y": -80
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -142,
+ "y": 47
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 44,
+ "y": 47
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -196,
+ "y": 37
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -182,
+ "y": 15
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -30,
+ "y": 106
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -76,
+ "y": -171
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -137,
+ "y": 13
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -62,
+ "y": 111
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 180,
+ "y": -166
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -156,
+ "y": 191
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 133,
+ "y": 62
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -188,
+ "y": 81
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 30,
+ "y": -61
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 187,
+ "y": 200
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -136,
+ "y": 94
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 171,
+ "y": -20
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 137,
+ "y": 80
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -157,
+ "y": 190
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -152,
+ "y": 180
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -152,
+ "y": -106
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -66,
+ "y": 192
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -73,
+ "y": -120
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -36,
+ "y": 94
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 52,
+ "y": -155
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 128,
+ "y": -177
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 26,
+ "y": 71
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -111,
+ "y": -111
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 170,
+ "y": -52
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -99,
+ "y": -89
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -113,
+ "y": -38
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 181,
+ "y": 50
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -43,
+ "y": -150
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -108,
+ "y": 181
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -39,
+ "y": 9
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -1,
+ "y": -159
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -176,
+ "y": -88
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 15,
+ "y": -19
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 62,
+ "y": 16
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -107,
+ "y": -176
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 84,
+ "y": -28
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -150,
+ "y": -198
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -100,
+ "y": 73
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -105,
+ "y": 42
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 84,
+ "y": -26
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 101,
+ "y": 155
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -172,
+ "y": -17
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -66,
+ "y": 199
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 110,
+ "y": 31
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -23,
+ "y": -45
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -10,
+ "y": 44
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 24,
+ "y": -82
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": 114,
+ "y": -140
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 195,
+ "y": 37
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 119,
+ "y": -190
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -108,
+ "y": -62
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 154,
+ "y": 48
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 26,
+ "y": 83
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 34,
+ "y": 37
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 152,
+ "y": 95
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -165,
+ "y": -93
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 145,
+ "y": 84
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 30,
+ "y": -63
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -67,
+ "y": -150
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 170,
+ "y": -176
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -39,
+ "y": 110
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": 38,
+ "y": 29
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -6,
+ "y": 80
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -155,
+ "y": 154
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -9,
+ "y": -25
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 104,
+ "y": 17
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 98,
+ "y": -77
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -167,
+ "y": -145
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 41,
+ "y": 124
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 29,
+ "y": -149
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -127,
+ "y": -119
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -171,
+ "y": -13
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -57,
+ "y": -28
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 144,
+ "y": 25
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -100,
+ "y": 163
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -54,
+ "y": -182
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -198,
+ "y": -135
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 88,
+ "y": 139
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 178,
+ "y": -116
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -82,
+ "y": -37
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 59,
+ "y": -59
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -165,
+ "y": 9
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 146,
+ "y": -49
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -90,
+ "y": 187
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 171,
+ "y": -150
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 98,
+ "y": -198
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -165,
+ "y": 105
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -158,
+ "y": -89
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -111,
+ "y": -145
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -4,
+ "y": 94
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 16,
+ "y": -198
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 173,
+ "y": -88
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 151,
+ "y": -27
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 63,
+ "y": -12
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 14,
+ "y": 12
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 68,
+ "y": -99
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 195,
+ "y": 27
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -113,
+ "y": -20
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 17,
+ "y": 170
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -29,
+ "y": 178
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -56,
+ "y": -11
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": -150,
+ "y": 28
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -98,
+ "y": 193
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 103,
+ "y": 50
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -67,
+ "y": -16
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 199,
+ "y": 192
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 32,
+ "y": 18
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -28,
+ "y": -28
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 31,
+ "y": 45
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -107,
+ "y": 193
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -19,
+ "y": -138
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -159,
+ "y": 170
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 19,
+ "y": 184
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -93,
+ "y": 114
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 7,
+ "y": -107
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 14,
+ "y": -12
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 29,
+ "y": -180
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -78,
+ "y": -107
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 16,
+ "y": -175
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -52,
+ "y": -157
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -39,
+ "y": 186
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Missing",
+ "OCTA": "Missing",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -138,
+ "y": -24
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -161,
+ "y": -118
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -110,
+ "y": -6
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -118,
+ "y": 196
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 168,
+ "y": -70
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -142,
+ "y": 151
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 27,
+ "y": 100
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -168,
+ "y": -122
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 14,
+ "y": -5
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 47,
+ "y": -69
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 148,
+ "y": 157
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -10,
+ "y": 183
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 52,
+ "y": -196
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 132,
+ "y": -106
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 113,
+ "y": -36
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -56,
+ "y": -21
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 53,
+ "y": 157
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -166,
+ "y": 188
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 27,
+ "y": -186
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -26,
+ "y": 5
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 23,
+ "y": 191
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 78,
+ "y": -63
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -128,
+ "y": -39
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -50,
+ "y": -140
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 89,
+ "y": -76
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 41,
+ "y": -24
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -67,
+ "y": 196
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 85,
+ "y": -60
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -165,
+ "y": 159
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 40,
+ "y": 99
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 179,
+ "y": 168
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 58,
+ "y": 76
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 16,
+ "y": 137
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 35,
+ "y": -174
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -91,
+ "y": 71
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 80,
+ "y": -153
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -36,
+ "y": -149
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 74,
+ "y": -49
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -142,
+ "y": 45
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -13,
+ "y": -104
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -48,
+ "y": 117
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 62,
+ "y": -61
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 33,
+ "y": 141
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -191,
+ "y": 136
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 151,
+ "y": -67
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 137,
+ "y": -105
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 93,
+ "y": -157
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 123,
+ "y": 107
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 171,
+ "y": 26
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -189,
+ "y": 120
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 99,
+ "y": -198
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 0,
+ "y": -64
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -169,
+ "y": -141
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 111,
+ "y": -165
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 53,
+ "y": 179
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -36,
+ "y": -20
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 26,
+ "y": -149
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -91,
+ "y": 92
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -116,
+ "y": 91
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 34,
+ "y": 113
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -68,
+ "y": 138
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 58,
+ "y": 52
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -79,
+ "y": 74
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -42,
+ "y": -165
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 144,
+ "y": 45
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -63,
+ "y": 4
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 7,
+ "y": -133
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -84,
+ "y": -1
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 52,
+ "y": -101
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 179,
+ "y": -6
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": 175,
+ "y": -41
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 98,
+ "y": -181
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -88,
+ "y": 66
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -25,
+ "y": -126
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 39,
+ "y": 51
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -131,
+ "y": 106
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -19,
+ "y": 40
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -37,
+ "y": 106
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 187,
+ "y": 195
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -118,
+ "y": 97
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 47,
+ "y": -81
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -76,
+ "y": 86
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -184,
+ "y": 148
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 198,
+ "y": 24
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -46,
+ "y": 124
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -104,
+ "y": 196
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 166,
+ "y": -168
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 146,
+ "y": 134
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -6,
+ "y": 136
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -195,
+ "y": -61
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 85,
+ "y": -48
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -16,
+ "y": 163
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 91,
+ "y": -146
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 58,
+ "y": -188
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 32,
+ "y": 40
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 169,
+ "y": -95
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 173,
+ "y": 170
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -151,
+ "y": -178
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 149,
+ "y": -61
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -51,
+ "y": 162
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 165,
+ "y": 128
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 59,
+ "y": 88
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 175,
+ "y": 153
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": 145,
+ "y": 78
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 142,
+ "y": 101
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -91,
+ "y": -3
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -5,
+ "y": 115
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -163,
+ "y": -175
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -56,
+ "y": -177
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": 137,
+ "y": -162
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Missing",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 63,
+ "y": -78
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 75,
+ "y": 41
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -120,
+ "y": 8
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -33,
+ "y": 13
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -137,
+ "y": -141
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -168,
+ "y": 194
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 44,
+ "y": 97
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -144,
+ "y": -42
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 154,
+ "y": 22
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": 168,
+ "y": 100
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 142,
+ "y": -126
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 4,
+ "y": -6
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -144,
+ "y": -87
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 62,
+ "y": 83
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -141,
+ "y": 55
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 48,
+ "y": 157
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 126,
+ "y": -100
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 143,
+ "y": 46
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -5,
+ "y": 100
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -197,
+ "y": 112
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 11,
+ "y": 176
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -99,
+ "y": -128
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -50,
+ "y": 200
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 133,
+ "y": 24
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 8,
+ "y": -56
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 176,
+ "y": 85
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -48,
+ "y": 19
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 14,
+ "y": -154
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -33,
+ "y": 63
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 2,
+ "y": -13
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 51,
+ "y": 99
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -63,
+ "y": 26
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -74,
+ "y": 117
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -181,
+ "y": -189
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 69,
+ "y": -190
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 127,
+ "y": 67
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 188,
+ "y": -108
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -78,
+ "y": 155
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 107,
+ "y": 105
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 48,
+ "y": -49
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 0,
+ "y": -134
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 146,
+ "y": -27
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -109,
+ "y": 111
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -176,
+ "y": 133
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -151,
+ "y": -125
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 88,
+ "y": 7
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -58,
+ "y": -134
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 184,
+ "y": 119
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 85,
+ "y": 17
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 16,
+ "y": 76
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 57,
+ "y": -8
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -56,
+ "y": 32
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 25,
+ "y": -45
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -22,
+ "y": -190
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 180,
+ "y": -45
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 162,
+ "y": -146
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 115,
+ "y": 44
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -131,
+ "y": 133
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -95,
+ "y": 22
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 134,
+ "y": 43
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -55,
+ "y": -171
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 93,
+ "y": -197
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -18,
+ "y": 179
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -163,
+ "y": 85
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -31,
+ "y": 116
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -126,
+ "y": -141
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 140,
+ "y": 81
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Missing",
+ "OCTA": "Missing",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -178,
+ "y": -183
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 23,
+ "y": 112
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -141,
+ "y": -58
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -53,
+ "y": -94
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -31,
+ "y": 115
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -133,
+ "y": -110
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 123,
+ "y": -16
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 160,
+ "y": 27
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -45,
+ "y": -175
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 135,
+ "y": 43
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -12,
+ "y": -150
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -34,
+ "y": 124
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -122,
+ "y": -145
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 143,
+ "y": -52
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 101,
+ "y": 155
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 47,
+ "y": 58
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 99,
+ "y": -92
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -48,
+ "y": -171
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 190,
+ "y": 95
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -157,
+ "y": 102
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -93,
+ "y": 44
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 42,
+ "y": -151
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -189,
+ "y": -113
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 131,
+ "y": -33
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 79,
+ "y": 32
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 36,
+ "y": 196
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -199,
+ "y": 71
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 71,
+ "y": 85
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -193,
+ "y": 118
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 91,
+ "y": 195
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 157,
+ "y": 75
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 188,
+ "y": -146
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -112,
+ "y": -179
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 35,
+ "y": 113
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Missing",
+ "OCTA": "Missing",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 32,
+ "y": -56
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 78,
+ "y": -31
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 68,
+ "y": -92
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -69,
+ "y": -134
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 89,
+ "y": -187
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -117,
+ "y": -44
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -8,
+ "y": -185
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 139,
+ "y": -153
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 9,
+ "y": -192
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 191,
+ "y": 162
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -72,
+ "y": 129
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 136,
+ "y": 90
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 160,
+ "y": -152
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 29,
+ "y": 160
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -107,
+ "y": -129
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -113,
+ "y": 164
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 126,
+ "y": 163
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -176,
+ "y": -49
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 90,
+ "y": 130
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -76,
+ "y": -5
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 13,
+ "y": 26
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -48,
+ "y": 166
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -168,
+ "y": 188
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -47,
+ "y": 32
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 38,
+ "y": -78
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 28,
+ "y": -88
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -47,
+ "y": 78
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -8,
+ "y": 42
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -138,
+ "y": 194
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 35,
+ "y": 96
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -94,
+ "y": 112
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -181,
+ "y": -102
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 174,
+ "y": -195
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 100,
+ "y": -115
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 3,
+ "y": 25
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -57,
+ "y": -130
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -161,
+ "y": -67
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 190,
+ "y": 135
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -146,
+ "y": 148
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 87,
+ "y": 149
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 71,
+ "y": -110
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -121,
+ "y": 32
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -156,
+ "y": 31
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 0,
+ "y": -127
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 106,
+ "y": 127
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 71,
+ "y": 112
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 124,
+ "y": -3
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 105,
+ "y": 91
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 33,
+ "y": 188
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 38,
+ "y": -129
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 167,
+ "y": 198
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -86,
+ "y": 61
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -115,
+ "y": -10
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -99,
+ "y": 8
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -164,
+ "y": -101
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -99,
+ "y": -88
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -185,
+ "y": 76
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -5,
+ "y": -194
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 32,
+ "y": 39
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 165,
+ "y": 124
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 9,
+ "y": 76
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 49,
+ "y": -32
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 135,
+ "y": 186
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 153,
+ "y": -106
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -159,
+ "y": 144
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 62,
+ "y": 46
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 191,
+ "y": -131
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -100,
+ "y": 142
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 63,
+ "y": 61
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -194,
+ "y": -123
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 35,
+ "y": -168
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 21,
+ "y": 136
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 155,
+ "y": -150
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 191,
+ "y": 1
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 128,
+ "y": -113
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 75,
+ "y": -71
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -1,
+ "y": -194
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -26,
+ "y": 178
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 200,
+ "y": 149
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 167,
+ "y": -99
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 99,
+ "y": -98
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 136,
+ "y": -49
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -145,
+ "y": 12
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 1,
+ "y": -29
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 112,
+ "y": -192
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -37,
+ "y": -167
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -97,
+ "y": 40
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -122,
+ "y": -78
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 113,
+ "y": -88
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 50,
+ "y": -45
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 3,
+ "y": -144
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 178,
+ "y": 58
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -121,
+ "y": 0
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -165,
+ "y": 183
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -182,
+ "y": 130
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -67,
+ "y": -5
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -117,
+ "y": -84
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -139,
+ "y": 32
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -29,
+ "y": -105
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 9,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 123,
+ "y": -100
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -113,
+ "y": -21
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 51,
+ "y": 184
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 134,
+ "y": 81
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 45,
+ "y": 4
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 186,
+ "y": -36
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -195,
+ "y": -180
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 174,
+ "y": 95
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 43,
+ "y": -198
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -113,
+ "y": -91
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 134,
+ "y": -159
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -163,
+ "y": 15
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -116,
+ "y": 141
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -81,
+ "y": -113
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 39,
+ "y": 147
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -64,
+ "y": -67
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 193,
+ "y": -153
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 23,
+ "y": -27
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 187,
+ "y": -12
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 31,
+ "y": 11
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -172,
+ "y": 141
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 24,
+ "y": 193
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -198,
+ "y": -66
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": 200,
+ "y": 161
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 67,
+ "y": 81
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -177,
+ "y": -128
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -91,
+ "y": -177
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 114,
+ "y": 178
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 58,
+ "y": -162
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 139,
+ "y": 156
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -197,
+ "y": -78
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 95,
+ "y": 172
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -153,
+ "y": 135
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -83,
+ "y": -147
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -53,
+ "y": -39
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 83,
+ "y": -170
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -143,
+ "y": -156
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -113,
+ "y": 189
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Missing",
+ "x": -134,
+ "y": 49
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -104,
+ "y": 42
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 50,
+ "y": 79
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -80,
+ "y": 54
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -52,
+ "y": 142
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 141,
+ "y": -174
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 181,
+ "y": 133
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 135,
+ "y": -21
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -68,
+ "y": -117
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 23,
+ "y": 100
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 154,
+ "y": 27
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -34,
+ "y": 33
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -39,
+ "y": 90
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -99,
+ "y": -72
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -41,
+ "y": -74
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 191,
+ "y": 80
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -70,
+ "y": -6
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -167,
+ "y": 52
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -110,
+ "y": 4
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -148,
+ "y": 74
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 85,
+ "y": 184
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -3,
+ "y": 45
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 66,
+ "y": 172
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -126,
+ "y": 57
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 9,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 175,
+ "y": 194
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -71,
+ "y": -145
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -106,
+ "y": -123
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 54,
+ "y": -164
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -68,
+ "y": 158
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 42,
+ "y": 114
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 9,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -18,
+ "y": 162
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -146,
+ "y": 43
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 125,
+ "y": 151
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 113,
+ "y": -190
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 88,
+ "y": -67
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 96,
+ "y": -23
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -34,
+ "y": 124
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 13,
+ "y": -43
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 138,
+ "y": -64
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 9,
+ "split": "train",
+ "ECG": "Missing",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -81,
+ "y": -191
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 64,
+ "y": -140
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -1,
+ "y": 127
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 34,
+ "y": 124
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -61,
+ "y": 134
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 106,
+ "y": -135
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 50,
+ "y": -128
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -89,
+ "y": 34
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 3,
+ "y": -156
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -112,
+ "y": 114
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 4,
+ "y": -169
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 93,
+ "y": 2
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -119,
+ "y": -75
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 118,
+ "y": -41
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -173,
+ "y": 162
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -87,
+ "y": 10
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -165,
+ "y": -179
+ },
+ {
+ "site": "UW",
+ "group": "Insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -91,
+ "y": -51
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -12,
+ "y": -52
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -72,
+ "y": -7
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -117,
+ "y": -38
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 32,
+ "y": -108
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -26,
+ "y": 156
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -187,
+ "y": 123
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -161,
+ "y": -152
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 158,
+ "y": -104
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 71,
+ "y": -149
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 196,
+ "y": -132
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 106,
+ "y": 8
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 200,
+ "y": -37
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 157,
+ "y": 91
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -116,
+ "y": -3
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -123,
+ "y": 161
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -162,
+ "y": -62
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 17,
+ "y": 127
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 179,
+ "y": -104
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -149,
+ "y": 157
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 142,
+ "y": -73
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -108,
+ "y": -193
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -137,
+ "y": 69
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 183,
+ "y": 127
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 128,
+ "y": 121
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 41,
+ "y": 110
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 75,
+ "y": -75
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 6,
+ "y": 180
+ },
+ {
+ "site": "UW",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 95,
+ "y": -84
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -148,
+ "y": 122
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -68,
+ "y": -30
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 89,
+ "y": -107
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 96,
+ "y": 163
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 45,
+ "y": -54
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 180,
+ "y": 13
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -29,
+ "y": -8
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -68,
+ "y": 6
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -126,
+ "y": 34
+ },
+ {
+ "site": "UAB",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 7,
+ "y": 32
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Missing",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 29,
+ "y": 97
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -161,
+ "y": 34
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 8,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -61,
+ "y": -170
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 68,
+ "y": -51
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 101,
+ "y": 97
+ },
+ {
+ "site": "UCSD",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 176,
+ "y": 80
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -98,
+ "y": 129
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 27,
+ "y": -153
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 6,
+ "split": "test",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 133,
+ "y": 95
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 155,
+ "y": -58
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -56,
+ "y": -10
+ },
+ {
+ "site": "UAB",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": -83,
+ "y": 193
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 106,
+ "y": 123
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 54,
+ "y": 93
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Missing",
+ "CGM": "Present",
+ "x": 162,
+ "y": -129
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Missing",
+ "x": 134,
+ "y": -180
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 169,
+ "y": 198
+ },
+ {
+ "site": "UW",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 99,
+ "y": 31
+ },
+ {
+ "site": "UW",
+ "group": "Pre-T2DM",
+ "age": 5,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 135,
+ "y": 85
+ },
+ {
+ "site": "UAB",
+ "group": "Healthy",
+ "age": 6,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 161,
+ "y": 52
+ },
+ {
+ "site": "UCSD",
+ "group": "Non-insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -55,
+ "y": 59
+ },
+ {
+ "site": "UCSD",
+ "group": "Pre-T2DM",
+ "age": 8,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -138,
+ "y": 66
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 5,
+ "split": "val",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 170,
+ "y": 141
+ },
+ {
+ "site": "UCSD",
+ "group": "Healthy",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Present",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": 141,
+ "y": 109
+ },
+ {
+ "site": "UAB",
+ "group": "Insulin T2DM",
+ "age": 7,
+ "split": "train",
+ "ECG": "Present",
+ "Clinical": "Present",
+ "Env": "Present",
+ "FLIO": "Missing",
+ "OCT": "Present",
+ "OCTA": "Present",
+ "CFP": "Present",
+ "Fitness": "Present",
+ "CGM": "Present",
+ "x": -86,
+ "y": 36
+ }
+]
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 0000000..f88d0b3
Binary files /dev/null and b/public/favicon.ico differ
diff --git a/public/favicon/android-chrome-192x192.png b/public/favicon/android-chrome-192x192.png
new file mode 100644
index 0000000..f903380
Binary files /dev/null and b/public/favicon/android-chrome-192x192.png differ
diff --git a/public/favicon/android-chrome-512x512.png b/public/favicon/android-chrome-512x512.png
new file mode 100644
index 0000000..d4ca95a
Binary files /dev/null and b/public/favicon/android-chrome-512x512.png differ
diff --git a/public/favicon/apple-touch-icon.png b/public/favicon/apple-touch-icon.png
new file mode 100644
index 0000000..30ebbcd
Binary files /dev/null and b/public/favicon/apple-touch-icon.png differ
diff --git a/public/favicon/browserconfig.xml b/public/favicon/browserconfig.xml
new file mode 100644
index 0000000..b3930d0
--- /dev/null
+++ b/public/favicon/browserconfig.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+ #da532c
+
+
+
diff --git a/public/favicon/favicon-16x16.png b/public/favicon/favicon-16x16.png
new file mode 100644
index 0000000..c81cade
Binary files /dev/null and b/public/favicon/favicon-16x16.png differ
diff --git a/public/favicon/favicon-32x32.png b/public/favicon/favicon-32x32.png
new file mode 100644
index 0000000..db9dfa2
Binary files /dev/null and b/public/favicon/favicon-32x32.png differ
diff --git a/public/favicon/favicon.ico b/public/favicon/favicon.ico
new file mode 100644
index 0000000..d615140
Binary files /dev/null and b/public/favicon/favicon.ico differ
diff --git a/public/favicon/manifest.json b/public/favicon/manifest.json
new file mode 100644
index 0000000..3b557aa
--- /dev/null
+++ b/public/favicon/manifest.json
@@ -0,0 +1,41 @@
+{
+ "name": "App",
+ "icons": [
+ {
+ "src": "/android-icon-36x36.png",
+ "sizes": "36x36",
+ "type": "image/png",
+ "density": "0.75"
+ },
+ {
+ "src": "/android-icon-48x48.png",
+ "sizes": "48x48",
+ "type": "image/png",
+ "density": "1.0"
+ },
+ {
+ "src": "/android-icon-72x72.png",
+ "sizes": "72x72",
+ "type": "image/png",
+ "density": "1.5"
+ },
+ {
+ "src": "/android-icon-96x96.png",
+ "sizes": "96x96",
+ "type": "image/png",
+ "density": "2.0"
+ },
+ {
+ "src": "/android-icon-144x144.png",
+ "sizes": "144x144",
+ "type": "image/png",
+ "density": "3.0"
+ },
+ {
+ "src": "/android-icon-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "density": "4.0"
+ }
+ ]
+}
diff --git a/public/favicon/mstile-150x150.png b/public/favicon/mstile-150x150.png
new file mode 100644
index 0000000..309ac4a
Binary files /dev/null and b/public/favicon/mstile-150x150.png differ
diff --git a/public/favicon/safari-pinned-tab.svg b/public/favicon/safari-pinned-tab.svg
new file mode 100644
index 0000000..633ffd0
--- /dev/null
+++ b/public/favicon/safari-pinned-tab.svg
@@ -0,0 +1,417 @@
+
+
+
+
+Created by potrace 1.14, written by Peter Selinger 2001-2017
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/favicon/site.webmanifest b/public/favicon/site.webmanifest
new file mode 100644
index 0000000..901bd0c
--- /dev/null
+++ b/public/favicon/site.webmanifest
@@ -0,0 +1,19 @@
+{
+ "name": "",
+ "short_name": "",
+ "icons": [
+ {
+ "src": "/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#ffffff",
+ "background_color": "#ffffff",
+ "display": "standalone"
+}
\ No newline at end of file
diff --git a/public/fonts/inter-var-latin.woff2 b/public/fonts/inter-var-latin.woff2
new file mode 100644
index 0000000..2fbab97
Binary files /dev/null and b/public/fonts/inter-var-latin.woff2 differ
diff --git a/public/images/large-og.png b/public/images/large-og.png
new file mode 100644
index 0000000..2acf60c
Binary files /dev/null and b/public/images/large-og.png differ
diff --git a/public/images/member-orgs/dexcom.png b/public/images/member-orgs/dexcom.png
new file mode 100644
index 0000000..f56fcf1
Binary files /dev/null and b/public/images/member-orgs/dexcom.png differ
diff --git a/public/images/member-orgs/heidelberg.png b/public/images/member-orgs/heidelberg.png
new file mode 100644
index 0000000..aa4b652
Binary files /dev/null and b/public/images/member-orgs/heidelberg.png differ
diff --git a/public/images/member-orgs/icare.svg b/public/images/member-orgs/icare.svg
new file mode 100644
index 0000000..42763fc
--- /dev/null
+++ b/public/images/member-orgs/icare.svg
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/public/images/member-orgs/microsoft.svg b/public/images/member-orgs/microsoft.svg
new file mode 100644
index 0000000..e77821b
--- /dev/null
+++ b/public/images/member-orgs/microsoft.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/public/images/member-orgs/ohsu.png b/public/images/member-orgs/ohsu.png
new file mode 100644
index 0000000..3292cc5
Binary files /dev/null and b/public/images/member-orgs/ohsu.png differ
diff --git a/public/images/member-orgs/optomed.png b/public/images/member-orgs/optomed.png
new file mode 100644
index 0000000..cbfdf32
Binary files /dev/null and b/public/images/member-orgs/optomed.png differ
diff --git a/public/images/member-orgs/temp-logo.png b/public/images/member-orgs/temp-logo.png
new file mode 100644
index 0000000..9f516dc
Binary files /dev/null and b/public/images/member-orgs/temp-logo.png differ
diff --git a/public/images/member-orgs/temp-symbol.png b/public/images/member-orgs/temp-symbol.png
new file mode 100644
index 0000000..f520fa9
Binary files /dev/null and b/public/images/member-orgs/temp-symbol.png differ
diff --git a/public/images/member-orgs/topcon.png b/public/images/member-orgs/topcon.png
new file mode 100644
index 0000000..aaaff5c
Binary files /dev/null and b/public/images/member-orgs/topcon.png differ
diff --git a/public/images/member-orgs/ucsd.png b/public/images/member-orgs/ucsd.png
new file mode 100644
index 0000000..f562f27
Binary files /dev/null and b/public/images/member-orgs/ucsd.png differ
diff --git a/public/images/member-orgs/uw.png b/public/images/member-orgs/uw.png
new file mode 100644
index 0000000..8595feb
Binary files /dev/null and b/public/images/member-orgs/uw.png differ
diff --git a/public/images/modules/data-hero.svg b/public/images/modules/data-hero.svg
new file mode 100644
index 0000000..217dab4
--- /dev/null
+++ b/public/images/modules/data-hero.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/public/images/modules/pedp-hero.jpeg b/public/images/modules/pedp-hero.jpeg
new file mode 100644
index 0000000..56ec7f1
Binary files /dev/null and b/public/images/modules/pedp-hero.jpeg differ
diff --git a/public/images/new-tab.png b/public/images/new-tab.png
new file mode 100644
index 0000000..9949487
Binary files /dev/null and b/public/images/new-tab.png differ
diff --git a/public/lotties/404.json b/public/lotties/404.json
new file mode 100644
index 0000000..47388b5
--- /dev/null
+++ b/public/lotties/404.json
@@ -0,0 +1,4743 @@
+{
+ "v": "5.9.6",
+ "fr": 30,
+ "ip": 0,
+ "op": 151,
+ "w": 1200,
+ "h": 1200,
+ "nm": "Search",
+ "ddd": 0,
+ "assets": [],
+ "layers": [
+ {
+ "ddd": 0,
+ "ind": 1,
+ "ty": 4,
+ "nm": "Magnify Glass 2",
+ "parent": 3,
+ "td": 1,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [723.307, 725.984, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [723.307, 725.984, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-115.596, 0],
+ [0, -115.596],
+ [115.596, 0],
+ [0, 115.596]
+ ],
+ "o": [
+ [115.596, 0],
+ [0, 115.596],
+ [-115.596, 0],
+ [0, -115.596]
+ ],
+ "v": [
+ [0, -209.304],
+ [209.304, 0],
+ [0, 209.304],
+ [-209.304, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.831372559071, 0.929411768913, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [424.921, 428.674],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 17",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 20,
+ "op": 80,
+ "st": 20,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 2,
+ "ty": 4,
+ "nm": "Shape Layer 1",
+ "parent": 1,
+ "tt": 1,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 50,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.333],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [39]
+ },
+ {
+ "t": 20,
+ "s": [-42]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [187.128, 623.25, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-91, -47, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": {
+ "a": 0,
+ "k": [62, 676],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.2588239782, 0.698038976333, 0.984314024682, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0,
+ "y": 1
+ },
+ "o": {
+ "x": 0.333,
+ "y": 0
+ },
+ "t": 20,
+ "s": [-145.666, -47.922],
+ "to": [120.611, -0.032],
+ "ti": [-120.611, 0.032]
+ },
+ {
+ "t": 60,
+ "s": [577.999, -48.112]
+ }
+ ],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": {
+ "a": 0,
+ "k": [122, 674],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.2588239782, 0.698038976333, 0.984314024682, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0,
+ "y": 1
+ },
+ "o": {
+ "x": 0.333,
+ "y": 0
+ },
+ "t": 25,
+ "s": [-143, -49],
+ "to": [105.636, 0],
+ "ti": [-105.636, 0]
+ },
+ {
+ "t": 65,
+ "s": [490.818, -49]
+ }
+ ],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 20,
+ "op": 80,
+ "st": 20,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 3,
+ "ty": 4,
+ "nm": "Magnify Glass",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.333],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.333],
+ "y": [0]
+ },
+ "t": 20,
+ "s": [81]
+ },
+ {
+ "i": {
+ "x": [0],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.333],
+ "y": [0]
+ },
+ "t": 80,
+ "s": [81]
+ },
+ {
+ "t": 100,
+ "s": [0]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0,
+ "y": 1
+ },
+ "o": {
+ "x": 0.333,
+ "y": 0
+ },
+ "t": 0,
+ "s": [823.307, 825.984, 0],
+ "to": [-70.36, 116.617, 0],
+ "ti": [76.942, 110.098, 0]
+ },
+ {
+ "i": {
+ "x": 0,
+ "y": 1
+ },
+ "o": {
+ "x": 0.333,
+ "y": 0
+ },
+ "t": 20,
+ "s": [441.437, 852.411, 0],
+ "to": [-36.545, -52.293, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0,
+ "y": 1
+ },
+ "o": {
+ "x": 0.333,
+ "y": 0
+ },
+ "t": 40,
+ "s": [389.571, 758.109, 0],
+ "to": [0, 0, 0],
+ "ti": [-10.898, -42.43, 0]
+ },
+ {
+ "i": {
+ "x": 0,
+ "y": 1
+ },
+ "o": {
+ "x": 0.333,
+ "y": 0
+ },
+ "t": 60,
+ "s": [479.158, 1059.877, 0],
+ "to": [10.155, -47.229, 0],
+ "ti": [-16.672, 47.233, 0]
+ },
+ {
+ "i": {
+ "x": 0,
+ "y": 1
+ },
+ "o": {
+ "x": 0.333,
+ "y": 0
+ },
+ "t": 80,
+ "s": [556.958, 814.69, 0],
+ "to": [-39.328, 37.767, 0],
+ "ti": [-123.307, 228.016, 0]
+ },
+ {
+ "t": 100,
+ "s": [823.307, 825.984, 0]
+ }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [723.307, 725.984, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0, 0, 0],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 0,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0, 0, 0],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 20,
+ "s": [80, 80, 100]
+ },
+ {
+ "i": {
+ "x": [0, 0, 0],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 80,
+ "s": [80, 80, 100]
+ },
+ {
+ "t": 100,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.911, 0.002],
+ [-0.001, 3.978],
+ [-1.35, 1.35],
+ [0, 0],
+ [-2.812, -2.812],
+ [2.812, -2.812],
+ [0, 0]
+ ],
+ "o": [
+ [-3.978, -0.001],
+ [0, -1.909],
+ [0, 0],
+ [2.812, -2.812],
+ [2.812, 2.812],
+ [0, 0],
+ [-1.349, 1.353]
+ ],
+ "v": [
+ [-5.093, 12.296],
+ [-12.294, 5.092],
+ [-10.185, 0.001],
+ [0, -10.187],
+ [10.185, -10.187],
+ [10.185, -0.002],
+ [0, 10.186]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.427450984716, 0.427450984716, 0.666666686535, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [681.27, 628.239],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.911, 0.002],
+ [-0.001, 3.978],
+ [-1.35, 1.35],
+ [0, 0],
+ [-2.812, -2.812],
+ [2.812, -2.812],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [-3.978, -0.001],
+ [0, -1.909],
+ [0, 0],
+ [2.812, -2.812],
+ [2.812, 2.812],
+ [0, 0],
+ [0, 0],
+ [-1.349, 1.353]
+ ],
+ "v": [
+ [-17.824, 25.027],
+ [-25.025, 17.823],
+ [-22.916, 12.732],
+ [12.731, -22.918],
+ [22.916, -22.918],
+ [22.916, -12.733],
+ [22.916, -12.733],
+ [-12.731, 22.917]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.427450984716, 0.427450984716, 0.666666686535, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [637.978, 671.528],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.82, -0.007],
+ [2.702, -2.703],
+ [0, 0],
+ [-5.624, -5.626],
+ [-0.001, -0.001],
+ [0, 0],
+ [-5.699, 5.444],
+ [0, 0],
+ [0, 0],
+ [5.624, 5.626],
+ [0.001, 0.001],
+ [0, 0]
+ ],
+ "o": [
+ [-3.822, -0.008],
+ [0, 0],
+ [-5.626, 5.624],
+ [0.001, 0.001],
+ [0, 0],
+ [5.699, 5.444],
+ [0, 0],
+ [0, 0],
+ [5.626, -5.624],
+ [-0.001, -0.001],
+ [0, 0],
+ [-2.7, -2.701]
+ ],
+ "v": [
+ [-64.64, -114.696],
+ [-74.831, -110.486],
+ [-110.478, -74.836],
+ [-110.481, -54.466],
+ [-110.478, -54.463],
+ [54.455, 110.47],
+ [74.825, 110.47],
+ [110.479, 74.82],
+ [110.479, 74.82],
+ [110.482, 54.45],
+ [110.479, 54.447],
+ [-54.455, -110.486]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [7.645, 0.023],
+ [5.39, 5.422],
+ [0, 0],
+ [-11.246, 11.251],
+ [-0.003, 0.003],
+ [0, 0],
+ [-11.26, -11.233],
+ [0, 0],
+ [11.246, -11.251],
+ [0.003, -0.003],
+ [0, 0]
+ ],
+ "o": [
+ [-7.645, 0.021],
+ [0, 0],
+ [-11.251, -11.246],
+ [0.003, -0.003],
+ [0, 0],
+ [11.26, -11.233],
+ [0, 0],
+ [11.251, 11.246],
+ [-0.003, 0.003],
+ [0, 0],
+ [-5.388, 5.424]
+ ],
+ "v": [
+ [64.64, 129.096],
+ [44.27, 120.655],
+ [-120.663, -44.278],
+ [-120.671, -85.013],
+ [-120.663, -85.021],
+ [-85.016, -120.671],
+ [-44.27, -120.671],
+ [120.663, 44.262],
+ [120.671, 84.997],
+ [120.663, 85.005],
+ [85.009, 120.655]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.427450984716, 0.427450984716, 0.666666686535, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [730.632, 733.63],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.626, 5.626],
+ [0, 0],
+ [-5.626, -5.626],
+ [0, 0],
+ [5.626, -5.626],
+ [0, 0],
+ [5.626, 5.626],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [5.626, -5.626],
+ [0, 0],
+ [5.626, 5.626],
+ [0, 0],
+ [-5.626, 5.626],
+ [0, 0],
+ [-5.626, -5.626]
+ ],
+ "v": [
+ [-97.746, -97.746],
+ [-97.746, -97.746],
+ [-77.374, -97.746],
+ [97.746, 77.374],
+ [97.746, 97.746],
+ [97.746, 97.746],
+ [77.374, 97.746],
+ [-97.746, -77.374]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [738.271, 725.984],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 50,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.625, 5.625],
+ [0, 0],
+ [-5.626, 5.626],
+ [0, 0],
+ [0, 0],
+ [-8.438, -8.438],
+ [0, 0],
+ [-8.438, 8.438],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-5.626, -5.625],
+ [0, 0],
+ [0, 0],
+ [-8.438, 8.438],
+ [0, 0],
+ [8.438, 8.438],
+ [0, 0],
+ [-5.625, 5.625]
+ ],
+ "v": [
+ [85.632, 89.489],
+ [-89.488, -85.631],
+ [-89.488, -106.003],
+ [-89.488, -106.003],
+ [-99.674, -95.817],
+ [-99.674, -65.26],
+ [65.26, 99.674],
+ [95.817, 99.674],
+ [106.003, 89.489]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.172549024224, 0.29411765933, 0.458823531866, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [714.735, 749.521],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 20,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-8.438, 8.438],
+ [0, 0],
+ [-8.438, -8.438],
+ [0, 0],
+ [8.438, -8.438],
+ [0, 0],
+ [8.438, 8.438],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [8.438, -8.438],
+ [0, 0],
+ [8.438, 8.438],
+ [0, 0],
+ [-8.438, 8.438],
+ [0, 0],
+ [-8.438, -8.438]
+ ],
+ "v": [
+ [-115.571, -79.921],
+ [-79.921, -115.571],
+ [-49.363, -115.571],
+ [115.571, 49.363],
+ [115.571, 79.921],
+ [79.921, 115.571],
+ [49.363, 115.571],
+ [-115.571, -49.363]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.807843148708, 0.847058832645, 0.933333337307, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [730.632, 733.624],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [111.488, 0.003],
+ [0, 0],
+ [-0.182, -111.618],
+ [-111.485, -0.007],
+ [0, 0],
+ [0.182, 111.618]
+ ],
+ "o": [
+ [0, 0],
+ [-111.618, 0.182],
+ [0.182, 111.485],
+ [0, 0],
+ [111.618, -0.182],
+ [-0.182, -111.487]
+ ],
+ "v": [
+ [0, -202.092],
+ [-0.33, -202.092],
+ [-202.104, 0.34],
+ [-0.014, 202.113],
+ [0.324, 202.113],
+ [202.097, -0.319]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-0.001, 119.574],
+ [-119.438, 0.191],
+ [0, 0],
+ [-0.003, -119.574],
+ [119.44, -0.191]
+ ],
+ "o": [
+ [-119.574, -0.001],
+ [0.001, -119.438],
+ [0, 0],
+ [119.574, -0.003],
+ [0.003, 119.441],
+ [0, 0]
+ ],
+ "v": [
+ [-0.014, 216.519],
+ [-216.52, 0.008],
+ [-0.359, -216.497],
+ [0, -216.497],
+ [216.513, 0.006],
+ [0.352, 216.519]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [128.558, 0.03],
+ [0, 0],
+ [-0.233, -128.744],
+ [-128.56, -0.027],
+ [0, 0],
+ [0.232, 128.744]
+ ],
+ "o": [
+ [0, 0],
+ [-128.744, 0.233],
+ [0.232, 128.56],
+ [0, 0],
+ [128.744, -0.232],
+ [-0.232, -128.558]
+ ],
+ "v": [
+ [0.014, -233.111],
+ [-0.38, -233.111],
+ [-233.069, 0.421],
+ [-0.007, 233.111],
+ [0.38, 233.111],
+ [233.07, -0.421]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-0.024, 136.699],
+ [-136.512, 0.241],
+ [0, 0],
+ [0.024, -136.699],
+ [136.512, -0.241]
+ ],
+ "o": [
+ [-136.699, -0.024],
+ [0.024, -136.512],
+ [0, 0],
+ [136.699, 0.024],
+ [-0.024, 136.512],
+ [0, 0]
+ ],
+ "v": [
+ [-0.014, 247.516],
+ [-247.487, -0.043],
+ [-0.408, -247.516],
+ [0.014, -247.516],
+ [247.487, 0.043],
+ [0.408, 247.516]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.427450984716, 0.427450984716, 0.666666686535, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [424.779, 428.817],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [8.451, -7.401],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-7.375, 8.474]
+ ],
+ "v": [
+ [-25.908, -2.057],
+ [2.592, 26.345],
+ [26.352, 2.507],
+ [-2.141, -25.898]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.914, 0.003],
+ [1.349, 1.347],
+ [0, 0],
+ [-2.809, 2.818],
+ [-0.185, 0.152],
+ [-9.848, 12.075],
+ [-2.033, 0.104],
+ [-1.43, -1.455],
+ [0, 0],
+ [2.809, -2.817],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [-1.907, 0.003],
+ [0, 0],
+ [-2.818, -2.809],
+ [0.169, -0.169],
+ [12.043, -9.888],
+ [1.286, -1.577],
+ [2.036, -0.128],
+ [0, 0],
+ [2.817, 2.809],
+ [0, 0],
+ [0, 0],
+ [-1.349, 1.358]
+ ],
+ "v": [
+ [2.607, 43.732],
+ [-2.479, 41.632],
+ [-41.621, 2.62],
+ [-41.638, -7.568],
+ [-41.108, -8.05],
+ [-8.19, -41.077],
+ [-2.978, -43.718],
+ [2.48, -41.629],
+ [41.623, -2.613],
+ [41.637, 7.575],
+ [41.637, 7.575],
+ [7.706, 41.615]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.427450984716, 0.427450984716, 0.666666686535, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [613.672, 617.092],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-103.495, 23.67],
+ [-34.985, -9.165],
+ [-7.089, -105.993],
+ [0.009, 5.48],
+ [132.721, -0.217],
+ [-0.217, -132.721],
+ [0, 0],
+ [-0.34, -5.163]
+ ],
+ "o": [
+ [34.975, -9.203],
+ [103.583, 23.567],
+ [0.352, -5.389],
+ [-0.217, -132.721],
+ [-132.721, 0.217],
+ [0, 0],
+ [0.009, 5.247],
+ [7.039, -105.934]
+ ],
+ "v": [
+ [-53.488, -90.217],
+ [53.23, -90.274],
+ [239.729, 128.054],
+ [240.313, 111.766],
+ [-0.393, -128.154],
+ [-240.313, 112.553],
+ [-240.313, 112.553],
+ [-239.729, 128.154]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [424.778, 316.657],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [126.561, -0.222],
+ [8.198, 126.555],
+ [-0.009, -5.325],
+ [-132.721, 0.217],
+ [0.217, 132.721],
+ [0, 0],
+ [0.321, 5.018]
+ ],
+ "o": [
+ [-126.82, 0.194],
+ [-0.332, 5.239],
+ [0.217, 132.721],
+ [132.721, -0.217],
+ [0, 0],
+ [-0.008, -5.098],
+ [-8.116, 126.301]
+ ],
+ "v": [
+ [0.393, 96.941],
+ [-239.763, -127.816],
+ [-240.313, -111.986],
+ [0.393, 127.934],
+ [240.313, -112.772],
+ [240.313, -112.772],
+ [239.763, -127.934]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.172549024224, 0.29411765933, 0.458823531866, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [424.779, 541.196],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 20,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [115.595, -0.189],
+ [0.19, 115.596],
+ [-115.596, 0.19],
+ [-0.19, -115.596],
+ [0, 0]
+ ],
+ "o": [
+ [-115.596, 0.19],
+ [-0.19, -115.596],
+ [115.596, -0.19],
+ [0, 0.001],
+ [0.189, 115.595]
+ ],
+ "v": [
+ [0.339, 209.316],
+ [-209.309, 0.355],
+ [-0.348, -209.293],
+ [209.3, -0.332],
+ [209.3, -0.331]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-0.217, -132.721],
+ [-132.721, 0.217],
+ [0.217, 132.721],
+ [132.721, -0.217]
+ ],
+ "o": [
+ [-132.721, 0.217],
+ [0.217, 132.721],
+ [132.721, -0.217],
+ [-0.217, -132.721],
+ [0, 0]
+ ],
+ "v": [
+ [-0.394, -240.313],
+ [-240.313, 0.394],
+ [0.394, 240.313],
+ [240.313, -0.394],
+ [-0.393, -240.313]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.933333337307, 0.964705884457, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [424.779, 428.817],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-10.143, 12.435],
+ [0, 0],
+ [12.413, -10.192],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-10.151, 12.446],
+ [0, 0],
+ [12.401, -10.185]
+ ],
+ "v": [
+ [25.796, -8.177],
+ [8.135, -25.837],
+ [-25.796, 8.204],
+ [-8.104, 25.837]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.172549024224, 0.29411765933, 0.458823531866, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [602.933, 606.404],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 20,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 12,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [12.413, -10.192],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-10.151, 12.446],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [36.536, 2.487],
+ [-2.605, -36.528],
+ [-36.536, -2.486],
+ [2.607, 36.528]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.933333337307, 0.964705884457, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [613.674, 617.094],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 13",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 13,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-109.959, 0.014],
+ [-7.596, -109.697],
+ [0, 4.875],
+ [115.596, -0.07],
+ [0.07, -115.497],
+ [-0.328, -4.791]
+ ],
+ "o": [
+ [109.959, 0.014],
+ [0.328, -4.791],
+ [-0.07, -115.596],
+ [-115.497, 0.07],
+ [0, 4.875],
+ [7.596, -109.697]
+ ],
+ "v": [
+ [0, -82.988],
+ [208.75, 111.832],
+ [209.304, 97.347],
+ [-0.126, -111.832],
+ [-209.304, 97.347],
+ [-208.75, 111.832]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.172549024224, 0.29411765933, 0.458823531866, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [424.921, 331.327],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 20,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 16",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 16,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-115.596, 0],
+ [0, -115.596],
+ [115.596, 0],
+ [0, 115.596]
+ ],
+ "o": [
+ [115.596, 0],
+ [0, 115.596],
+ [-115.596, 0],
+ [0, -115.596]
+ ],
+ "v": [
+ [0, -209.304],
+ [209.304, 0],
+ [0, 209.304],
+ [-209.304, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.831372559071, 0.929411768913, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [424.921, 428.674],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 17",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 17,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 4,
+ "ty": 4,
+ "nm": "Group 1",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [586.971, 922.325, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [486.971, 822.325, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": -40,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": -15,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 10,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 35,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 60,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 85,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 110,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 135,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 160,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 185,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 210,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 235,
+ "s": [50, 50, 100]
+ },
+ {
+ "t": 260,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-3.694, -11.081],
+ [-10.619, -3.232],
+ [11.081, -3.694],
+ [3.232, -10.619],
+ [3.694, 11.081],
+ [10.619, 3.232],
+ [-11.081, 3.694],
+ [-3.232, 10.619]
+ ],
+ "o": [
+ [3.232, 10.619],
+ [11.081, 3.694],
+ [-10.619, 3.232],
+ [-3.694, 11.081],
+ [-3.232, -10.619],
+ [-11.081, -3.694],
+ [10.619, -3.232],
+ [3.694, -11.081]
+ ],
+ "v": [
+ [5.54, -27.702],
+ [27.702, -5.54],
+ [27.702, 5.54],
+ [5.54, 27.702],
+ [-5.54, 27.702],
+ [-27.702, 5.54],
+ [-27.702, -5.54],
+ [-5.54, -27.702]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.588235318661, 0.843137264252, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [486.971, 822.325],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 5,
+ "ty": 4,
+ "nm": "Group 2",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [947.697, 395.941, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [847.697, 295.941, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": -32,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": -7,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 18,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 43,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 68,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 93,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 118,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 143,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 168,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 193,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 218,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 243,
+ "s": [50, 50, 100]
+ },
+ {
+ "t": 268,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.828, -8.484],
+ [-8.13, -2.475],
+ [8.484, -2.828],
+ [2.474, -8.13],
+ [2.828, 8.484],
+ [8.13, 2.474],
+ [-8.484, 2.828],
+ [-2.474, 8.13]
+ ],
+ "o": [
+ [2.474, 8.13],
+ [8.484, 2.828],
+ [-8.13, 2.475],
+ [-2.828, 8.484],
+ [-2.474, -8.13],
+ [-8.484, -2.828],
+ [8.13, -2.474],
+ [2.828, -8.484]
+ ],
+ "v": [
+ [4.242, -21.209],
+ [21.209, -4.242],
+ [21.209, 4.242],
+ [4.242, 21.209],
+ [-4.242, 21.209],
+ [-21.209, 4.242],
+ [-21.209, -4.242],
+ [-4.242, -21.209]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.588235318661, 0.843137264252, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [847.697, 295.941],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 6,
+ "ty": 4,
+ "nm": "Group 3",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [752.629, 259.693, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [652.629, 159.693, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": -24,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 1,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 26,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 51,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 76,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 101,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 126,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 151,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 176,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 201,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 226,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 251,
+ "s": [50, 50, 100]
+ },
+ {
+ "t": 276,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.955, -8.865],
+ [-8.495, -2.586],
+ [8.865, -2.955],
+ [2.586, -8.495],
+ [2.955, 8.865],
+ [8.495, 2.586],
+ [-8.865, 2.955],
+ [-2.585, 8.495]
+ ],
+ "o": [
+ [2.586, 8.495],
+ [8.865, 2.955],
+ [-8.495, 2.586],
+ [-2.955, 8.865],
+ [-2.585, -8.495],
+ [-8.865, -2.955],
+ [8.495, -2.586],
+ [2.955, -8.865]
+ ],
+ "v": [
+ [4.432, -22.162],
+ [22.162, -4.432],
+ [22.162, 4.432],
+ [4.432, 22.162],
+ [-4.432, 22.162],
+ [-22.162, 4.432],
+ [-22.162, -4.432],
+ [-4.432, -22.162]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.588235318661, 0.843137264252, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [652.629, 159.693],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 7,
+ "ty": 4,
+ "nm": "Group 4",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [248.453, 771.072, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [148.453, 671.072, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": -16,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 9,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 34,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 59,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 84,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 109,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 134,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 159,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 184,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 209,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 234,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 259,
+ "s": [50, 50, 100]
+ },
+ {
+ "t": 284,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.955, -8.865],
+ [-8.495, -2.586],
+ [8.865, -2.955],
+ [2.586, -8.495],
+ [2.955, 8.865],
+ [8.495, 2.586],
+ [-8.865, 2.955],
+ [-2.585, 8.495]
+ ],
+ "o": [
+ [2.586, 8.495],
+ [8.865, 2.955],
+ [-8.495, 2.586],
+ [-2.955, 8.865],
+ [-2.585, -8.495],
+ [-8.865, -2.955],
+ [8.495, -2.586],
+ [2.955, -8.865]
+ ],
+ "v": [
+ [4.432, -22.162],
+ [22.162, -4.432],
+ [22.162, 4.432],
+ [4.432, 22.162],
+ [-4.432, 22.162],
+ [-22.162, 4.432],
+ [-22.162, -4.432],
+ [-4.432, -22.162]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.78823530674, 0.75686275959, 0.960784316063, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [148.453, 671.072],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 8,
+ "ty": 4,
+ "nm": "Group 5",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [291.668, 317.313, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [191.668, 217.313, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": -8,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 17,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 42,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 67,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 92,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 117,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 142,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 167,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 192,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 217,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 242,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 267,
+ "s": [50, 50, 100]
+ },
+ {
+ "t": 292,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.955, -8.865],
+ [-8.495, -2.586],
+ [8.865, -2.955],
+ [2.586, -8.495],
+ [2.955, 8.865],
+ [8.495, 2.586],
+ [-8.865, 2.955],
+ [-2.585, 8.495]
+ ],
+ "o": [
+ [2.586, 8.495],
+ [8.865, 2.955],
+ [-8.495, 2.586],
+ [-2.955, 8.865],
+ [-2.585, -8.495],
+ [-8.865, -2.955],
+ [8.495, -2.586],
+ [2.955, -8.865]
+ ],
+ "v": [
+ [4.432, -22.162],
+ [22.162, -4.432],
+ [22.162, 4.432],
+ [4.432, 22.162],
+ [-4.432, 22.162],
+ [-22.162, 4.432],
+ [-22.162, -4.432],
+ [-4.432, -22.162]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.78823530674, 0.75686275959, 0.960784316063, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [191.668, 217.313],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 9,
+ "ty": 4,
+ "nm": "Group 6",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [925.489, 598.211, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [825.489, 498.211, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 0,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 25,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 50,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 75,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 100,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 125,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 150,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 175,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 200,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 225,
+ "s": [50, 50, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 250,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.667, 0.667, 0.667],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.333, 0.333, 0.333],
+ "y": [0, 0, 0]
+ },
+ "t": 275,
+ "s": [50, 50, 100]
+ },
+ {
+ "t": 300,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-4.432, -13.297],
+ [-12.743, -3.878],
+ [13.297, -4.432],
+ [3.878, -12.743],
+ [4.432, 13.297],
+ [12.743, 3.878],
+ [-13.297, 4.432],
+ [-3.878, 12.743]
+ ],
+ "o": [
+ [3.878, 12.743],
+ [13.297, 4.432],
+ [-12.743, 3.878],
+ [-4.432, 13.297],
+ [-3.878, -12.743],
+ [-13.297, -4.432],
+ [12.743, -3.878],
+ [4.432, -13.297]
+ ],
+ "v": [
+ [6.648, -33.242],
+ [33.242, -6.648],
+ [33.242, 6.648],
+ [6.648, 33.242],
+ [-6.648, 33.242],
+ [-33.242, 6.648],
+ [-33.242, -6.648],
+ [-6.648, -33.242]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.78823530674, 0.75686275959, 0.960784316063, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [825.489, 498.211],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 10,
+ "ty": 4,
+ "nm": "Bg",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 30,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [611.583, 608.517, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.601, 38.169],
+ [70.119, 14.754],
+ [16.043, 18.986],
+ [88.82, -75.221],
+ [10.39, -43.775],
+ [30.979, -15.726],
+ [-73.503, -102.064],
+ [-14.162, -6.219],
+ [-10.687, -26.999],
+ [-82.947, 33.849],
+ [-9.757, 6.775],
+ [-32.481, -8.611],
+ [-23.982, 87.991],
+ [5.185, 25.347],
+ [-14.514, 24.146]
+ ],
+ "o": [
+ [-10.3, -70.91],
+ [-24.31, -5.185],
+ [-75.221, -88.82],
+ [-34.334, 29.077],
+ [-8.372, 33.718],
+ [-80.645, 41.9],
+ [9.589, 12.137],
+ [26.034, 12.861],
+ [33.849, 82.947],
+ [10.998, -4.488],
+ [27.551, -19.238],
+ [87.991, 23.982],
+ [6.803, -24.962],
+ [-5.313, -27.667],
+ [19.474, -33.302]
+ ],
+ "v": [
+ [354.128, -87.306],
+ [220.25, -229.917],
+ [157.998, -267.205],
+ [-139.024, -291.829],
+ [-207.876, -179.676],
+ [-269.84, -101.817],
+ [-317.385, 150.906],
+ [-281.214, 178.861],
+ [-224.162, 240.79],
+ [-12.684, 329.691],
+ [18.544, 312.745],
+ [113.201, 295.989],
+ [315.946, 180.089],
+ [318.407, 103.57],
+ [332.696, 23.103]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.592156887054, 0.75686275959, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "ct": 1,
+ "bm": 0
+ }
+ ],
+ "markers": []
+}
diff --git a/public/lotties/construction.json b/public/lotties/construction.json
new file mode 100644
index 0000000..047f715
--- /dev/null
+++ b/public/lotties/construction.json
@@ -0,0 +1,44349 @@
+{
+ "v": "5.7.8",
+ "fr": 30,
+ "ip": 0,
+ "op": 265,
+ "w": 900,
+ "h": 606,
+ "nm": "Comp Bake",
+ "ddd": 0,
+ "assets": [],
+ "layers": [
+ {
+ "ddd": 0,
+ "ind": 1,
+ "ty": 4,
+ "nm": "light 4",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 52,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 57,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 94,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 99,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 178,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 183,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 220,
+ "s": [100]
+ },
+ {
+ "t": 225,
+ "s": [0]
+ }
+ ],
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 47,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 78,
+ "s": [38]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 108,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 173,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 204,
+ "s": [38]
+ },
+ {
+ "t": 234,
+ "s": [0]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [207, 395.5, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 52,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 67,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 84,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 99,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 178,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 193,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 210,
+ "s": [15, 15, 100]
+ },
+ {
+ "t": 225,
+ "s": [7.5, 7.5, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "sr",
+ "sy": 1,
+ "d": 1,
+ "pt": {
+ "a": 0,
+ "k": 4,
+ "ix": 3
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 4
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "ir": {
+ "a": 0,
+ "k": 31,
+ "ix": 6
+ },
+ "is": {
+ "a": 0,
+ "k": 254,
+ "ix": 8
+ },
+ "or": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "os": {
+ "a": 0,
+ "k": 0,
+ "ix": 9
+ },
+ "ix": 1,
+ "nm": "Polystar Path 1",
+ "mn": "ADBE Vector Shape - Star",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.079681396484, 0.079681396484, 0.079681396484, 0.9970703125],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886260986328, 0.160766601563, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 2,
+ "ty": 4,
+ "nm": "light 3",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 9,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 14,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 51,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 56,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 135,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 140,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 177,
+ "s": [100]
+ },
+ {
+ "t": 182,
+ "s": [0]
+ }
+ ],
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 4,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 35,
+ "s": [38]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 65,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 130,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 161,
+ "s": [38]
+ },
+ {
+ "t": 191,
+ "s": [0]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [150, 75.5, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 9,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 24,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 41,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 56,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 135,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 150,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 167,
+ "s": [15, 15, 100]
+ },
+ {
+ "t": 182,
+ "s": [7.5, 7.5, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "sr",
+ "sy": 1,
+ "d": 1,
+ "pt": {
+ "a": 0,
+ "k": 4,
+ "ix": 3
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 4
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "ir": {
+ "a": 0,
+ "k": 31,
+ "ix": 6
+ },
+ "is": {
+ "a": 0,
+ "k": 254,
+ "ix": 8
+ },
+ "or": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "os": {
+ "a": 0,
+ "k": 0,
+ "ix": 9
+ },
+ "ix": 1,
+ "nm": "Polystar Path 1",
+ "mn": "ADBE Vector Shape - Star",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.079681396484, 0.079681396484, 0.079681396484, 0.9970703125],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886260986328, 0.160766601563, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 3,
+ "ty": 4,
+ "nm": "light 2",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 34,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 39,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 76,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 81,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 160,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 165,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 202,
+ "s": [100]
+ },
+ {
+ "t": 207,
+ "s": [0]
+ }
+ ],
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 29,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 60,
+ "s": [38]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 90,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 155,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 186,
+ "s": [38]
+ },
+ {
+ "t": 216,
+ "s": [0]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [375, 428.5, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 34,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 49,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 66,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 81,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 160,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 175,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 192,
+ "s": [15, 15, 100]
+ },
+ {
+ "t": 207,
+ "s": [7.5, 7.5, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "sr",
+ "sy": 1,
+ "d": 1,
+ "pt": {
+ "a": 0,
+ "k": 4,
+ "ix": 3
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 4
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "ir": {
+ "a": 0,
+ "k": 31,
+ "ix": 6
+ },
+ "is": {
+ "a": 0,
+ "k": 254,
+ "ix": 8
+ },
+ "or": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "os": {
+ "a": 0,
+ "k": 0,
+ "ix": 9
+ },
+ "ix": 1,
+ "nm": "Polystar Path 1",
+ "mn": "ADBE Vector Shape - Star",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.079681396484, 0.079681396484, 0.079681396484, 0.9970703125],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992126464844, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 4,
+ "ty": 4,
+ "nm": "light",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 78,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 83,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 120,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 125,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 204,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 209,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.85],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.85],
+ "y": [0]
+ },
+ "t": 246,
+ "s": [100]
+ },
+ {
+ "t": 251,
+ "s": [0]
+ }
+ ],
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 73,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 104,
+ "s": [38]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 134,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.55],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 199,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.45],
+ "y": [0]
+ },
+ "t": 230,
+ "s": [38]
+ },
+ {
+ "t": 260,
+ "s": [0]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [800.5, 360, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 78,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 93,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 110,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 125,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.15, 0.15, 0.15],
+ "y": [0, 0, 0]
+ },
+ "t": 204,
+ "s": [7.5, 7.5, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 219,
+ "s": [15, 15, 100]
+ },
+ {
+ "i": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.85, 0.85, 0.85],
+ "y": [0, 0, 0]
+ },
+ "t": 236,
+ "s": [15, 15, 100]
+ },
+ {
+ "t": 251,
+ "s": [7.5, 7.5, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "sr",
+ "sy": 1,
+ "d": 1,
+ "pt": {
+ "a": 0,
+ "k": 4,
+ "ix": 3
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 4
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "ir": {
+ "a": 0,
+ "k": 31,
+ "ix": 6
+ },
+ "is": {
+ "a": 0,
+ "k": 254,
+ "ix": 8
+ },
+ "or": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "os": {
+ "a": 0,
+ "k": 0,
+ "ix": 9
+ },
+ "ix": 1,
+ "nm": "Polystar Path 1",
+ "mn": "ADBE Vector Shape - Star",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.079681396484, 0.079681396484, 0.079681396484, 0.9970703125],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992126464844, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 5,
+ "ty": 4,
+ "nm": "Shape Layer 4",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [464, 340, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [[0, 0]],
+ "o": [[0, 0]],
+ "v": [[724, -16]],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 6,
+ "ty": 4,
+ "nm": "Shape Layer 3",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [464, 340, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 7,
+ "ty": 4,
+ "nm": "Shape Layer 1",
+ "parent": 25,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 107,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 108,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 116,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 117,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 131,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 132,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 141,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 142,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 156,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 157,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 166,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 167,
+ "s": [100]
+ },
+ {
+ "t": 181,
+ "s": [100]
+ }
+ ],
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [137.735, -93.349, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [168, -87.5, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [162.286, -72.054],
+ [152.036, -80.554]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.207611083984, 0.259368896484, 0.338836669922, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 3,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [158.875, -75],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [158.875, -75],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": -51,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [163, -81.125],
+ [152.75, -89.625]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.207611083984, 0.259368896484, 0.338836669922, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 3,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [163, -81.125],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [163, -81.125],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": -18,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [168, -87.5],
+ [157.75, -96]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.207611083984, 0.259368896484, 0.338836669922, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 3,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [168, -87.5],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [168, -87.5],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tm",
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 93,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 103,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 107,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 117,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.418],
+ "y": [0]
+ },
+ "t": 127,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.418],
+ "y": [0]
+ },
+ "t": 131,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 142,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 152,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.388],
+ "y": [0]
+ },
+ "t": 156,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 167,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 177,
+ "s": [100]
+ },
+ {
+ "t": 181,
+ "s": [100]
+ }
+ ],
+ "ix": 1
+ },
+ "e": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 97,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 107,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 117,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 121,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.418],
+ "y": [0]
+ },
+ "t": 131,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 142,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 146,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.388],
+ "y": [0]
+ },
+ "t": 156,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 167,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 171,
+ "s": [0]
+ },
+ {
+ "t": 181,
+ "s": [100]
+ }
+ ],
+ "ix": 2
+ },
+ "o": {
+ "a": 0,
+ "k": 0,
+ "ix": 3
+ },
+ "m": 1,
+ "ix": 4,
+ "nm": "Trim Paths 1",
+ "mn": "ADBE Vector Filter - Trim",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 8,
+ "ty": 4,
+ "nm": "KRUK",
+ "parent": 9,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 0,
+ "s": [-5, -68.944, 0],
+ "to": [6.758, 0, 0],
+ "ti": [-6.758, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 0.45
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0.55
+ },
+ "t": 60,
+ "s": [35.547, -68.944, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 204,
+ "s": [35.547, -68.944, 0],
+ "to": [-6.758, 0, 0],
+ "ti": [6.758, 0, 0]
+ },
+ {
+ "t": 264,
+ "s": [-5, -68.944, 0]
+ }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [35.547, -68.944, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [38.144, -87.691],
+ [32.507, -87.691],
+ [31.507, -88.691],
+ [31.507, -91.86],
+ [32.507, -92.86],
+ [38.144, -92.86],
+ [39.144, -91.86],
+ [39.144, -88.691]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.86274510622, 0.180392161012, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.069, 0],
+ [0.48, 0.08],
+ [0.11, 4.143],
+ [-0.054, 0.436],
+ [-0.615, 0.391],
+ [-0.699, -0.225],
+ [0.087, -1.177],
+ [-0.045, -0.264],
+ [-1.113, -0.295],
+ [-0.765, 0.589],
+ [0, 0.962],
+ [1.075, 1.011],
+ [0.769, 0.642],
+ [0, 1.201],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.541, -0.451],
+ [-0.459, -0.43],
+ [0, -1.936],
+ [1.178, -0.907],
+ [1.469, 0.387],
+ [0.304, 1.776],
+ [-0.029, 0.391],
+ [0.397, 0.129],
+ [0.197, -0.129],
+ [0.038, -0.308],
+ [-0.011, -0.373],
+ [-3.298, -0.544],
+ [-1.623, 1.377],
+ [0, 2.084],
+ [4.342, 4.075],
+ [0.002, 1.452],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.718, -0.674],
+ [0, -1.555],
+ [1.998, -1.695]
+ ],
+ "o": [
+ [-0.479, 0],
+ [-4.072, -0.671],
+ [-0.012, -0.457],
+ [0.089, -0.721],
+ [0.619, -0.396],
+ [1.104, 0.357],
+ [-0.019, 0.256],
+ [0.196, 1.143],
+ [0.965, 0.257],
+ [0.764, -0.588],
+ [0, -0.995],
+ [-0.444, -0.415],
+ [-0.921, -0.768],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0.707],
+ [0.794, 0.661],
+ [0.894, 0.842],
+ [0, 1.483],
+ [-1.18, 0.907],
+ [-1.731, -0.459],
+ [-0.068, -0.397],
+ [0.025, -0.344],
+ [-0.256, -0.085],
+ [-0.114, 0.073],
+ [-0.044, 0.357],
+ [0.089, 3.36],
+ [2.104, 0.347],
+ [1.624, -1.377],
+ [0, -1.394],
+ [-1.051, -0.985],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0.002, 0.996],
+ [4.869, 4.567],
+ [0, 2.574],
+ [-1.603, 1.361]
+ ],
+ "v": [
+ [35.245, -68.944],
+ [33.805, -69.063],
+ [26.468, -77.507],
+ [26.532, -78.849],
+ [27.639, -80.599],
+ [29.713, -80.866],
+ [31.417, -78.269],
+ [31.456, -77.485],
+ [33.645, -75.08],
+ [36.367, -75.603],
+ [37.569, -78.041],
+ [36.014, -80.943],
+ [33.847, -82.803],
+ [32.397, -85.903],
+ [32.397, -90.88],
+ [34.064, -90.88],
+ [34.064, -85.903],
+ [34.915, -84.083],
+ [37.154, -82.159],
+ [39.236, -78.041],
+ [37.382, -74.281],
+ [33.216, -73.468],
+ [29.814, -77.205],
+ [29.755, -78.393],
+ [29.231, -79.271],
+ [28.536, -79.194],
+ [28.186, -78.645],
+ [28.135, -77.553],
+ [34.076, -70.707],
+ [39.854, -72.306],
+ [42.409, -77.752],
+ [38.067, -85.553],
+ [36.189, -89.9],
+ [36.187, -90.879],
+ [37.855, -90.882],
+ [37.856, -89.903],
+ [39.208, -86.768],
+ [44.076, -77.752],
+ [40.932, -71.034]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [-0.888, -0.833],
+ [0, -1.49],
+ [5, 0.825],
+ [0.099, 3.755],
+ [-0.049, 0.397],
+ [-0.958, -0.309],
+ [0, 0],
+ [0.057, -0.771],
+ [-0.058, -0.339],
+ [-1.431, -0.38],
+ [0, 2.511],
+ [0.99, 0.929],
+ [0.781, 0.651],
+ [0, 0.95],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.001, 1.218],
+ [4.605, 4.32],
+ [0, 4.736],
+ [-3.706, -0.611],
+ [-0.011, -0.415],
+ [0.124, -1],
+ [0, 0],
+ [0.736, 0.238],
+ [-0.024, 0.318],
+ [0.25, 1.459],
+ [2.606, 0.692],
+ [0, -1.456],
+ [-0.451, -0.424],
+ [-0.73, -0.608],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [37.021, -90.88],
+ [37.023, -89.902],
+ [38.637, -86.161],
+ [43.243, -77.752],
+ [33.94, -69.884],
+ [27.301, -77.53],
+ [27.359, -78.748],
+ [29.456, -80.073],
+ [29.487, -80.063],
+ [30.586, -78.331],
+ [30.635, -77.345],
+ [33.431, -74.274],
+ [38.403, -78.041],
+ [36.584, -81.55],
+ [34.381, -83.443],
+ [33.231, -85.903],
+ [33.231, -90.88]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Kruk",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.17, 0],
+ [0, 0],
+ [-0.516, 1.026],
+ [0, 0],
+ [0, 0.474],
+ [0, 0],
+ [1.297, 0.378],
+ [0, 0],
+ [0.539, -0.146],
+ [0, 0],
+ [0, -1.372],
+ [0, 0],
+ [-0.196, -0.41],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.149, 0],
+ [0, 0],
+ [0.213, -0.423],
+ [0, 0],
+ [0, -1.351],
+ [0, 0],
+ [-0.536, -0.156],
+ [0, 0],
+ [-1.324, 0.359],
+ [0, 0],
+ [0, 0.454],
+ [0, 0],
+ [0.505, 1.055]
+ ],
+ "v": [
+ [33.447, -92.86],
+ [37.271, -92.86],
+ [39.986, -94.534],
+ [44.472, -103.459],
+ [44.796, -104.823],
+ [44.796, -112.458],
+ [42.606, -115.376],
+ [36.091, -117.272],
+ [34.446, -117.287],
+ [28.098, -115.565],
+ [25.855, -112.632],
+ [25.855, -105.413],
+ [26.152, -104.102],
+ [30.706, -94.587]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886274516582, 0.160784319043, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [43.784, -113.469],
+ [27.809, -113.469],
+ [27.809, -139.222],
+ [43.784, -139.222]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.534, 0],
+ [0, 0],
+ [0, 0.534],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.534, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0.534]
+ ],
+ "v": [
+ [45.833, -139.222],
+ [25.261, -139.222],
+ [24.294, -140.189],
+ [24.294, -143.922],
+ [46.8, -143.922],
+ [46.8, -140.189]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [35.547, -68.944],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [35.547, -68.944],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "KRUK",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 9,
+ "ty": 4,
+ "nm": "KRAN ",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 0,
+ "s": [304, 543.005, 0],
+ "to": [7.5, 0, 0],
+ "ti": [-7.5, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 0.45
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0.55
+ },
+ "t": 60,
+ "s": [349, 543.005, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 204,
+ "s": [349, 543.005, 0],
+ "to": [-7.5, 0, 0],
+ "ti": [7.5, 0, 0]
+ },
+ {
+ "t": 264,
+ "s": [304, 543.005, 0]
+ }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-113.947, 208.005, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "ef": [
+ {
+ "ty": 5,
+ "nm": "KRAN 2: Path 1 [1.1.0]",
+ "np": 3,
+ "mn": "ADBE Layer Control",
+ "ix": 1,
+ "en": 1,
+ "ef": [
+ {
+ "ty": 10,
+ "nm": "Layer",
+ "mn": "ADBE Layer Control-0001",
+ "ix": 1,
+ "v": {
+ "a": 0,
+ "k": 9,
+ "ix": 1
+ }
+ }
+ ]
+ },
+ {
+ "ty": 5,
+ "nm": "KRAN 2: Path 1 [1.1.1]",
+ "np": 3,
+ "mn": "ADBE Layer Control",
+ "ix": 2,
+ "en": 1,
+ "ef": [
+ {
+ "ty": 10,
+ "nm": "Layer",
+ "mn": "ADBE Layer Control-0001",
+ "ix": 1,
+ "v": {
+ "a": 0,
+ "k": 9,
+ "ix": 1
+ }
+ }
+ ]
+ },
+ {
+ "ty": 5,
+ "nm": "KRAN 2: Path 1 [1.1.2]",
+ "np": 3,
+ "mn": "ADBE Layer Control",
+ "ix": 3,
+ "en": 1,
+ "ef": [
+ {
+ "ty": 10,
+ "nm": "Layer",
+ "mn": "ADBE Layer Control-0001",
+ "ix": 1,
+ "v": {
+ "a": 0,
+ "k": 9,
+ "ix": 1
+ }
+ }
+ ]
+ }
+ ],
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 0,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.324, -36.052],
+ [-5.35, -75.1],
+ [56.766, -14.35]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 2,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.293, -36.025],
+ [-5.3, -75.1],
+ [56.809, -14.377]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 4,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.182, -35.941],
+ [-5.141, -75.1],
+ [56.954, -14.458]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 6,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-46.981, -35.797],
+ [-4.859, -75.1],
+ [57.213, -14.597]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 8,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-46.689, -35.593],
+ [-4.437, -75.1],
+ [57.586, -14.795]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 10,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-46.291, -35.324],
+ [-3.857, -75.1],
+ [58.088, -15.056]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 12,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-45.775, -34.987],
+ [-3.1, -75.1],
+ [58.731, -15.383]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 14,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-45.12, -34.58],
+ [-2.146, -75.1],
+ [59.533, -15.778]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 16,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-44.293, -34.099],
+ [-0.969, -75.1],
+ [60.526, -16.245]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 18,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-43.277, -33.541],
+ [0.458, -75.1],
+ [61.724, -16.788]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 20,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-42.063, -32.903],
+ [2.166, -75.1],
+ [63.131, -17.41]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 22,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-40.623, -32.18],
+ [4.171, -75.1],
+ [64.772, -18.115]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 24,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-38.937, -31.37],
+ [6.488, -75.1],
+ [66.659, -18.906]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 26,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-37.031, -30.468],
+ [9.101, -75.1],
+ [68.761, -19.788]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 28,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-34.928, -29.472],
+ [11.946, -75.1],
+ [71.043, -20.764]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 30,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-32.703, -28.38],
+ [14.92, -75.1],
+ [73.424, -21.837]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 32,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-30.456, -27.189],
+ [17.895, -75.1],
+ [75.791, -23.01]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 34,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-28.286, -25.9],
+ [20.742, -75.1],
+ [78.03, -24.282]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 36,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-26.262, -24.512],
+ [23.357, -75.1],
+ [80.061, -25.655]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 38,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-24.406, -23.029],
+ [25.676, -75.1],
+ [81.844, -27.126]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 40,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-22.736, -21.459],
+ [27.681, -75.1],
+ [83.347, -28.689]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 42,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-21.234, -19.81],
+ [29.388, -75.1],
+ [84.573, -30.334]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 44,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-19.867, -18.099],
+ [30.816, -75.1],
+ [85.543, -32.048]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 46,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-18.627, -16.347],
+ [31.992, -75.1],
+ [86.259, -33.808]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 48,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.499, -14.583],
+ [32.947, -75.1],
+ [86.734, -35.588]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 50,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.46, -12.841],
+ [33.704, -75.1],
+ [87.005, -37.351]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 52,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-15.504, -11.164],
+ [34.284, -75.1],
+ [87.102, -39.055]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 54,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-14.643, -9.6],
+ [34.705, -75.1],
+ [87.052, -40.649]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 56,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-13.89, -8.201],
+ [34.988, -75.1],
+ [86.896, -42.08]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 58,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-13.282, -7.014],
+ [35.147, -75.1],
+ [86.664, -43.298]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 60,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-12.843, -6.083],
+ [35.197, -75.1],
+ [86.398, -44.255]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 62,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-12.554, -5.444],
+ [35.197, -75.1],
+ [86.178, -44.914]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 64,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-12.402, -5.118],
+ [35.197, -75.1],
+ [86.062, -45.25]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 66,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-12.406, -5.126],
+ [35.197, -75.1],
+ [86.065, -45.242]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 68,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-12.595, -5.535],
+ [35.197, -75.1],
+ [86.21, -44.82]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 70,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-12.985, -6.404],
+ [35.197, -75.1],
+ [86.505, -43.925]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 72,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-13.566, -7.789],
+ [35.197, -75.1],
+ [86.936, -42.503]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 74,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-14.307, -9.73],
+ [35.197, -75.1],
+ [87.468, -40.517]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 76,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-15.137, -12.233],
+ [35.197, -75.1],
+ [88.03, -37.968]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 78,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-15.957, -15.235],
+ [35.197, -75.1],
+ [88.532, -34.93]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 80,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.655, -18.583],
+ [35.197, -75.1],
+ [88.878, -31.563]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 82,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.147, -22.045],
+ [35.197, -75.1],
+ [89.009, -28.105]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 84,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.404, -25.369],
+ [35.197, -75.1],
+ [88.924, -24.807]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 86,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.458, -28.347],
+ [35.197, -75.1],
+ [88.674, -21.87]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 88,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.375, -30.853],
+ [35.197, -75.1],
+ [88.337, -19.411]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 90,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.225, -32.84],
+ [35.197, -75.1],
+ [87.987, -17.471]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 92,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.066, -34.314],
+ [35.197, -75.1],
+ [87.68, -16.036]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 94,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.935, -35.31],
+ [35.197, -75.1],
+ [87.45, -15.069]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 96,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.852, -35.874],
+ [35.197, -75.1],
+ [87.311, -14.522]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 98,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.824, -36.053],
+ [35.197, -75.1],
+ [87.266, -14.349]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 100,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.871, -35.745],
+ [35.197, -75.1],
+ [87.344, -14.648]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 102,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.999, -34.836],
+ [35.197, -75.1],
+ [87.562, -15.529]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 104,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.172, -33.375],
+ [35.197, -75.1],
+ [87.881, -16.949]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 106,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.338, -31.446],
+ [35.197, -75.1],
+ [88.24, -18.832]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 108,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.443, -29.172],
+ [35.197, -75.1],
+ [88.576, -21.059]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 110,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.449, -26.718],
+ [35.197, -75.1],
+ [88.831, -23.475]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 112,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.341, -24.265],
+ [35.197, -75.1],
+ [88.975, -25.9]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 114,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.142, -21.999],
+ [35.197, -75.1],
+ [89.009, -28.15]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 116,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.897, -20.082],
+ [35.197, -75.1],
+ [88.963, -30.063]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 118,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.665, -18.639],
+ [35.197, -75.1],
+ [88.882, -31.507]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 120,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.503, -17.753],
+ [35.197, -75.1],
+ [88.813, -32.396]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 122,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.449, -17.472],
+ [35.197, -75.1],
+ [88.788, -32.678]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 124,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.518, -17.831],
+ [35.197, -75.1],
+ [88.82, -32.317]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 126,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.653, -18.568],
+ [35.197, -75.1],
+ [88.877, -31.578]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 128,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.808, -19.5],
+ [35.197, -75.1],
+ [88.935, -30.645]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 130,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.962, -20.544],
+ [35.197, -75.1],
+ [88.98, -29.601]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 132,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.103, -21.653],
+ [35.197, -75.1],
+ [89.006, -28.496]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 134,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.223, -22.792],
+ [35.197, -75.1],
+ [89.008, -27.362]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 136,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.318, -23.935],
+ [35.197, -75.1],
+ [88.986, -26.227]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 138,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.389, -25.059],
+ [35.197, -75.1],
+ [88.94, -25.113]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 140,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.434, -26.139],
+ [35.197, -75.1],
+ [88.875, -24.046]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 142,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.456, -27.149],
+ [35.197, -75.1],
+ [88.794, -23.05]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 144,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.46, -28.054],
+ [35.197, -75.1],
+ [88.706, -22.158]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 146,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.451, -28.81],
+ [35.197, -75.1],
+ [88.62, -21.415]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 148,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.439, -29.348],
+ [35.197, -75.1],
+ [88.553, -20.887]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 150,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.433, -29.546],
+ [35.197, -75.1],
+ [88.527, -20.693]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 152,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.439, -29.333],
+ [35.197, -75.1],
+ [88.555, -20.901]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 154,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.45, -28.885],
+ [35.197, -75.1],
+ [88.611, -21.341]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 156,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.458, -28.303],
+ [35.197, -75.1],
+ [88.679, -21.913]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 158,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.46, -27.643],
+ [35.197, -75.1],
+ [88.748, -22.563]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 160,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.453, -26.937],
+ [35.197, -75.1],
+ [88.813, -23.258]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 162,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.436, -26.211],
+ [35.197, -75.1],
+ [88.87, -23.974]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 164,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.409, -25.485],
+ [35.197, -75.1],
+ [88.917, -24.692]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 166,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.373, -24.776],
+ [35.197, -75.1],
+ [88.954, -25.394]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 168,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.33, -24.101],
+ [35.197, -75.1],
+ [88.981, -26.062]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 170,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.283, -23.48],
+ [35.197, -75.1],
+ [88.998, -26.679]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 172,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.236, -22.933],
+ [35.197, -75.1],
+ [89.007, -27.221]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 174,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.193, -22.49],
+ [35.197, -75.1],
+ [89.01, -27.662]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 176,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.162, -22.189],
+ [35.197, -75.1],
+ [89.01, -27.962]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 178,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.151, -22.087],
+ [35.197, -75.1],
+ [89.01, -28.063]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 180,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.16, -22.17],
+ [35.197, -75.1],
+ [89.01, -27.981]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 182,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.178, -22.342],
+ [35.197, -75.1],
+ [89.01, -27.809]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 184,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.201, -22.567],
+ [35.197, -75.1],
+ [89.01, -27.586]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 186,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.225, -22.821],
+ [35.197, -75.1],
+ [89.008, -27.333]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 188,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.25, -23.093],
+ [35.197, -75.1],
+ [89.005, -27.063]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 190,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.274, -23.37],
+ [35.197, -75.1],
+ [89, -26.787]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 192,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.297, -23.646],
+ [35.197, -75.1],
+ [88.994, -26.513]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 194,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.317, -23.914],
+ [35.197, -75.1],
+ [88.987, -26.248]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 196,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.335, -24.165],
+ [35.197, -75.1],
+ [88.978, -25.999]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 198,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.35, -24.393],
+ [35.197, -75.1],
+ [88.97, -25.773]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 200,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.362, -24.589],
+ [35.197, -75.1],
+ [88.962, -25.579]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 202,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.371, -24.745],
+ [35.197, -75.1],
+ [88.956, -25.425]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 204,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.377, -24.846],
+ [35.197, -75.1],
+ [88.951, -25.324]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 206,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.415, -24.878],
+ [35.147, -75.1],
+ [88.913, -25.293]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 208,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.535, -24.822],
+ [34.988, -75.1],
+ [88.792, -25.348]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 210,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-17.749, -24.667],
+ [34.705, -75.1],
+ [88.576, -25.502]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 212,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-18.055, -24.398],
+ [34.284, -75.1],
+ [88.265, -25.768]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 214,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-18.464, -23.998],
+ [33.704, -75.1],
+ [87.843, -26.165]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 216,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-18.985, -23.444],
+ [32.947, -75.1],
+ [87.294, -26.714]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 218,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-19.628, -22.711],
+ [31.992, -75.1],
+ [86.596, -27.442]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 220,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-20.415, -21.77],
+ [30.816, -75.1],
+ [85.709, -28.379]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 222,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-21.346, -20.59],
+ [29.388, -75.1],
+ [84.605, -29.555]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 224,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-22.409, -19.152],
+ [27.681, -75.1],
+ [83.259, -30.992]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 226,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-23.611, -17.48],
+ [25.676, -75.1],
+ [81.627, -32.669]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 228,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-24.971, -15.694],
+ [23.357, -75.1],
+ [79.688, -34.467]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 230,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-26.515, -14.044],
+ [20.742, -75.1],
+ [77.494, -36.133]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 232,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-28.308, -12.805],
+ [17.895, -75.1],
+ [75.141, -37.387]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 234,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-30.345, -12.107],
+ [14.92, -75.1],
+ [72.759, -38.096]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 236,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-32.533, -11.916],
+ [11.946, -75.1],
+ [70.473, -38.29]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 238,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-34.776, -12.242],
+ [9.101, -75.1],
+ [68.396, -37.959]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 240,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-36.999, -13.139],
+ [6.488, -75.1],
+ [66.607, -37.049]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 242,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-39.138, -14.595],
+ [4.171, -75.1],
+ [65.101, -35.575]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 244,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-41.106, -16.566],
+ [2.166, -75.1],
+ [63.852, -33.588]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 246,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-42.843, -18.965],
+ [0.458, -75.1],
+ [62.782, -31.18]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 248,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-44.305, -21.66],
+ [-0.969, -75.1],
+ [61.805, -28.488]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 250,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-45.443, -24.485],
+ [-2.146, -75.1],
+ [60.879, -25.682]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 252,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-46.253, -27.26],
+ [-3.1, -75.1],
+ [59.988, -22.94]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 254,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-46.782, -29.816],
+ [-3.857, -75.1],
+ [59.132, -20.428]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 256,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.091, -32.02],
+ [-4.437, -75.1],
+ [58.345, -18.271]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 258,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.246, -33.78],
+ [-4.859, -75.1],
+ [57.679, -16.555]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 260,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.311, -35.048],
+ [-5.141, -75.1],
+ [57.172, -15.324]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 262,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.326, -35.803],
+ [-5.3, -75.1],
+ [56.865, -14.591]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 264,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.324, -36.052],
+ [-5.35, -75.1],
+ [56.766, -14.35]
+ ],
+ "c": false
+ }
+ ]
+ },
+ {
+ "t": 265,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-47.324, -36.052],
+ [-5.35, -75.1],
+ [56.766, -14.35]
+ ],
+ "c": false
+ }
+ ]
+ }
+ ],
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-219.745, -268.479],
+ [-322.675, -169.116]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [63.241, -177.906],
+ [-209.94, -268.14]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [[0, 0]],
+ "o": [[0, 0]],
+ "v": [[-219.745, -238.83]],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [[0, 0]],
+ "o": [[0, 0]],
+ "v": [[-188.06, -204.765]],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [[0, 0]],
+ "o": [[0, 0]],
+ "v": [[-219.156, -267.473]],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [[0, 0]],
+ "o": [[0, 0]],
+ "v": [[-219.507, -267.999]],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [[0, 0]],
+ "o": [[0, 0]],
+ "v": [[-200.062, -238.815]],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [[0, 0]],
+ "o": [[0, 0]],
+ "v": [[-219.156, -206.4]],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-188.06, -204.765],
+ [-210.4, -268.14]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-219.598, -205.948],
+ [-219.598, -268.14]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 13",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 12,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-209.94, -268.907],
+ [-219.598, -268.907],
+ [-219.598, -272.375],
+ [-209.94, -272.375]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 14",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 13,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-339.03, -179.544],
+ [-339.03, -136.29]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 15",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 14,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-355.384, -179.544],
+ [-355.384, -136.29]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 16",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 15,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-323.34, -136.702],
+ [-368.668, -136.702],
+ [-368.668, -175.499],
+ [-323.34, -175.499]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 17",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 16,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.73, 0],
+ [0, 0],
+ [0, 1.73],
+ [0, 0],
+ [-1.73, 0],
+ [0, 0],
+ [0, -7.303],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.73, 0],
+ [0, 0],
+ [0, -1.73],
+ [0, 0],
+ [7.303, 0],
+ [0, 0],
+ [0, 1.73]
+ ],
+ "v": [
+ [-182.174, -166.852],
+ [-202.475, -166.852],
+ [-205.621, -169.998],
+ [-205.621, -192.967],
+ [-202.475, -196.113],
+ [-192.306, -196.113],
+ [-179.028, -182.835],
+ [-179.028, -169.998]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.537254929543, 0.678431391716, 0.827450990677, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.668, 0],
+ [0, 0],
+ [0, 3.668],
+ [0, 0],
+ [-3.668, 0],
+ [0, 0],
+ [0, -15.48],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-3.668, 0],
+ [0, 0],
+ [0, -3.668],
+ [0, 0],
+ [15.48, 0],
+ [0, 0],
+ [0, 3.668]
+ ],
+ "v": [
+ [-174.634, -143.922],
+ [-217.665, -143.922],
+ [-224.334, -150.591],
+ [-224.334, -199.278],
+ [-217.665, -205.946],
+ [-196.111, -205.946],
+ [-167.965, -177.801],
+ [-167.965, -150.591]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [-176.616, -135.373],
+ [-218.602, -135.373],
+ [-219.602, -136.373],
+ [-219.602, -142.922],
+ [-218.602, -143.922],
+ [-176.616, -143.922],
+ [-175.616, -142.922],
+ [-175.616, -136.373]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 18",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 17,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-322.675, -136.29],
+ [-371.738, -136.29],
+ [-371.738, -179.868],
+ [-322.675, -179.868]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.988235294819, 0.988235294819, 0.980392158031, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-289.664, -169.901],
+ [-305.475, -144.374],
+ [-321.698, -168.609]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-256.908, -169.901],
+ [-272.72, -144.374],
+ [-288.943, -168.609]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-224.358, -169.901],
+ [-240.17, -144.374],
+ [-256.393, -168.609]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-220.191, -143.922],
+ [-324.158, -143.922],
+ [-324.158, -169.901],
+ [-220.191, -169.901]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 19",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 18,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [64.974, -177.385],
+ [86.419, -144.374],
+ [108.648, -177.385]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [21.299, -177.385],
+ [42.744, -144.374],
+ [64.974, -177.385]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-22.732, -177.385],
+ [-1.287, -144.374],
+ [20.943, -177.385]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-66.407, -177.385],
+ [-44.962, -144.374],
+ [-22.732, -177.385]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-110.081, -177.385],
+ [-88.636, -144.374],
+ [-66.407, -177.385]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-153.756, -177.385],
+ [-132.311, -144.374],
+ [-110.081, -177.385]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [130.276, -143.922],
+ [-183.138, -143.922],
+ [-152.963, -177.906],
+ [108.103, -177.906]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 20",
+ "np": 7,
+ "cix": 2,
+ "bm": 0,
+ "ix": 19,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, -157.637],
+ [-215.67, -105.28]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-216.157, -157.48],
+ [-179.63, -105.605]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 21",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 20,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, -106.506],
+ [-215.67, -54.149]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-216.157, -106.35],
+ [-179.63, -54.475]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 22",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 21,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, -52.939],
+ [-215.67, -0.582]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-216.157, -52.782],
+ [-179.63, -0.908]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 23",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 22,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, -0.632],
+ [-215.67, 51.725]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-216.157, -0.475],
+ [-179.63, 51.4]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 24",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 23,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, 51.408],
+ [-215.67, 103.765]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-216.157, 51.565],
+ [-179.63, 103.439]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 25",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 24,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, 103.948],
+ [-215.67, 156.305]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-216.157, 104.104],
+ [-179.63, 155.979]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 26",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 25,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-178.539, 156.052],
+ [-151.782, 183.535]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 27",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 26,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-216.504, 156.643],
+ [-243.332, 183.535]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 28",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 27,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, 183.295],
+ [-216.258, 183.295],
+ [-216.258, 156.052],
+ [-179.126, 156.052]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 29",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 28,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-179.126, 182.27],
+ [-216.504, 182.27],
+ [-216.504, -135.373],
+ [-179.126, -135.373]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 30",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 29,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-116.879, 191.864],
+ [-149.37, 191.864],
+ [-149.37, 201.512],
+ [-116.879, 201.512]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 31",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 30,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-245.331, 201.424],
+ [-277.926, 201.424],
+ [-277.926, 192.694],
+ [-245.331, 192.694]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 32",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 31,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-125.411, 196.987],
+ [-269.783, 196.987],
+ [-269.783, 183.535],
+ [-125.411, 183.535]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 33",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 32,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 3.282],
+ [3.282, 0],
+ [0, -3.282],
+ [-3.282, 0]
+ ],
+ "o": [
+ [0, -3.282],
+ [-3.282, 0],
+ [0, 3.282],
+ [3.282, 0]
+ ],
+ "v": [
+ [-119.071, 202.063],
+ [-125.013, 196.121],
+ [-130.956, 202.063],
+ [-125.013, 208.005]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 34",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 33,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 3.282],
+ [3.282, 0],
+ [0, -3.282],
+ [-3.282, 0]
+ ],
+ "o": [
+ [0, -3.282],
+ [-3.282, 0],
+ [0, 3.282],
+ [3.282, 0]
+ ],
+ "v": [
+ [-135.174, 202.063],
+ [-141.117, 196.121],
+ [-147.059, 202.063],
+ [-141.117, 208.005]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 35",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 34,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 3.282],
+ [3.282, 0],
+ [0, -3.282],
+ [-3.282, 0]
+ ],
+ "o": [
+ [0, -3.282],
+ [-3.282, 0],
+ [0, 3.282],
+ [3.282, 0]
+ ],
+ "v": [
+ [-247.929, 202.063],
+ [-253.871, 196.121],
+ [-259.813, 202.063],
+ [-253.871, 208.005]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 36",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 35,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 3.282],
+ [3.282, 0],
+ [0, -3.282],
+ [-3.282, 0]
+ ],
+ "o": [
+ [0, -3.282],
+ [-3.282, 0],
+ [0, 3.282],
+ [3.282, 0]
+ ],
+ "v": [
+ [-263.373, 202.063],
+ [-269.315, 196.121],
+ [-275.257, 202.063],
+ [-269.315, 208.005]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 37",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 36,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 10,
+ "ty": 4,
+ "nm": "Lamp STAR",
+ "parent": 11,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 33,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 34.1,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 97.9,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 99,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 132,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 133.1,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 198,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 199.1,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 232,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 234,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 263.9,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 265,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 297,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 298.1,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 361.9,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 363,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 396,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 397.1,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 462,
+ "s": [0]
+ },
+ {
+ "t": 463.099609375,
+ "s": [100]
+ }
+ ],
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 1,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [58.182, 64.606, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [133.5, -308.5],
+ [127.25, -292.75],
+ [110.75, -292],
+ [121.75, -280.25],
+ [119.75, -263.25],
+ [135.5, -271],
+ [150.75, -264],
+ [147.25, -280.75],
+ [157.75, -294.5],
+ [140.5, -294.25]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tm",
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 22,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.432],
+ "y": [0]
+ },
+ "t": 33,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 99,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 121,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 132,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 199.1,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 221.1,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.231],
+ "y": [0]
+ },
+ "t": 232.1,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 265,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 286,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.432],
+ "y": [0]
+ },
+ "t": 297,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 363,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 385,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 396,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 463.1,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 485.1,
+ "s": [0]
+ },
+ {
+ "t": 496.099609375,
+ "s": [0]
+ }
+ ],
+ "ix": 1
+ },
+ "e": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 11,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.461],
+ "y": [0]
+ },
+ "t": 33,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 99,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 110,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 132,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 199.1,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 210.1,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.216],
+ "y": [0]
+ },
+ "t": 232.1,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 265,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.461],
+ "y": [0]
+ },
+ "t": 297,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 363,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 374,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 396,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 463.1,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 474.1,
+ "s": [100]
+ },
+ {
+ "t": 496.099609375,
+ "s": [0]
+ }
+ ],
+ "ix": 2
+ },
+ "o": {
+ "a": 0,
+ "k": -255,
+ "ix": 3
+ },
+ "m": 1,
+ "ix": 4,
+ "nm": "Trim Paths 1",
+ "mn": "ADBE Vector Filter - Trim",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 1",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 11,
+ "ty": 4,
+ "nm": "Lamp",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.3],
+ "y": [0]
+ },
+ "t": 11,
+ "s": [4]
+ },
+ {
+ "i": {
+ "x": [0.7],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 33,
+ "s": [-1]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 83.6,
+ "s": [4]
+ },
+ {
+ "i": {
+ "x": [0.7],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 132,
+ "s": [-1]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 181.5,
+ "s": [4]
+ },
+ {
+ "i": {
+ "x": [0.7],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 231,
+ "s": [-1]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.278],
+ "y": [0]
+ },
+ "t": 264,
+ "s": [4]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.3],
+ "y": [0]
+ },
+ "t": 275,
+ "s": [4]
+ },
+ {
+ "i": {
+ "x": [0.7],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 297,
+ "s": [-1]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 347.6,
+ "s": [4]
+ },
+ {
+ "i": {
+ "x": [0.7],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 396,
+ "s": [-1]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 445.5,
+ "s": [4]
+ },
+ {
+ "i": {
+ "x": [0.7],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 495,
+ "s": [-1]
+ },
+ {
+ "t": 528,
+ "s": [4]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.3,
+ "y": 0
+ },
+ "t": 0,
+ "s": [599.266, 145.027, 0],
+ "to": [0, -4.167, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.7,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 33,
+ "s": [599.266, 120.027, 0],
+ "to": [0, 4.167, 0],
+ "ti": [0, -4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 83.6,
+ "s": [599.266, 145.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.7,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 132,
+ "s": [599.266, 120.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, -4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 181.5,
+ "s": [599.266, 145.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 231,
+ "s": [599.266, 120.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.3,
+ "y": 0
+ },
+ "t": 264,
+ "s": [599.266, 145.027, 0],
+ "to": [0, -4.167, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.7,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 297,
+ "s": [599.266, 120.027, 0],
+ "to": [0, 4.167, 0],
+ "ti": [0, -4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 347.6,
+ "s": [599.266, 145.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.7,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 396,
+ "s": [599.266, 120.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, -4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 445.5,
+ "s": [599.266, 145.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 4.167, 0]
+ },
+ {
+ "i": {
+ "x": 0.7,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 495,
+ "s": [599.266, 120.027, 0],
+ "to": [0, 0, 0],
+ "ti": [0, -4.167, 0]
+ },
+ {
+ "t": 528,
+ "s": [599.266, 145.027, 0]
+ }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [197.266, -152.973, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.3, 0.3, 0.3],
+ "y": [0, 0, 0]
+ },
+ "t": 11,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.7, 0.7, 0.7],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 33,
+ "s": [105, 105, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 83.6,
+ "s": [90, 90, 100]
+ },
+ {
+ "i": {
+ "x": [0.7, 0.7, 0.7],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 132,
+ "s": [105, 105, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 181.5,
+ "s": [90, 90, 100]
+ },
+ {
+ "i": {
+ "x": [0.7, 0.7, 0.7],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 231,
+ "s": [105, 105, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.278, 0.278, 0.278],
+ "y": [0, 0, 0]
+ },
+ "t": 264,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.3, 0.3, 0.3],
+ "y": [0, 0, 0]
+ },
+ "t": 275,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.7, 0.7, 0.7],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 297,
+ "s": [105, 105, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 347.6,
+ "s": [90, 90, 100]
+ },
+ {
+ "i": {
+ "x": [0.7, 0.7, 0.7],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 396,
+ "s": [105, 105, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 445.5,
+ "s": [90, 90, 100]
+ },
+ {
+ "i": {
+ "x": [0.7, 0.7, 0.7],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 495,
+ "s": [105, 105, 100]
+ },
+ {
+ "t": 528,
+ "s": [100, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-6.428, 0.595]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [181.285, -238.674],
+ [191.552, -243.197]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-6.234, 4.844]
+ ],
+ "o": [
+ [0.305, -5.311],
+ [0, 0]
+ ],
+ "v": [
+ [171.063, -218.439],
+ [179.12, -237.119]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Stroke upper",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [197.266, -233.925],
+ [201.109, -222.095],
+ [213.549, -222.095],
+ [203.485, -214.783],
+ [207.329, -202.953],
+ [197.266, -210.264],
+ [187.202, -202.953],
+ [191.046, -214.783],
+ [180.982, -222.095],
+ [193.422, -222.095]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886274516582, 0.160784319043, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Star",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [188.325, -164.159],
+ [193.615, -164.159]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [188.325, -168.921],
+ [197.266, -168.921]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.917, 0],
+ [0, 0],
+ [0, 4.917],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-4.917, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 4.917]
+ ],
+ "v": [
+ [197.266, -152.973],
+ [197.266, -152.973],
+ [188.325, -161.914],
+ [188.325, -171.823],
+ [206.206, -171.823],
+ [206.206, -161.914]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Patron",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -17.005],
+ [3.205, -4.858],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [17.005, 0],
+ [0, 6.255],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [197.266, -249.375],
+ [228.055, -218.586],
+ [222.985, -201.653],
+ [202.979, -166.183],
+ [191.552, -166.183]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -17.005],
+ [-3.205, -4.858],
+ [0, 0]
+ ],
+ "o": [
+ [-17.005, 0],
+ [0, 6.255],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [197.266, -249.375],
+ [166.476, -218.586],
+ [171.547, -201.653],
+ [191.552, -166.183]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 12,
+ "ty": 4,
+ "nm": "Taimer",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.833,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 5,
+ "s": [772.142, 212.793, 0],
+ "to": [0, 0.5, 0],
+ "ti": [0, 2.75, 0]
+ },
+ {
+ "i": {
+ "x": 0.25,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 15,
+ "s": [772.142, 215.793, 0],
+ "to": [0, -2.75, 0],
+ "ti": [0, 0.5, 0]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 1
+ },
+ "o": {
+ "x": 0.75,
+ "y": 0
+ },
+ "t": 35,
+ "s": [772.142, 196.293, 0],
+ "to": [0, -0.5, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 55,
+ "s": [772.142, 212.793, 0],
+ "to": [0, 0.5, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 144,
+ "s": [772.142, 212.793, 0],
+ "to": [0, 0.5, 0],
+ "ti": [0, 2.75, 0]
+ },
+ {
+ "i": {
+ "x": 0.25,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 154,
+ "s": [772.142, 215.793, 0],
+ "to": [0, -2.75, 0],
+ "ti": [0, 0.5, 0]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 1
+ },
+ "o": {
+ "x": 0.75,
+ "y": 0
+ },
+ "t": 174,
+ "s": [772.142, 196.293, 0],
+ "to": [0, -0.5, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 1
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0
+ },
+ "t": 194,
+ "s": [772.142, 212.793, 0],
+ "to": [0, 0.5, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 1
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0
+ },
+ "t": 201,
+ "s": [772.142, 212.793, 0],
+ "to": [0, 0.5, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "t": 264,
+ "s": [772.142, 212.793, 0]
+ }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [308.142, -127.207, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 5,
+ "s": [97, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 15,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25, 0.25],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 25,
+ "s": [98, 102, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75, 0.75],
+ "y": [0, 0, 0]
+ },
+ "t": 35,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 51,
+ "s": [98, 102, 100]
+ },
+ {
+ "i": {
+ "x": [0.659, 0.659, 0.659],
+ "y": [0.991, 1, 1]
+ },
+ "o": {
+ "x": [0.325, 0.325, 0.325],
+ "y": [0, 0, 0]
+ },
+ "t": 55,
+ "s": [101, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.32, 0.32, 0.32],
+ "y": [0.078, 0, 0]
+ },
+ "t": 58,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 144,
+ "s": [97, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 154,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25, 0.25],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 164,
+ "s": [98, 102, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45, 0.45],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75, 0.75],
+ "y": [0, 0, 0]
+ },
+ "t": 174,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55, 0.55],
+ "y": [0, 0, 0]
+ },
+ "t": 190,
+ "s": [98, 102, 100]
+ },
+ {
+ "i": {
+ "x": [0.659, 0.659, 0.659],
+ "y": [0.991, 1, 1]
+ },
+ "o": {
+ "x": [0.325, 0.325, 0.325],
+ "y": [0, 0, 0]
+ },
+ "t": 194,
+ "s": [101, 100, 100]
+ },
+ {
+ "i": {
+ "x": [0.833, 0.833, 0.833],
+ "y": [1, 1, 1]
+ },
+ "o": {
+ "x": [0.167, 0.167, 0.167],
+ "y": [0, 0, 0]
+ },
+ "t": 197,
+ "s": [100, 100, 100]
+ },
+ {
+ "t": 264,
+ "s": [97, 100, 100]
+ }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [341.676, -151.704],
+ [337.185, -146.873]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [308.142, -166.038],
+ [308.142, -159.153]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [273.827, -152.144],
+ [279.099, -146.873]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [273.827, -83.514],
+ [279.099, -88.786]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [308.142, -69.62],
+ [308.234, -76.577]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [342.266, -84.133],
+ [337.677, -88.496]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [356.351, -117.83],
+ [349.914, -117.811]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [5.064, -11.366]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [344.062, -124.388],
+ [341.676, -103.373]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-0.269, 7.183]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [333.527, -108.075],
+ [335.811, -118.664]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [288.207, -117.83],
+ [294.367, -117.811]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [274.681, -117.834],
+ [277.661, -117.834]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [259.933, -117.83],
+ [266.381, -117.834]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 12,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Interface",
+ "np": 12,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 2.488],
+ [2.488, 0],
+ [0, -2.488],
+ [-2.488, 0]
+ ],
+ "o": [
+ [0, -2.488],
+ [-2.488, 0],
+ [0, 2.488],
+ [2.488, 0]
+ ],
+ "v": [
+ [312.647, -117.829],
+ [308.142, -122.335],
+ [303.637, -117.829],
+ [308.142, -113.324]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Circles cente",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [308.142, -117.829],
+ [337.677, -96.264]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [308.142, -117.829],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [308.142, -117.829],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.25],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.3],
+ "y": [0]
+ },
+ "t": 32,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [720]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Arrow 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [308.142, -117.829],
+ [308.142, -147.75]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [308.142, -117.829],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [308.142, -117.829],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.25],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.3],
+ "y": [0]
+ },
+ "t": 32,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [360]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Arrow 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 11.483],
+ [11.483, 0],
+ [0, -11.483],
+ [-11.483, 0]
+ ],
+ "o": [
+ [0, -11.483],
+ [-11.483, 0],
+ [0, 11.483],
+ [11.483, 0]
+ ],
+ "v": [
+ [328.933, -117.829],
+ [308.142, -138.62],
+ [287.351, -117.829],
+ [308.142, -97.038]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.537254929543, 0.678431391716, 0.827450990677, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 20.382],
+ [20.382, 0],
+ [0, -20.382],
+ [-20.382, 0]
+ ],
+ "o": [
+ [0, -20.382],
+ [-20.382, 0],
+ [0, 20.382],
+ [20.382, 0]
+ ],
+ "v": [
+ [345.046, -117.829],
+ [308.142, -154.733],
+ [271.238, -117.829],
+ [308.142, -80.925]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 26.974],
+ [26.974, 0],
+ [0, -26.974],
+ [-26.974, 0]
+ ],
+ "o": [
+ [0, -26.974],
+ [-26.974, 0],
+ [0, 26.974],
+ [26.974, 0]
+ ],
+ "v": [
+ [356.983, -117.829],
+ [308.142, -166.67],
+ [259.302, -117.829],
+ [308.142, -68.989]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.537254929543, 0.678431391716, 0.827450990677, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 32.209],
+ [32.209, 0],
+ [0, -32.209],
+ [-32.209, 0]
+ ],
+ "o": [
+ [0, -32.209],
+ [-32.209, 0],
+ [0, 32.209],
+ [32.209, 0]
+ ],
+ "v": [
+ [366.462, -117.829],
+ [308.142, -176.149],
+ [249.823, -117.829],
+ [308.142, -59.51]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Circles",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, -0.55]
+ ],
+ "v": [
+ [316.884, -194.905],
+ [300.234, -194.905],
+ [299.234, -193.905],
+ [299.234, -182.425],
+ [300.234, -181.425],
+ [316.884, -181.425],
+ [317.884, -182.425],
+ [317.884, -193.905]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 5,
+ "s": [308.559, -181.425],
+ "to": [0, 0.233],
+ "ti": [0, 0.267]
+ },
+ {
+ "i": {
+ "x": 0.25,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 15,
+ "s": [308.559, -180.025],
+ "to": [0, -0.267],
+ "ti": [0, 0.233]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.75,
+ "y": 0
+ },
+ "t": 25,
+ "s": [308.559, -183.025],
+ "to": [0, -0.233],
+ "ti": [0, -0.267]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 0.45
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0.55
+ },
+ "t": 35,
+ "s": [308.559, -181.425],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 0.45
+ },
+ "o": {
+ "x": 0.468,
+ "y": 0.468
+ },
+ "t": 94,
+ "s": [308.559, -181.425],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 144,
+ "s": [308.559, -181.425],
+ "to": [0, 0.233],
+ "ti": [0, 0.267]
+ },
+ {
+ "i": {
+ "x": 0.25,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 154,
+ "s": [308.559, -180.025],
+ "to": [0, -0.267],
+ "ti": [0, 0.233]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.75,
+ "y": 0
+ },
+ "t": 164,
+ "s": [308.559, -183.025],
+ "to": [0, -0.233],
+ "ti": [0, -0.267]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 0.45
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0.55
+ },
+ "t": 174,
+ "s": [308.559, -181.425],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "t": 264,
+ "s": [308.559, -181.425]
+ }
+ ],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [308.559, -181.425],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 5,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 15,
+ "s": [103, 97]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 25,
+ "s": [100, 113]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 35,
+ "s": [110, 90]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.376, 0.376],
+ "y": [0, 0]
+ },
+ "t": 94,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 144,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 154,
+ "s": [103, 97]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 164,
+ "s": [100, 113]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 174,
+ "s": [110, 90]
+ },
+ {
+ "t": 264,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [314.231, -182.067],
+ [302.532, -182.067],
+ [302.532, -175.041],
+ [314.231, -175.041]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Button",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 13,
+ "ty": 4,
+ "nm": "Searh",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [788.93, 314.82, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [324.93, -25.18, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [269.841, -31.744],
+ [269.841, -20.069]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [354.453, -13.116],
+ [263.293, -13.116],
+ [262.293, -14.116],
+ [262.293, -36.243],
+ [263.293, -37.243],
+ [354.453, -37.243],
+ [355.453, -36.243],
+ [355.453, -14.116]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-4.647, 1.171]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [369.084, -27.004],
+ [372.793, -32.771]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 4.366],
+ [4.366, 0],
+ [0, -4.366],
+ [-4.366, 0]
+ ],
+ "o": [
+ [0, -4.366],
+ [-4.366, 0],
+ [0, 4.366],
+ [4.366, 0]
+ ],
+ "v": [
+ [381.423, -28.038],
+ [373.517, -35.944],
+ [365.611, -28.038],
+ [373.517, -20.132]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.399, 0.379],
+ [0, 0],
+ [-0.379, 0.399],
+ [0, 0],
+ [-0.399, -0.379],
+ [0, 0],
+ [0.379, -0.399],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.399, -0.379],
+ [0, 0],
+ [0.379, -0.399],
+ [0, 0],
+ [0.399, 0.379],
+ [0, 0],
+ [-0.379, 0.399]
+ ],
+ "v": [
+ [383.388, -13.493],
+ [374.46, -21.971],
+ [374.423, -23.385],
+ [376.915, -26.009],
+ [378.329, -26.046],
+ [387.257, -17.568],
+ [387.294, -16.154],
+ [384.802, -13.53]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 0,
+ "s": [376.589, -24.582],
+ "to": [-0.5, 0.5],
+ "ti": [0.333, 0.583]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 37.714,
+ "s": [373.589, -21.582],
+ "to": [-0.333, -0.583],
+ "ti": [-0.75, 0.792]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 75.429,
+ "s": [374.589, -28.082],
+ "to": [0.75, -0.792],
+ "ti": [0.125, -0.292]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 113.143,
+ "s": [378.089, -26.332],
+ "to": [-0.125, 0.292],
+ "ti": [0.208, -0.583]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 150.857,
+ "s": [373.839, -26.332],
+ "to": [-0.208, 0.583],
+ "ti": [0.25, 0.625]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 188.571,
+ "s": [376.839, -22.832],
+ "to": [-0.25, -0.625],
+ "ti": [0.042, 0.292]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 226.286,
+ "s": [372.339, -30.082],
+ "to": [-0.042, -0.292],
+ "ti": [-0.708, -0.917]
+ },
+ {
+ "t": 264,
+ "s": [376.589, -24.582]
+ }
+ ],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [376.589, -24.582],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 14,
+ "ty": 4,
+ "nm": "Wi fi ",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0.034,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [489.005, 542.45, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-2.776, 278.447, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [137.279, 137.279, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-11.386, -10.18]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-57.8, 275.791],
+ [-36.021, 275.791]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 38.995,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 57.728,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 76.46,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 95.192,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 113.924,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 132.654,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 151.388,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 170.119,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 188.852,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 207.584,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 207.804,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 226.536,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 245.269,
+ "s": [100]
+ },
+ {
+ "t": 264,
+ "s": [30]
+ }
+ ],
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-7.954, -7.316]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-54.218, 278.824],
+ [-39.267, 278.824]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 35.663,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 54.396,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 73.127,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 91.859,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 110.592,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 129.322,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 148.056,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 166.787,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 185.52,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 204.252,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 204.473,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 223.205,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 241.937,
+ "s": [100]
+ },
+ {
+ "t": 260.6689453125,
+ "s": [30]
+ }
+ ],
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-4.946, -5.595]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-51.842, 282.575],
+ [-41.889, 282.575]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 32.332,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 51.064,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 69.796,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 88.528,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 107.261,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 125.991,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 144.725,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 163.457,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 182.188,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 200.92,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 201.141,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 219.873,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 238.604,
+ "s": [100]
+ },
+ {
+ "t": 257.3369140625,
+ "s": [30]
+ }
+ ],
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0.961],
+ [0.961, 0],
+ [0, -0.961],
+ [-0.961, 0]
+ ],
+ "o": [
+ [0, -0.961],
+ [-0.961, 0],
+ [0, 0.961],
+ [0.961, 0]
+ ],
+ "v": [
+ [-45.132, 285.462],
+ [-46.872, 283.721],
+ [-48.613, 285.462],
+ [-46.872, 287.202]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 29,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 47.732,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 66.465,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 85.196,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 103.928,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 122.659,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 141.391,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 160.124,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 178.856,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 197.589,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 197.809,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 216.541,
+ "s": [30]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 235.273,
+ "s": [100]
+ },
+ {
+ "t": 254.005859375,
+ "s": [30]
+ }
+ ],
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 9.148],
+ [9.148, 0],
+ [0, -9.148],
+ [-9.148, 0]
+ ],
+ "o": [
+ [0, -9.148],
+ [-9.148, 0],
+ [0, 9.148],
+ [9.148, 0]
+ ],
+ "v": [
+ [-30.301, 278.447],
+ [-46.865, 261.883],
+ [-63.429, 278.447],
+ [-46.865, 295.011]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Wi fi",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 3.474],
+ [3.474, 0],
+ [0, -3.474],
+ [-3.474, 0]
+ ],
+ "o": [
+ [0, -3.474],
+ [-3.474, 0],
+ [0, 3.474],
+ [3.474, 0]
+ ],
+ "v": [
+ [1.877, 276.125],
+ [-4.413, 269.835],
+ [-10.703, 276.125],
+ [-4.413, 282.415]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.399, 0.379],
+ [0, 0],
+ [-0.379, 0.399],
+ [0, 0],
+ [-0.399, -0.379],
+ [0, 0],
+ [0.379, -0.399],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.399, -0.379],
+ [0, 0],
+ [0.379, -0.399],
+ [0, 0],
+ [0.399, 0.379],
+ [0, 0],
+ [-0.379, 0.399]
+ ],
+ "v": [
+ [3.291, 287.556],
+ [-3.515, 281.093],
+ [-3.552, 279.679],
+ [-1.851, 277.888],
+ [-0.437, 277.851],
+ [6.369, 284.314],
+ [6.406, 285.728],
+ [4.705, 287.519]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 0,
+ "s": [-2.012, 278.832],
+ "to": [0.031, 0.364],
+ "ti": [0.334, -0.152]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 32.033,
+ "s": [-1.828, 281.018],
+ "to": [-0.334, 0.152],
+ "ti": [-0.485, 0.85]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 66.276,
+ "s": [-4.015, 279.744],
+ "to": [0.485, -0.85],
+ "ti": [-0.061, 0.304]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 99.414,
+ "s": [1.082, 275.917],
+ "to": [0.061, -0.304],
+ "ti": [0.698, -0.82]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 132.553,
+ "s": [-3.651, 277.923],
+ "to": [-0.698, 0.82],
+ "ti": [-0.759, 0.486]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 165.69,
+ "s": [-3.103, 280.836],
+ "to": [0.759, -0.486],
+ "ti": [-0.91, 0.547]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 198.828,
+ "s": [0.9, 275.006],
+ "to": [0.91, -0.547],
+ "ti": [0.485, -0.638]
+ },
+ {
+ "i": {
+ "x": 0.833,
+ "y": 0.833
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0.167
+ },
+ "t": 231.967,
+ "s": [2.358, 277.555],
+ "to": [-0.485, 0.638],
+ "ti": [0.728, -0.213]
+ },
+ {
+ "t": 264,
+ "s": [-2.012, 278.832]
+ }
+ ],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-2.012, 278.832],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Glassess",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 9.148],
+ [9.148, 0],
+ [0, -9.148],
+ [-9.148, 0]
+ ],
+ "o": [
+ [0, -9.148],
+ [-9.148, 0],
+ [0, 9.148],
+ [9.148, 0]
+ ],
+ "v": [
+ [14.336, 278.447],
+ [-2.228, 261.883],
+ [-18.792, 278.447],
+ [-2.228, 295.011]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Glassess",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [33.31, 284.863],
+ [51.188, 284.863]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [33.31, 284.863],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [33.31, 284.863],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 0,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 22,
+ "s": [80, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 44,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 66,
+ "s": [60, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 88,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 110,
+ "s": [40, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 132,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 154,
+ "s": [80, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 176,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 198,
+ "s": [60, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 220,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 242,
+ "s": [40, 100]
+ },
+ {
+ "t": 264,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [33.31, 278.447],
+ [51.188, 278.447]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [33.31, 278.447],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [33.31, 278.447],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 0,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 22,
+ "s": [60, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 44,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 66,
+ "s": [40, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 88,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 110,
+ "s": [60, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 132,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 154,
+ "s": [60, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 176,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 198,
+ "s": [40, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 220,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 242,
+ "s": [60, 100]
+ },
+ {
+ "t": 264,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [33.31, 272.031],
+ [51.188, 272.031]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [33.31, 272.031],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [33.31, 272.031],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 0,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 22,
+ "s": [40, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 44,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 66,
+ "s": [80, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 88,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 110,
+ "s": [80, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 132,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 154,
+ "s": [40, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 176,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 198,
+ "s": [80, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 220,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 242,
+ "s": [80, 100]
+ },
+ {
+ "t": 264,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 9.148],
+ [9.148, 0],
+ [0, -9.148],
+ [-9.148, 0]
+ ],
+ "o": [
+ [0, -9.148],
+ [-9.148, 0],
+ [0, 9.148],
+ [9.148, 0]
+ ],
+ "v": [
+ [59.249, 278.447],
+ [42.686, 261.883],
+ [26.122, 278.447],
+ [42.686, 295.011]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Stroke",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-88.592, 278.521],
+ [-74.888, 286.433],
+ [-74.888, 270.609]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Up",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [83.041, 278.144],
+ [69.337, 286.055],
+ [69.337, 270.232]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Down",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 15,
+ "ty": 4,
+ "nm": "Gears",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [322.298, 282.468, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-34.702, -284.532, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.891, 0],
+ [0, 2.891],
+ [-2.891, 0],
+ [0, -2.891]
+ ],
+ "o": [
+ [-2.891, 0],
+ [0, -2.891],
+ [2.891, 0],
+ [0, 2.891]
+ ],
+ "v": [
+ [-34.702, -279.298],
+ [-39.936, -284.532],
+ [-34.702, -289.766],
+ [-29.468, -284.532]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.277, 0],
+ [0, 0],
+ [0.349, 0.697],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [0.196, -0.196],
+ [0, 0],
+ [0.838, 0.246],
+ [0, 0],
+ [0.277, 0],
+ [0, 0],
+ [0, -0.277],
+ [0, 0],
+ [0.736, -0.437],
+ [0, 0],
+ [0.276, 0],
+ [0, 0],
+ [-0.196, -0.196],
+ [0, 0],
+ [0.186, -0.776],
+ [0, 0],
+ [0, -0.277],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [-0.347, -0.584],
+ [0, 0],
+ [-0.196, -0.196],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [-0.592, -0.174],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [0, 0.277],
+ [0, 0],
+ [-0.543, 0.272],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [-0.229, 0.65],
+ [0, 0],
+ [0, 0.277],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.186, -0.776],
+ [0, 0],
+ [0.196, -0.196],
+ [0, 0],
+ [-0.196, -0.196],
+ [0, 0],
+ [-0.736, -0.437],
+ [0, 0],
+ [0, -0.277],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [-0.838, 0.246],
+ [0, 0],
+ [-0.276, 0],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [-0.349, 0.697],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [0, 0.277],
+ [0, 0],
+ [0.229, 0.65],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [0.543, 0.272],
+ [0, 0],
+ [0, 0.277],
+ [0, 0],
+ [0.277, 0],
+ [0, 0],
+ [0.592, -0.174],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [0.196, -0.196],
+ [0, 0],
+ [0.347, -0.584],
+ [0, 0],
+ [0.277, 0],
+ [0, 0],
+ [0, -0.277]
+ ],
+ "v": [
+ [-21.671, -287.468],
+ [-24.594, -287.468],
+ [-25.4, -289.682],
+ [-23.412, -291.67],
+ [-23.412, -292.379],
+ [-26.856, -295.822],
+ [-27.564, -295.822],
+ [-29.402, -293.984],
+ [-31.766, -295.02],
+ [-31.766, -297.563],
+ [-32.267, -298.064],
+ [-37.137, -298.064],
+ [-37.638, -297.563],
+ [-37.638, -295.02],
+ [-40.002, -293.984],
+ [-41.84, -295.822],
+ [-42.549, -295.822],
+ [-45.993, -292.379],
+ [-45.993, -291.67],
+ [-44.005, -289.682],
+ [-44.81, -287.468],
+ [-47.733, -287.468],
+ [-48.234, -286.967],
+ [-48.234, -282.097],
+ [-47.733, -281.596],
+ [-44.509, -281.596],
+ [-43.644, -279.743],
+ [-45.993, -277.394],
+ [-45.993, -276.685],
+ [-42.549, -273.242],
+ [-41.84, -273.242],
+ [-39.342, -275.74],
+ [-37.638, -275.065],
+ [-37.638, -271.501],
+ [-37.137, -271],
+ [-32.267, -271],
+ [-31.766, -271.501],
+ [-31.766, -275.065],
+ [-30.063, -275.74],
+ [-27.564, -273.242],
+ [-26.856, -273.242],
+ [-23.412, -276.685],
+ [-23.412, -277.394],
+ [-25.76, -279.743],
+ [-24.895, -281.596],
+ [-21.671, -281.596],
+ [-21.17, -282.097],
+ [-21.17, -286.967]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [-13.402, -298.532],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-34.702, -284.532],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [68, 68],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [-720]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "2",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.891, 0],
+ [0, 2.891],
+ [-2.891, 0],
+ [0, -2.891]
+ ],
+ "o": [
+ [-2.891, 0],
+ [0, -2.891],
+ [2.891, 0],
+ [0, 2.891]
+ ],
+ "v": [
+ [-34.702, -279.298],
+ [-39.936, -284.532],
+ [-34.702, -289.766],
+ [-29.468, -284.532]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.277, 0],
+ [0, 0],
+ [0.349, 0.697],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [0.196, -0.196],
+ [0, 0],
+ [0.838, 0.246],
+ [0, 0],
+ [0.277, 0],
+ [0, 0],
+ [0, -0.277],
+ [0, 0],
+ [0.736, -0.437],
+ [0, 0],
+ [0.276, 0],
+ [0, 0],
+ [-0.196, -0.196],
+ [0, 0],
+ [0.186, -0.776],
+ [0, 0],
+ [0, -0.277],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [-0.347, -0.584],
+ [0, 0],
+ [-0.196, -0.196],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [-0.592, -0.174],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [0, 0.277],
+ [0, 0],
+ [-0.543, 0.272],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [-0.229, 0.65],
+ [0, 0],
+ [0, 0.277],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.186, -0.776],
+ [0, 0],
+ [0.196, -0.196],
+ [0, 0],
+ [-0.196, -0.196],
+ [0, 0],
+ [-0.736, -0.437],
+ [0, 0],
+ [0, -0.277],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [-0.838, 0.246],
+ [0, 0],
+ [-0.276, 0],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [-0.349, 0.697],
+ [0, 0],
+ [-0.277, 0],
+ [0, 0],
+ [0, 0.277],
+ [0, 0],
+ [0.229, 0.65],
+ [0, 0],
+ [-0.196, 0.196],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [0.543, 0.272],
+ [0, 0],
+ [0, 0.277],
+ [0, 0],
+ [0.277, 0],
+ [0, 0],
+ [0.592, -0.174],
+ [0, 0],
+ [0.196, 0.196],
+ [0, 0],
+ [0.196, -0.196],
+ [0, 0],
+ [0.347, -0.584],
+ [0, 0],
+ [0.277, 0],
+ [0, 0],
+ [0, -0.277]
+ ],
+ "v": [
+ [-21.671, -287.468],
+ [-24.594, -287.468],
+ [-25.4, -289.682],
+ [-23.412, -291.67],
+ [-23.412, -292.379],
+ [-26.856, -295.822],
+ [-27.564, -295.822],
+ [-29.402, -293.984],
+ [-31.766, -295.02],
+ [-31.766, -297.563],
+ [-32.267, -298.064],
+ [-37.137, -298.064],
+ [-37.638, -297.563],
+ [-37.638, -295.02],
+ [-40.002, -293.984],
+ [-41.84, -295.822],
+ [-42.549, -295.822],
+ [-45.993, -292.379],
+ [-45.993, -291.67],
+ [-44.005, -289.682],
+ [-44.81, -287.468],
+ [-47.733, -287.468],
+ [-48.234, -286.967],
+ [-48.234, -282.097],
+ [-47.733, -281.596],
+ [-44.509, -281.596],
+ [-43.644, -279.743],
+ [-45.993, -277.394],
+ [-45.993, -276.685],
+ [-42.549, -273.242],
+ [-41.84, -273.242],
+ [-39.342, -275.74],
+ [-37.638, -275.065],
+ [-37.638, -271.501],
+ [-37.137, -271],
+ [-32.267, -271],
+ [-31.766, -271.501],
+ [-31.766, -275.065],
+ [-30.063, -275.74],
+ [-27.564, -273.242],
+ [-26.856, -273.242],
+ [-23.412, -276.685],
+ [-23.412, -277.394],
+ [-25.76, -279.743],
+ [-24.895, -281.596],
+ [-21.671, -281.596],
+ [-21.17, -282.097],
+ [-21.17, -286.967]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [-34.702, -284.532],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-34.702, -284.532],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [720]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "1",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 16,
+ "ty": 4,
+ "nm": "Wrench",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 34,
+ "s": [115]
+ },
+ {
+ "i": {
+ "x": [0.667],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 64,
+ "s": [65]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.229],
+ "y": [0]
+ },
+ "t": 104,
+ "s": [115]
+ },
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 107,
+ "s": [115]
+ },
+ {
+ "i": {
+ "x": [0.667],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 137,
+ "s": [65]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.229],
+ "y": [0]
+ },
+ "t": 177,
+ "s": [115]
+ },
+ {
+ "i": {
+ "x": [0.15],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.15],
+ "y": [0]
+ },
+ "t": 180,
+ "s": [115]
+ },
+ {
+ "i": {
+ "x": [0.667],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 210,
+ "s": [65]
+ },
+ {
+ "t": 250,
+ "s": [115]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [109.989, 410.468, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-134.011, 63.468, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-8.69, -1.383]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-149.577, 89.184],
+ [-136.388, 93.841]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-140.283, 99.321],
+ [-140.283, 149.973]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-125.805, 79.339],
+ [-120.32, 75.834]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-1.704, -9.349]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-152.847, 61.952],
+ [-153.828, 76.124]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, -1.212],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [1.006, -0.645],
+ [0, -8.957],
+ [-8.339, -4.269],
+ [0, 0],
+ [-5.501, 0],
+ [0, 0],
+ [0, 5.501],
+ [0, 0],
+ [0, 9.811],
+ [6.895, 4.72]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -1.195],
+ [-7.197, 4.618],
+ [0, 10.012],
+ [0, 0],
+ [0, 5.501],
+ [0, 0],
+ [5.501, 0],
+ [0, 0],
+ [8.067, -4.356],
+ [0, -8.712],
+ [-1, -0.685]
+ ],
+ "v": [
+ [-123.193, 48.534],
+ [-123.193, 71.42],
+ [-133.155, 78.028],
+ [-144.326, 71.761],
+ [-144.326, 48.502],
+ [-146.656, 47.206],
+ [-159.789, 68.662],
+ [-145.73, 91.602],
+ [-145.73, 153.993],
+ [-135.728, 163.996],
+ [-131.785, 163.996],
+ [-121.783, 153.993],
+ [-121.783, 91.357],
+ [-108.233, 68.662],
+ [-120.831, 47.26]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 17,
+ "ty": 4,
+ "nm": "Lineage",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [56.607, 541.185, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-356.393, 195.185, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-305.299, 159.203],
+ [-308.964, 159.203]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-305.299, 173.388],
+ [-308.964, 173.388]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-305.299, 187.575],
+ [-308.964, 187.575]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-305.299, 201.76],
+ [-308.964, 201.76]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-305.299, 215.945],
+ [-308.964, 215.945]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-305.299, 230.132],
+ [-308.964, 230.132]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-305.299, 244.006],
+ [-308.964, 244.006]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-312.13, 237.224],
+ [-305.923, 237.224]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-311.319, 223.037],
+ [-305.112, 223.037]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-311.79, 208.852],
+ [-305.583, 208.852]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-312.13, 194.667],
+ [-305.923, 194.667]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-312.13, 180.482],
+ [-305.923, 180.482]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 12,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-311.79, 166.148],
+ [-305.583, 166.148]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 13",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 13,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-320.262, 226.046],
+ [-356.026, 226.046],
+ [-320.262, 181.554]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-394.282, 250.577],
+ [-305.231, 250.577],
+ [-305.231, 139.793]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 14",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 14,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-408.909, 250.654],
+ [-279.877, 250.577]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 15",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 15,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 19,
+ "ty": 4,
+ "nm": "Shape Layer 2",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [732.75, 591.67, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [297.45, 251.67, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [160, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [397.293, 251.67],
+ [351.162, 251.67]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [342.572, 251.67],
+ [325.117, 251.67]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [318.988, 251.67],
+ [238.856, 251.839]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 20,
+ "ty": 4,
+ "nm": "Machine",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 0,
+ "s": [480, 340, 0],
+ "to": [-6.333, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.167,
+ "y": 0
+ },
+ "t": 132,
+ "s": [442, 340, 0],
+ "to": [0, 0, 0],
+ "ti": [-6.333, 0, 0]
+ },
+ {
+ "t": 264,
+ "s": [480, 340, 0]
+ }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-15.901, 4.288]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [257.789, 158.627],
+ [280.382, 138.051]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [359.74, 149.8],
+ [335.797, 149.8]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [356.405, 182.216],
+ [252.514, 182.216]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [359.74, 168.339],
+ [335.797, 168.339]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [359.74, 159.07],
+ [335.797, 159.07]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.95, 0],
+ [0, 0],
+ [0, -10.899],
+ [0, 0],
+ [-4.95, 0],
+ [0, 0],
+ [0, 2.576],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-10.899, 0],
+ [0, 0],
+ [0, 4.95],
+ [0, 0],
+ [2.576, 0],
+ [0, 0],
+ [0, -4.95]
+ ],
+ "v": [
+ [349.933, 134.868],
+ [271.898, 134.868],
+ [252.082, 154.683],
+ [252.082, 173.907],
+ [261.082, 182.907],
+ [354.249, 182.907],
+ [358.933, 178.224],
+ [358.933, 143.868]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.95, 0],
+ [0, 0],
+ [0, -10.899],
+ [0, 0],
+ [-4.95, 0],
+ [0, 0],
+ [0, 4.95],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-10.899, 0],
+ [0, 0],
+ [0, 4.95],
+ [0, 0],
+ [4.95, 0],
+ [0, 0],
+ [0, -4.95]
+ ],
+ "v": [
+ [350.74, 131.393],
+ [269.92, 131.393],
+ [250.105, 151.209],
+ [250.105, 180.098],
+ [259.105, 189.098],
+ [350.74, 189.098],
+ [359.74, 180.098],
+ [359.74, 140.393]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Kabina",
+ "np": 7,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.241, 0],
+ [0.155, 0.129],
+ [1.07, 1.394],
+ [0.78, 1.814],
+ [-0.242, 3.727],
+ [-0.461, -0.038],
+ [0.029, -0.459],
+ [-1.381, -3.207],
+ [-1.104, -1.436],
+ [-1.259, -1.039],
+ [0.293, -0.355]
+ ],
+ "o": [
+ [-0.186, 0],
+ [-1.355, -1.118],
+ [-1.188, -1.545],
+ [-1.485, -3.45],
+ [0.03, -0.459],
+ [0.46, 0.029],
+ [-0.225, 3.461],
+ [0.725, 1.685],
+ [0.994, 1.294],
+ [0.355, 0.293],
+ [-0.165, 0.2]
+ ],
+ "v": [
+ [353.058, 240.304],
+ [352.528, 240.114],
+ [348.873, 236.328],
+ [345.906, 231.267],
+ [344.032, 220.452],
+ [344.918, 219.674],
+ [345.696, 220.559],
+ [347.438, 230.609],
+ [350.195, 235.313],
+ [353.589, 238.827],
+ [353.702, 240.001]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.239, 0],
+ [0.156, 0.13],
+ [-0.295, 0.353],
+ [0, 5.13],
+ [1.595, 3.108],
+ [-0.41, 0.212],
+ [-0.211, -0.41],
+ [0, -3.784],
+ [3.539, -4.226]
+ ],
+ "o": [
+ [-0.189, 0],
+ [-0.353, -0.296],
+ [3.289, -3.927],
+ [0, -3.517],
+ [-0.21, -0.41],
+ [0.407, -0.212],
+ [1.717, 3.346],
+ [0, 5.521],
+ [-0.164, 0.197]
+ ],
+ "v": [
+ [384.971, 237.372],
+ [384.437, 237.178],
+ [384.333, 236.003],
+ [389.433, 221.959],
+ [387.03, 211.978],
+ [387.391, 210.854],
+ [388.513, 211.216],
+ [391.1, 221.959],
+ [385.611, 237.074]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.188, 0],
+ [0.164, 0.197],
+ [2.037, 1.245],
+ [-0.24, 0.392],
+ [-0.394, -0.241],
+ [-1.654, -1.976],
+ [0.353, -0.296]
+ ],
+ "o": [
+ [-0.239, 0],
+ [-1.539, -1.84],
+ [-0.393, -0.241],
+ [0.24, -0.394],
+ [2.191, 1.34],
+ [0.295, 0.353],
+ [-0.156, 0.13]
+ ],
+ "v": [
+ [384.975, 208.217],
+ [384.335, 207.919],
+ [378.948, 203.271],
+ [378.671, 202.125],
+ [379.817, 201.848],
+ [385.613, 206.848],
+ [385.509, 208.023]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 2.181],
+ [2.181, 0],
+ [0, -2.181],
+ [-2.181, 0]
+ ],
+ "o": [
+ [0, -2.181],
+ [-2.181, 0],
+ [0, 2.181],
+ [2.181, 0]
+ ],
+ "v": [
+ [371.493, 221.959],
+ [367.544, 218.01],
+ [363.595, 221.959],
+ [367.544, 225.907]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.360784322023, 0.592156887054, 0.749019622803, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 8.071],
+ [8.071, 0],
+ [0, -8.071],
+ [-8.071, 0]
+ ],
+ "o": [
+ [0, -8.071],
+ [-8.071, 0],
+ [0, 8.071],
+ [8.071, 0]
+ ],
+ "v": [
+ [382.158, 221.959],
+ [367.544, 207.344],
+ [352.93, 221.959],
+ [367.544, 236.573]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 16.211],
+ [16.211, 0],
+ [0, -16.211],
+ [-16.211, 0]
+ ],
+ "o": [
+ [0, -16.211],
+ [-16.211, 0],
+ [0, 16.211],
+ [16.211, 0]
+ ],
+ "v": [
+ [396.897, 221.959],
+ [367.544, 192.606],
+ [338.191, 221.959],
+ [367.544, 251.311]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.360784322023, 0.592156887054, 0.749019622803, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [367.544, 221.959],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [367.544, 221.959],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 132,
+ "s": [-90]
+ },
+ {
+ "t": 264,
+ "s": [0]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Koleso right",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, -0.241],
+ [0.129, -0.155],
+ [1.394, -1.07],
+ [1.814, -0.78],
+ [3.727, 0.242],
+ [-0.038, 0.461],
+ [-0.459, -0.029],
+ [-3.207, 1.381],
+ [-1.436, 1.104],
+ [-1.039, 1.259],
+ [-0.355, -0.293]
+ ],
+ "o": [
+ [0, 0.186],
+ [-1.118, 1.355],
+ [-1.545, 1.188],
+ [-3.45, 1.485],
+ [-0.459, -0.03],
+ [0.029, -0.46],
+ [3.461, 0.225],
+ [1.685, -0.725],
+ [1.294, -0.994],
+ [0.293, -0.355],
+ [0.2, 0.165]
+ ],
+ "v": [
+ [261.55, 235.498],
+ [261.36, 236.027],
+ [257.574, 239.682],
+ [252.513, 242.649],
+ [241.698, 244.523],
+ [240.919, 243.638],
+ [241.805, 242.86],
+ [251.855, 241.118],
+ [256.558, 238.36],
+ [260.073, 234.966],
+ [261.247, 234.854]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, -0.239],
+ [0.13, -0.156],
+ [0.353, 0.295],
+ [5.13, 0],
+ [3.108, -1.595],
+ [0.212, 0.41],
+ [-0.41, 0.211],
+ [-3.784, 0],
+ [-4.226, -3.539]
+ ],
+ "o": [
+ [0, 0.189],
+ [-0.296, 0.353],
+ [-3.927, -3.289],
+ [-3.517, 0],
+ [-0.41, 0.21],
+ [-0.212, -0.407],
+ [3.346, -1.717],
+ [5.521, 0],
+ [0.197, 0.164]
+ ],
+ "v": [
+ [258.618, 203.585],
+ [258.424, 204.119],
+ [257.249, 204.223],
+ [243.205, 199.123],
+ [233.224, 201.526],
+ [232.1, 201.164],
+ [232.462, 200.043],
+ [243.205, 197.456],
+ [258.32, 202.945]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, -0.188],
+ [0.197, -0.164],
+ [1.245, -2.037],
+ [0.392, 0.24],
+ [-0.241, 0.394],
+ [-1.976, 1.654],
+ [-0.296, -0.353]
+ ],
+ "o": [
+ [0, 0.239],
+ [-1.84, 1.539],
+ [-0.241, 0.393],
+ [-0.394, -0.24],
+ [1.34, -2.191],
+ [0.353, -0.295],
+ [0.13, 0.156]
+ ],
+ "v": [
+ [229.463, 203.58],
+ [229.165, 204.22],
+ [224.517, 209.608],
+ [223.371, 209.884],
+ [223.094, 208.738],
+ [228.094, 202.942],
+ [229.269, 203.046]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 2.181],
+ [2.181, 0],
+ [0, -2.181],
+ [-2.181, 0]
+ ],
+ "o": [
+ [0, -2.181],
+ [-2.181, 0],
+ [0, 2.181],
+ [2.181, 0]
+ ],
+ "v": [
+ [246.213, 221.959],
+ [242.264, 218.01],
+ [238.315, 221.959],
+ [242.264, 225.907]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.360784322023, 0.592156887054, 0.749019622803, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 8.071],
+ [8.071, 0],
+ [0, -8.071],
+ [-8.071, 0]
+ ],
+ "o": [
+ [0, -8.071],
+ [-8.071, 0],
+ [0, 8.071],
+ [8.071, 0]
+ ],
+ "v": [
+ [256.878, 221.959],
+ [242.264, 207.344],
+ [227.649, 221.959],
+ [242.264, 236.573]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 16.211],
+ [16.211, 0],
+ [0, -16.211],
+ [-16.211, 0]
+ ],
+ "o": [
+ [0, -16.211],
+ [-16.211, 0],
+ [0, 16.211],
+ [16.211, 0]
+ ],
+ "v": [
+ [271.616, 221.959],
+ [242.264, 192.606],
+ [212.911, 221.959],
+ [242.264, 251.311]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.360784322023, 0.592156887054, 0.749019622803, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [242.264, 221.959],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [242.264, 221.959],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 132,
+ "s": [-90]
+ },
+ {
+ "t": 264,
+ "s": [0]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Koleso left",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [321.882, 225.907],
+ [316.093, 225.907]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [310.562, 225.907],
+ [286.618, 225.907]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [327.176, 195.976],
+ [347.72, 205.201],
+ [347.72, 229.989],
+ [327.176, 229.989]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [282.556, 195.976],
+ [261.55, 205.201],
+ [261.55, 229.989],
+ [282.556, 229.989]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [327.176, 229.989],
+ [282.556, 229.989],
+ [282.556, 195.976],
+ [327.176, 195.976]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, -0.55]
+ ],
+ "v": [
+ [321.682, 188.925],
+ [287.618, 188.925],
+ [286.618, 189.925],
+ [286.618, 194.976],
+ [287.618, 195.976],
+ [321.682, 195.976],
+ [322.682, 194.976],
+ [322.682, 189.925]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.360784322023, 0.592156887054, 0.749019622803, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 6,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 21,
+ "ty": 4,
+ "nm": "Kletka",
+ "parent": 22,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [32.9]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 90,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 174,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [32.9]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [226.413, 22.085, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [226.413, 22.085, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 1.788],
+ [1.788, 0],
+ [0, -1.788],
+ [-1.788, 0]
+ ],
+ "o": [
+ [0, -1.788],
+ [-1.788, 0],
+ [0, 1.788],
+ [1.788, 0]
+ ],
+ "v": [
+ [229.651, 22.085],
+ [226.413, 18.847],
+ [223.175, 22.085],
+ [226.413, 25.323]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [199.074, -29.634],
+ [199.074, 18.421]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [178.236, -8.248],
+ [220.293, -8.248]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [213.959, 18.235],
+ [183.638, 18.235],
+ [183.638, -29.634],
+ [213.959, -29.634]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [220.198, 18.235],
+ [178.236, 18.235],
+ [178.236, -29.634],
+ [220.198, -29.634]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.418, 0],
+ [0, 0],
+ [0, 0.418],
+ [0, 0],
+ [-0.418, 0],
+ [0, 0],
+ [0, -0.418],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.418, 0],
+ [0, 0],
+ [0, -0.418],
+ [0, 0],
+ [0.418, 0],
+ [0, 0],
+ [0, 0.418]
+ ],
+ "v": [
+ [222.414, -29.634],
+ [175.734, -29.634],
+ [174.973, -30.395],
+ [174.973, -34.115],
+ [175.734, -34.876],
+ [222.414, -34.876],
+ [223.175, -34.115],
+ [223.175, -30.395]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.113, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -0.448],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.448, 0],
+ [0, 0],
+ [0, 1.113]
+ ],
+ "v": [
+ [179.47, 28.794],
+ [220.588, 28.794],
+ [220.588, 18.448],
+ [178.258, 18.448],
+ [177.447, 19.26],
+ [177.447, 26.771]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [232.016, 28.983],
+ [221.588, 28.983],
+ [220.588, 27.983],
+ [220.588, 7.778],
+ [221.588, 6.778],
+ [232.016, 6.778],
+ [233.016, 7.778],
+ [233.016, 27.983]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 22,
+ "ty": 4,
+ "nm": "3",
+ "parent": 23,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [-23]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 90,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 174,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [-23]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [311.946, 91.928, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [311.946, 91.928, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 1.788],
+ [1.788, 0],
+ [0, -1.788],
+ [-1.788, 0]
+ ],
+ "o": [
+ [0, -1.788],
+ [-1.788, 0],
+ [0, 1.788],
+ [1.788, 0]
+ ],
+ "v": [
+ [315.184, 91.928],
+ [311.946, 88.69],
+ [308.708, 91.928],
+ [311.946, 95.166]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 5.171],
+ [5.171, 0],
+ [0, -5.171],
+ [-5.171, 0]
+ ],
+ "o": [
+ [0, -5.171],
+ [-5.171, 0],
+ [0, 5.171],
+ [5.171, 0]
+ ],
+ "v": [
+ [321.309, 91.928],
+ [311.946, 82.566],
+ [302.583, 91.928],
+ [311.946, 101.291]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [264.614, 54.99],
+ [244.928, 38.826]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.519, 1.224],
+ [0, 0],
+ [1.247, -1.492],
+ [0, 0],
+ [-1.519, -1.224],
+ [0, 0],
+ [-1.247, 1.492],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.519, -1.224],
+ [0, 0],
+ [-1.247, 1.492],
+ [0, 0],
+ [1.519, 1.224],
+ [0, 0],
+ [1.247, -1.492]
+ ],
+ "v": [
+ [315.383, 87.812],
+ [229.327, 18.456],
+ [224.298, 18.943],
+ [222.92, 20.592],
+ [223.416, 25.531],
+ [309.472, 94.887],
+ [314.501, 94.4],
+ [315.879, 92.751]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 23,
+ "ty": 4,
+ "nm": "2",
+ "parent": 24,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [10.6]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 90,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 174,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [10.6]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [216.216, 128.25, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [216.216, 128.25, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 1.788],
+ [1.788, 0],
+ [0, -1.788],
+ [-1.788, 0]
+ ],
+ "o": [
+ [0, -1.788],
+ [-1.788, 0],
+ [0, 1.788],
+ [1.788, 0]
+ ],
+ "v": [
+ [219.455, 128.25],
+ [216.216, 125.012],
+ [212.978, 128.25],
+ [216.216, 131.489]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 5.171],
+ [5.171, 0],
+ [0, -5.171],
+ [-5.171, 0]
+ ],
+ "o": [
+ [0, -5.171],
+ [-5.171, 0],
+ [0, 5.171],
+ [5.171, 0]
+ ],
+ "v": [
+ [225.579, 128.25],
+ [216.216, 118.888],
+ [206.854, 128.25],
+ [216.216, 137.613]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [280.414, 106.087],
+ [266.89, 110.959]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [260.444, 113.39],
+ [237.917, 121.504]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.031, -0.382],
+ [0, 0],
+ [-0.382, -1.031],
+ [0, 0],
+ [-1.031, 0.382],
+ [0, 0],
+ [0.382, 1.031],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.031, 0.382],
+ [0, 0],
+ [0.382, 1.031],
+ [0, 0],
+ [1.031, -0.382],
+ [0, 0],
+ [-0.382, -1.031]
+ ],
+ "v": [
+ [312.519, 87.753],
+ [212.612, 124.775],
+ [211.432, 127.345],
+ [213.063, 131.748],
+ [215.633, 132.928],
+ [315.54, 95.906],
+ [316.72, 93.336],
+ [315.089, 88.934]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 24,
+ "ty": 4,
+ "nm": "1",
+ "parent": 20,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [-19.7]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 90,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 174,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [-19.7]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [255.159, 149.167, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [255.159, 149.167, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.602, 0.892],
+ [0, 0],
+ [-0.892, 1.602],
+ [0, 0],
+ [-1.602, -0.892],
+ [0, 0],
+ [0.892, -1.602],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.602, -0.892],
+ [0, 0],
+ [0.892, -1.602],
+ [0, 0],
+ [1.602, 0.892],
+ [0, 0],
+ [-0.892, 1.602]
+ ],
+ "v": [
+ [252.082, 155.124],
+ [212.447, 131.013],
+ [211.155, 126.478],
+ [212.604, 123.875],
+ [217.139, 122.582],
+ [259.449, 143.805],
+ [260.741, 148.339],
+ [256.617, 153.832]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.321568638086, 0.823529422283, 0.811764717102, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 25,
+ "ty": 4,
+ "nm": "MAn",
+ "parent": 21,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [166.539, -67.349],
+ [157.617, -67.349],
+ [156.617, -68.349],
+ [156.617, -82.859],
+ [157.617, -83.859],
+ [166.539, -83.859],
+ [167.539, -82.859],
+ [167.539, -68.349]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0.917],
+ [0, 0],
+ [-0.917, 0],
+ [0, -0.917],
+ [0, 0]
+ ],
+ "o": [
+ [-0.917, 0],
+ [0, 0],
+ [0, -0.917],
+ [0, 0],
+ [0, 0],
+ [0, 0.917]
+ ],
+ "v": [
+ [166.306, -68.402],
+ [165.077, -71.546],
+ [165.077, -79.486],
+ [166.306, -82.882],
+ [170.889, -79.481],
+ [170.889, -71.541]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0.917],
+ [0, 0],
+ [-0.917, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [-0.917, 0],
+ [0, 0],
+ [0, -0.917],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [141.897, -63.01],
+ [140.23, -64.677],
+ [140.23, -86.562],
+ [141.897, -88.23],
+ [160.661, -80.515],
+ [160.661, -71.044]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886274516582, 0.160784319043, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [160.661, -75.62],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [160.661, -75.62],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 93,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 105,
+ "s": [120, 120]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 117,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 129,
+ "s": [120, 120]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 141,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 153,
+ "s": [120, 120]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 165,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.45, 0.45],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.55, 0.55],
+ "y": [0, 0]
+ },
+ "t": 177,
+ "s": [120, 120]
+ },
+ {
+ "t": 189,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, -1.802],
+ [-1.802, 0],
+ [0, 1.802],
+ [1.802, 0]
+ ],
+ "o": [
+ [0, 1.802],
+ [1.802, 0],
+ [0, -1.802],
+ [-1.802, 0]
+ ],
+ "v": [
+ [137.889, -76.23],
+ [141.152, -72.967],
+ [144.415, -76.23],
+ [141.152, -79.493]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Megaphone",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.074, -0.028],
+ [0, 0],
+ [-0.672, 0.364],
+ [0, 0],
+ [-0.029, 1.573],
+ [0, 0],
+ [1.459, 0.769],
+ [0, 0],
+ [0.679, 0.014],
+ [0, 0],
+ [0, -1.064],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -1.064],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.013, -1.57],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -1.561]
+ ],
+ "o": [
+ [0, 0],
+ [0.764, 0.02],
+ [0, 0],
+ [1.384, -0.749],
+ [0, 0],
+ [0.031, -1.649],
+ [0, 0],
+ [-0.601, -0.317],
+ [0, 0],
+ [0, 0],
+ [0, 1.064],
+ [0, 0],
+ [0, 0],
+ [-1.254, 0],
+ [0, 1.064],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0.013, 1.57],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 1.561]
+ ],
+ "v": [
+ [159.508, -55.785],
+ [165.14, -55.638],
+ [167.332, -56.163],
+ [167.519, -56.264],
+ [169.806, -60.023],
+ [169.869, -63.406],
+ [167.539, -67.349],
+ [167.002, -67.632],
+ [165.055, -68.134],
+ [156.77, -68.301],
+ [155.767, -66.894],
+ [156.617, -65.324],
+ [160.514, -65.218],
+ [156.617, -65.324],
+ [155.444, -63.781],
+ [156.308, -62.265],
+ [160.501, -62.119],
+ [156.308, -62.265],
+ [155.529, -60.603],
+ [156.484, -58.993],
+ [160.661, -58.913],
+ [157.309, -58.993],
+ [156.308, -57.197]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Hand",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [175.303, -53.928],
+ [171.042, -53.928],
+ [170.042, -54.928],
+ [170.042, -67.653],
+ [171.042, -68.653],
+ [175.303, -68.653],
+ [176.303, -67.653],
+ [176.303, -54.928]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 3.518],
+ [0, 0],
+ [-3.518, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-3.518, 0],
+ [0, 0],
+ [0, -3.518],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [196.443, -55.15],
+ [177.051, -55.15],
+ [170.655, -61.547],
+ [170.655, -61.547],
+ [177.051, -67.944],
+ [196.443, -67.944]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [163.686, -53.561],
+ [160.437, -53.561],
+ [159.437, -54.561],
+ [159.437, -68.135],
+ [160.437, -69.135],
+ [163.686, -69.135],
+ [164.686, -68.135],
+ [164.686, -54.561]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [196.443, -61.29],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [196.443, -61.29],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 30,
+ "s": [-34]
+ },
+ {
+ "i": {
+ "x": [0.563],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.199],
+ "y": [0]
+ },
+ "t": 60,
+ "s": [10]
+ },
+ {
+ "i": {
+ "x": [0.655],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.32],
+ "y": [0]
+ },
+ "t": 93,
+ "s": [10]
+ },
+ {
+ "i": {
+ "x": [0.68],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.373],
+ "y": [0]
+ },
+ "t": 111,
+ "s": [15]
+ },
+ {
+ "i": {
+ "x": [0.627],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.437],
+ "y": [0]
+ },
+ "t": 129,
+ "s": [10]
+ },
+ {
+ "i": {
+ "x": [0.68],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.345],
+ "y": [0]
+ },
+ "t": 147,
+ "s": [15]
+ },
+ {
+ "i": {
+ "x": [0.827],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.437],
+ "y": [0]
+ },
+ "t": 165,
+ "s": [10]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 204,
+ "s": [10]
+ },
+ {
+ "t": 234,
+ "s": [-34]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Hand",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [186.963, -78.741],
+ [191.781, -81.153]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [185.756, -89.937],
+ [187.672, -89.937]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.879, 0.199],
+ [0, 0],
+ [0, 0],
+ [-1.454, -0.329],
+ [0, 0],
+ [0.202, -0.894],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0.879, 0.199],
+ [0, 0],
+ [-0.202, 0.894]
+ ],
+ "v": [
+ [213.864, -87.831],
+ [173.909, -96.673],
+ [174.269, -98.552],
+ [180.024, -99.85],
+ [214.804, -91.987],
+ [216.033, -90],
+ [215.829, -89.096]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 1.873],
+ [8.514, 2.285],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, -8.815],
+ [-12.025, -3.228],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [214.984, -96.441],
+ [199.022, -112.403],
+ [178.751, -100.573],
+ [214.069, -91.1]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886274516582, 0.160784319043, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.207, 0.139],
+ [0.454, -2.495],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.042, 4.186],
+ [5.913, 0.307]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0.73, -0.972],
+ [1.5, -0.173],
+ [-0.14, 0.771],
+ [-0.301, 0.337],
+ [0, 0],
+ [0, 0],
+ [0.029, -2.81],
+ [-2.895, -0.15]
+ ],
+ "v": [
+ [192.901, -92.359],
+ [195.177, -87.929],
+ [195.748, -88.688],
+ [198.761, -90.491],
+ [202.35, -87.339],
+ [201.895, -86.084],
+ [201.097, -85.126],
+ [207.908, -79.043],
+ [212.829, -88.161],
+ [197.373, -96.37]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.360784322023, 0.592156887054, 0.749019622803, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 8.744],
+ [8.744, 0],
+ [0, -8.744],
+ [-8.744, 0]
+ ],
+ "o": [
+ [0, -8.744],
+ [-8.744, 0],
+ [0, 8.744],
+ [8.744, 0]
+ ],
+ "v": [
+ [213.028, -90.21],
+ [197.196, -106.042],
+ [181.364, -90.21],
+ [197.196, -74.378]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [194.992, -74.378],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [194.992, -74.378],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 20,
+ "s": [-6]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0]
+ },
+ "t": 55,
+ "s": [9]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 209,
+ "s": [9]
+ },
+ {
+ "t": 244,
+ "s": [-6]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Head",
+ "np": 6,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [207.386, -21.226],
+ [187.359, -21.226],
+ [186.359, -22.226],
+ [186.359, -30.831],
+ [187.359, -31.831],
+ [207.386, -31.831],
+ [208.386, -30.831],
+ [208.386, -22.226]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.2, 0],
+ [0, 0],
+ [0, 2.2],
+ [0, 0],
+ [-2.2, 0],
+ [0, 0],
+ [0, -2.2],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-2.2, 0],
+ [0, 0],
+ [0, -2.2],
+ [0, 0],
+ [2.2, 0],
+ [0, 0],
+ [0, 2.2]
+ ],
+ "v": [
+ [204.386, -24.861],
+ [190.821, -24.861],
+ [186.821, -28.861],
+ [186.821, -66.942],
+ [190.821, -70.942],
+ [204.386, -70.942],
+ [208.386, -66.942],
+ [208.386, -28.861]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [-0.917, 0],
+ [0, 0],
+ [0, -0.917],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, -0.917],
+ [0, 0],
+ [0.917, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [190.633, 17.827],
+ [190.633, -20.393],
+ [192.301, -22.06],
+ [202.266, -22.06],
+ [203.933, -20.393],
+ [203.933, 17.827]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [203.926, -70.097],
+ [192.233, -70.097],
+ [192.233, -76.684],
+ [203.926, -76.684]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 28,
+ "ty": 4,
+ "nm": "Chip",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [138.261, 294.495, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-297.739, -6.505, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.305, 0],
+ [0.121, 0.062],
+ [-0.207, 0.412],
+ [0, 0],
+ [-0.414, -0.212],
+ [0.207, -0.412],
+ [0, 0]
+ ],
+ "o": [
+ [-0.125, 0],
+ [-0.411, -0.207],
+ [0, 0],
+ [0.207, -0.412],
+ [0.411, 0.207],
+ [0, 0],
+ [-0.147, 0.291]
+ ],
+ "v": [
+ [-322.119, -5.479],
+ [-322.493, -5.568],
+ [-322.863, -6.687],
+ [-309.71, -32.851],
+ [-308.59, -33.22],
+ [-308.22, -32.102],
+ [-321.374, -5.938]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.157, 0],
+ [0.16, 0.244],
+ [-0.384, 0.254],
+ [0, 0],
+ [0, 0],
+ [-0.266, 0.376],
+ [-0.374, -0.269],
+ [0, 0],
+ [0.005, -0.277],
+ [0.23, -0.152],
+ [0, 0]
+ ],
+ "o": [
+ [-0.271, 0],
+ [-0.253, -0.384],
+ [0, 0],
+ [0, 0],
+ [-0.376, -0.265],
+ [0.266, -0.376],
+ [0, 0],
+ [0.226, 0.16],
+ [-0.005, 0.275],
+ [0, 0],
+ [-0.142, 0.093]
+ ],
+ "v": [
+ [-302.519, -8.65],
+ [-303.215, -9.026],
+ [-302.978, -10.18],
+ [-290.181, -18.597],
+ [-303.001, -27.666],
+ [-303.2, -28.828],
+ [-302.038, -29.027],
+ [-288.221, -19.253],
+ [-287.869, -18.558],
+ [-288.244, -17.876],
+ [-302.061, -8.787]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.261, 0],
+ [0.146, 0.104],
+ [0, 0],
+ [-0.005, 0.277],
+ [-0.23, 0.151],
+ [0, 0],
+ [-0.252, -0.386],
+ [0.384, -0.254],
+ [0, 0],
+ [0, 0],
+ [0.266, -0.376]
+ ],
+ "o": [
+ [-0.166, 0],
+ [0, 0],
+ [-0.225, -0.16],
+ [0.005, -0.275],
+ [0, 0],
+ [0.387, -0.251],
+ [0.253, 0.384],
+ [0, 0],
+ [0, 0],
+ [0.376, 0.265],
+ [-0.163, 0.23]
+ ],
+ "v": [
+ [-329.333, -8.65],
+ [-329.813, -8.803],
+ [-343.63, -18.576],
+ [-343.983, -19.271],
+ [-343.607, -19.954],
+ [-329.79, -29.043],
+ [-328.636, -28.804],
+ [-328.873, -27.649],
+ [-341.67, -19.232],
+ [-328.851, -10.164],
+ [-328.651, -9.002]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-351.945, 33.602],
+ [-368.057, 33.602],
+ [-368.057, 17.49],
+ [-351.945, 17.49]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [-360.001, 25.546],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-360.001, 25.546],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": -12,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 21,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 54,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 87,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 120,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 153,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 186,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 219,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 252,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 285,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 318,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 351,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 384,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 417,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 450,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 483,
+ "s": [135, 135]
+ },
+ {
+ "t": 516,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-263.795, 33.603],
+ [-279.907, 33.603],
+ [-279.907, 17.491],
+ [-263.795, 17.491]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [-271.851, 25.547],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-271.851, 25.547],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": -19,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 14,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 47,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 80,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 113,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 146,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 179,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 212,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 245,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 278,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 311,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 344,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 377,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 410,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 443,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 476,
+ "s": [135, 135]
+ },
+ {
+ "t": 509,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-263.795, -54.932],
+ [-279.907, -54.932],
+ [-279.907, -71.044],
+ [-263.795, -71.044]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [-271.851, -62.988],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-271.851, -62.988],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": -59,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": -26,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 7,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 40,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 73,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 106,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 139,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 172,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 205,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 238,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 271,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 304,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 337,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 370,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 403,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 436,
+ "s": [135, 135]
+ },
+ {
+ "t": 469,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-351.945, -54.932],
+ [-368.057, -54.932],
+ [-368.057, -71.044],
+ [-351.945, -71.044]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [-360.001, -62.988],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-360.001, -62.988],
+ "ix": 1
+ },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 0,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 33,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 66,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 99,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 132,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 165,
+ "s": [135, 135]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 198,
+ "s": [100, 100]
+ },
+ {
+ "i": {
+ "x": [0.25, 0.25],
+ "y": [1, 1]
+ },
+ "o": {
+ "x": [0.75, 0.75],
+ "y": [0, 0]
+ },
+ "t": 231,
+ "s": [135, 135]
+ },
+ {
+ "t": 264,
+ "s": [100, 100]
+ }
+ ],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-275.359, 22.175],
+ [-356.448, 22.175],
+ [-356.448, -58.913],
+ [-275.359, -58.913]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886274516582, 0.160784319043, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": {
+ "a": 0,
+ "k": [92, 92],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "d": [
+ {
+ "n": "d",
+ "nm": "dash",
+ "v": {
+ "a": 0,
+ "k": 10,
+ "ix": 1
+ }
+ },
+ {
+ "n": "o",
+ "nm": "offset",
+ "v": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [-3]
+ },
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 264,
+ "s": [-282.8]
+ },
+ {
+ "t": 528,
+ "s": [-279.7]
+ }
+ ],
+ "ix": 7
+ }
+ }
+ ],
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [-317.6, -18.6],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 29,
+ "ty": 4,
+ "nm": "IPAD interface",
+ "parent": 30,
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0.001,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [34.314, -39.035, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [49.25, -2.25, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [175.439, 175.439, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "d": 1,
+ "ty": "el",
+ "s": {
+ "a": 0,
+ "k": [10.5, 10.5],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "nm": "Ellipse Path 1",
+ "mn": "ADBE Vector Shape - Ellipse",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "d": [
+ {
+ "n": "d",
+ "nm": "dash",
+ "v": {
+ "a": 0,
+ "k": 3,
+ "ix": 1
+ }
+ },
+ {
+ "n": "o",
+ "nm": "offset",
+ "v": {
+ "a": 0,
+ "k": 0,
+ "ix": 7
+ }
+ }
+ ],
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [72.25, 119.375],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [720]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Ellipse 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "d": 1,
+ "ty": "el",
+ "s": {
+ "a": 0,
+ "k": [10.5, 10.5],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "nm": "Ellipse Path 1",
+ "mn": "ADBE Vector Shape - Ellipse",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "d": [
+ {
+ "n": "d",
+ "nm": "dash",
+ "v": {
+ "a": 0,
+ "k": 3,
+ "ix": 1
+ }
+ },
+ {
+ "n": "o",
+ "nm": "offset",
+ "v": {
+ "a": 0,
+ "k": 0,
+ "ix": 7
+ }
+ }
+ ],
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [54.25, 119.625],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [720]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Ellipse 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.83, 0],
+ [0, -2.83],
+ [-2.83, 0],
+ [0, 2.83]
+ ],
+ "o": [
+ [-2.83, 0],
+ [0, 2.83],
+ [2.83, 0],
+ [0, -2.83]
+ ],
+ "v": [
+ [0, -5.125],
+ [-5.125, 0],
+ [0, 5.125],
+ [5.125, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "d": [
+ {
+ "n": "d",
+ "nm": "dash",
+ "v": {
+ "a": 0,
+ "k": 3,
+ "ix": 1
+ }
+ },
+ {
+ "n": "o",
+ "nm": "offset",
+ "v": {
+ "a": 0,
+ "k": 0,
+ "ix": 7
+ }
+ }
+ ],
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [35.625, 119.5],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [720]
+ }
+ ],
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Ellipse 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": {
+ "a": 0,
+ "k": [82.5, 20],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "d": [
+ {
+ "n": "d",
+ "nm": "dash",
+ "v": {
+ "a": 0,
+ "k": 6,
+ "ix": 1
+ }
+ },
+ {
+ "n": "o",
+ "nm": "offset",
+ "v": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [-180]
+ }
+ ],
+ "ix": 7
+ }
+ }
+ ],
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [35.75, 91],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": {
+ "a": 0,
+ "k": [39, 57],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "d": [
+ {
+ "n": "d",
+ "nm": "dash",
+ "v": {
+ "a": 0,
+ "k": 6,
+ "ix": 1
+ }
+ },
+ {
+ "n": "o",
+ "nm": "offset",
+ "v": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [180]
+ }
+ ],
+ "ix": 7
+ }
+ }
+ ],
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [13.5, 45],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": {
+ "a": 0,
+ "k": [53.5, 20.5],
+ "ix": 2
+ },
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "d": [
+ {
+ "n": "d",
+ "nm": "dash",
+ "v": {
+ "a": 0,
+ "k": 6,
+ "ix": 1
+ }
+ },
+ {
+ "n": "o",
+ "nm": "offset",
+ "v": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.833],
+ "y": [0.833]
+ },
+ "o": {
+ "x": [0.167],
+ "y": [0.167]
+ },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "t": 264,
+ "s": [-180]
+ }
+ ],
+ "ix": 7
+ }
+ }
+ ],
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [49.25, -1.375],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 30,
+ "ty": 4,
+ "nm": "IPAD",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 11
+ },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.765],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.604],
+ "y": [0]
+ },
+ "t": 0,
+ "s": [12]
+ },
+ {
+ "i": {
+ "x": [0.526],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.429],
+ "y": [0]
+ },
+ "t": 65,
+ "s": [-22]
+ },
+ {
+ "i": {
+ "x": [0.63],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.373],
+ "y": [0]
+ },
+ "t": 98,
+ "s": [12.001]
+ },
+ {
+ "i": {
+ "x": [0.725],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.21],
+ "y": [0]
+ },
+ "t": 121.905,
+ "s": [-8]
+ },
+ {
+ "i": {
+ "x": [0.7],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.23],
+ "y": [0]
+ },
+ "t": 149.859,
+ "s": [5]
+ },
+ {
+ "i": {
+ "x": [0.674],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.231],
+ "y": [0]
+ },
+ "t": 177.811,
+ "s": [-3]
+ },
+ {
+ "i": {
+ "x": [0.701],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.672],
+ "y": [0]
+ },
+ "t": 205.765,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.593],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.373],
+ "y": [0]
+ },
+ "t": 235.853,
+ "s": [-14.14]
+ },
+ {
+ "t": 264,
+ "s": [12]
+ }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 0,
+ "s": [423.5, 307.172, 0],
+ "to": [7.5, 0, 0],
+ "ti": [-7.5, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 0.45
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0.55
+ },
+ "t": 60,
+ "s": [499, 307.172, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": {
+ "x": 0.45,
+ "y": 1
+ },
+ "o": {
+ "x": 0.55,
+ "y": 0
+ },
+ "t": 204,
+ "s": [499, 307.172, 0],
+ "to": [-7.5, 0, 0],
+ "ti": [7.5, 0, 0]
+ },
+ {
+ "t": 264,
+ "s": [423.5, 307.172, 0]
+ }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [9.153, -92.681, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [57, 57, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.272, 0],
+ [0.004, 0],
+ [0.151, 0.231],
+ [0, 0],
+ [-0.386, 0.252],
+ [-0.252, -0.383],
+ [0, 0],
+ [0, 0],
+ [-0.378, -0.264],
+ [0.263, -0.378],
+ [0, 0]
+ ],
+ "o": [
+ [-0.004, 0],
+ [-0.278, -0.005],
+ [0, 0],
+ [-0.252, -0.386],
+ [0.384, -0.251],
+ [0, 0],
+ [0, 0],
+ [0.265, -0.379],
+ [0.378, 0.264],
+ [0, 0],
+ [-0.156, 0.223]
+ ],
+ "v": [
+ [-42.931, -31.651],
+ [-42.944, -31.651],
+ [-43.629, -32.029],
+ [-48.277, -39.158],
+ [-48.034, -40.312],
+ [-46.88, -40.07],
+ [-42.907, -33.974],
+ [-32.538, -48.822],
+ [-31.377, -49.029],
+ [-31.171, -47.868],
+ [-42.247, -32.008]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0.461, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.461, 0],
+ [0, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0.461],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -0.461],
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [-32.761, -25.99],
+ [-53.1, -25.99],
+ [-53.934, -26.824],
+ [-53.934, -47.163],
+ [-53.1, -47.997],
+ [-38.634, -47.997],
+ [-37.801, -47.163],
+ [-38.634, -46.329],
+ [-52.267, -46.329],
+ [-52.267, -27.657],
+ [-33.595, -27.657],
+ [-33.595, -39.124],
+ [-32.761, -39.957],
+ [-31.928, -39.124],
+ [-31.928, -26.824]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-35.534, -29.531],
+ [-50.406, -29.531],
+ [-50.406, -44.48],
+ [-35.534, -44.48]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886274516582, 0.160784319043, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.969, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-3.246, 0],
+ [0, 0],
+ [0, -1.785]
+ ],
+ "v": [
+ [81.774, -92.681],
+ [71.204, -92.681],
+ [67.958, -89.937],
+ [85.076, -89.937]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 4.943],
+ [4.943, 0],
+ [0, -4.943],
+ [-4.943, 0]
+ ],
+ "o": [
+ [0, -4.943],
+ [-4.943, 0],
+ [0, 4.943],
+ [4.943, 0]
+ ],
+ "v": [
+ [-11.719, 174.137],
+ [-20.669, 165.187],
+ [-29.619, 174.137],
+ [-20.669, 183.087]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 4.943],
+ [4.943, 0],
+ [0, -4.943],
+ [-4.943, 0]
+ ],
+ "o": [
+ [0, -4.943],
+ [-4.943, 0],
+ [0, 4.943],
+ [4.943, 0]
+ ],
+ "v": [
+ [-45.075, 174.137],
+ [-54.025, 165.187],
+ [-62.975, 174.137],
+ [-54.025, 183.087]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 1.763],
+ [1.763, 0],
+ [0, -1.763],
+ [-1.763, 0]
+ ],
+ "o": [
+ [0, -1.763],
+ [-1.763, 0],
+ [0, 1.763],
+ [1.763, 0]
+ ],
+ "v": [
+ [53.666, -77.324],
+ [50.473, -80.517],
+ [47.281, -77.324],
+ [50.473, -74.132]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.707, 0],
+ [0, 0],
+ [0, 0.707],
+ [0, 0],
+ [-0.707, 0],
+ [0, 0],
+ [0, -0.707],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.707, 0],
+ [0, 0],
+ [0, -0.707],
+ [0, 0],
+ [0.707, 0],
+ [0, 0],
+ [0, 0.707]
+ ],
+ "v": [
+ [-22.536, -75.181],
+ [-33.716, -75.181],
+ [-35.002, -76.467],
+ [-35.002, -78.182],
+ [-33.716, -79.468],
+ [-22.536, -79.468],
+ [-21.25, -78.182],
+ [-21.25, -76.467]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.707, 0],
+ [0, 0],
+ [0, 0.707],
+ [0, 0],
+ [-0.707, 0],
+ [0, 0],
+ [0, -0.707],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.707, 0],
+ [0, 0],
+ [0, -0.707],
+ [0, 0],
+ [0.707, 0],
+ [0, 0],
+ [0, 0.707]
+ ],
+ "v": [
+ [29.816, -75.181],
+ [-8.608, -75.181],
+ [-9.893, -76.467],
+ [-9.893, -78.182],
+ [-8.608, -79.468],
+ [29.816, -79.468],
+ [31.102, -78.182],
+ [31.102, -76.467]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [83.874, 157.485],
+ [-62.666, 157.485],
+ [-63.5, 156.652],
+ [-62.666, 155.818],
+ [83.874, 155.818],
+ [84.708, 156.652]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [54.27, 19.196],
+ [71.028, 19.196],
+ [71.028, 2.439],
+ [54.27, 2.439]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [71.861, 20.863],
+ [53.436, 20.863],
+ [52.603, 20.03],
+ [52.603, 1.605],
+ [53.436, 0.771],
+ [71.861, 0.771],
+ [72.695, 1.605],
+ [72.695, 20.03]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [71.861, 20.03],
+ [53.437, 20.03],
+ [53.437, 1.605],
+ [71.861, 1.605]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [27.586, 19.196],
+ [44.343, 19.196],
+ [44.343, 2.439],
+ [27.586, 2.439]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [45.177, 20.863],
+ [26.752, 20.863],
+ [25.918, 20.03],
+ [25.918, 1.605],
+ [26.752, 0.771],
+ [45.177, 0.771],
+ [46.01, 1.605],
+ [46.01, 20.03]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [45.177, 20.03],
+ [26.752, 20.03],
+ [26.752, 1.605],
+ [45.177, 1.605]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [71.861, 33.187],
+ [26.752, 33.187],
+ [25.918, 32.354],
+ [26.752, 31.52],
+ [71.861, 31.52],
+ [72.695, 32.354]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [71.861, 81.848],
+ [26.752, 81.848],
+ [25.918, 81.015],
+ [26.752, 80.181],
+ [71.861, 80.181],
+ [72.695, 81.015]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [71.861, 69.683],
+ [26.752, 69.683],
+ [25.918, 68.85],
+ [26.752, 68.016],
+ [71.861, 68.016],
+ [72.695, 68.85]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [71.861, 57.517],
+ [26.752, 57.517],
+ [25.918, 56.683],
+ [26.752, 55.85],
+ [71.861, 55.85],
+ [72.695, 56.683]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [71.861, 45.352],
+ [26.752, 45.352],
+ [25.918, 44.519],
+ [26.752, 43.685],
+ [71.861, 43.685],
+ [72.695, 44.519]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [17.953, 93.671],
+ [80.66, 93.671],
+ [80.66, -5.399],
+ [17.953, -5.399]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [81.493, 95.338],
+ [17.12, 95.338],
+ [16.286, 94.505],
+ [16.286, -6.232],
+ [17.12, -7.066],
+ [81.493, -7.066],
+ [82.327, -6.232],
+ [82.327, 94.505]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [81.439, 94.436],
+ [17.046, 94.436],
+ [17.046, -6.042],
+ [81.439, -6.042]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.537254929543, 0.678431391716, 0.827450990677, 1
+ ],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-59.451, -20.566],
+ [-26.503, -20.566],
+ [-26.503, -53.514],
+ [-59.451, -53.514]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461],
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.461, 0],
+ [0, 0],
+ [0, -0.461],
+ [0, 0],
+ [0.461, 0],
+ [0, 0],
+ [0, 0.461]
+ ],
+ "v": [
+ [-25.67, -18.899],
+ [-60.285, -18.899],
+ [-61.118, -19.732],
+ [-61.118, -54.348],
+ [-60.285, -55.181],
+ [-25.67, -55.181],
+ [-24.836, -54.348],
+ [-24.836, -19.732]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0, 0, 0, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-25.669, -19.731],
+ [-60.285, -19.731],
+ [-60.285, -54.348],
+ [-25.669, -54.348]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 7,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.1, 0],
+ [0, 0],
+ [0, 1.1],
+ [0, 0],
+ [-1.1, 0],
+ [0, 0],
+ [0, -1.1],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.1, 0],
+ [0, 0],
+ [0, -1.1],
+ [0, 0],
+ [1.1, 0],
+ [0, 0],
+ [0, 1.1]
+ ],
+ "v": [
+ [29.638, 212.312],
+ [-8.429, 212.312],
+ [-10.429, 210.312],
+ [-10.429, 202.354],
+ [-8.429, 200.354],
+ [29.638, 200.354],
+ [31.638, 202.354],
+ [31.638, 210.312]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [25.918, 81.015],
+ [72.695, 81.015]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [25.918, 68.85],
+ [72.695, 68.85]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [25.918, 56.683],
+ [72.695, 56.683]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 12,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [25.918, 44.519],
+ [72.695, 44.519]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 13",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 13,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [25.918, 32.354],
+ [72.695, 32.354]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 14",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 14,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [69.79, 19.196],
+ [54.437, 19.196],
+ [53.437, 18.196],
+ [53.437, 2.6],
+ [54.437, 1.6],
+ [69.79, 1.6],
+ [70.79, 2.6],
+ [70.79, 18.196]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 15",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 15,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [43.343, 19.196],
+ [27.99, 19.196],
+ [26.99, 18.196],
+ [26.99, 2.6],
+ [27.99, 1.6],
+ [43.343, 1.6],
+ [44.343, 2.6],
+ [44.343, 18.196]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 16",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 16,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [80.493, 94.143],
+ [18.046, 94.143],
+ [17.046, 93.143],
+ [17.046, -5.232],
+ [18.046, -6.232],
+ [80.493, -6.232],
+ [81.493, -5.232],
+ [81.493, 93.143]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.611764729023, 0.874509811401, 1, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 17",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 17,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-48.034, -40.312],
+ [-43.629, -32.029],
+ [-31.377, -49.029]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 18",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 18,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-35.534, -29.608],
+ [-50.406, -29.608],
+ [-50.406, -44.48],
+ [-35.534, -44.48]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 0.886274516582, 0.160784319043, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 19",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 19,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0.917, 0],
+ [0, 0],
+ [0, 0.917],
+ [0, 0],
+ [-0.917, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0.917],
+ [0, 0],
+ [-0.917, 0],
+ [0, 0],
+ [0, -0.917],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-32.843, -39.475],
+ [-32.843, -28.302],
+ [-34.51, -26.635],
+ [-51.223, -26.635],
+ [-52.89, -28.302],
+ [-52.89, -45.754],
+ [-51.223, -47.421],
+ [-38.276, -47.421]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 20",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 20,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55],
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.55, 0],
+ [0, 0],
+ [0, -0.55],
+ [0, 0],
+ [0.55, 0],
+ [0, 0],
+ [0, 0.55]
+ ],
+ "v": [
+ [-26.669, -19.732],
+ [-59.285, -19.732],
+ [-60.285, -20.732],
+ [-60.285, -53.348],
+ [-59.285, -54.348],
+ [-26.669, -54.348],
+ [-25.669, -53.348],
+ [-25.669, -20.732]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 21",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 21,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.517, 0],
+ [0, 0],
+ [0, 0.517],
+ [0, 0],
+ [-0.517, 0],
+ [0, 0],
+ [0, -0.517],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.517, 0],
+ [0, 0],
+ [0, -0.517],
+ [0, 0],
+ [0.517, 0],
+ [0, 0],
+ [0, 0.517]
+ ],
+ "v": [
+ [93.494, 193.902],
+ [-69.966, 193.902],
+ [-70.906, 192.962],
+ [-70.906, -63.228],
+ [-69.966, -64.168],
+ [93.494, -64.168],
+ [94.435, -63.228],
+ [94.435, 192.962]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.537254929543, 0.678431391716, 0.827450990677, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 22",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 22,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.3, 0],
+ [0, 0],
+ [0, 3.3],
+ [0, 0],
+ [-3.3, 0],
+ [0, 0],
+ [0, -3.3],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-3.3, 0],
+ [0, 0],
+ [0, -3.3],
+ [0, 0],
+ [3.3, 0],
+ [0, 0],
+ [0, 3.3]
+ ],
+ "v": [
+ [99.202, 219.671],
+ [-80.895, 219.671],
+ [-86.895, 213.671],
+ [-86.895, -83.937],
+ [-80.895, -89.937],
+ [99.202, -89.937],
+ [105.202, -83.937],
+ [105.202, 213.671]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215687662, 0.101960785687, 0.20000000298, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 1,
+ "ix": 5
+ },
+ "lc": 1,
+ "lj": 1,
+ "ml": 10,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [1, 1, 0.992156863213, 1],
+ "ix": 4
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 23",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 23,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 31,
+ "ty": 4,
+ "nm": "Particular",
+ "sr": 1,
+ "ks": {
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 21,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 31,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 91,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.387],
+ "y": [0]
+ },
+ "t": 101,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 161,
+ "s": [0]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 171,
+ "s": [100]
+ },
+ {
+ "i": {
+ "x": [0.45],
+ "y": [1]
+ },
+ "o": {
+ "x": [0.55],
+ "y": [0]
+ },
+ "t": 231,
+ "s": [100]
+ },
+ {
+ "t": 241,
+ "s": [0]
+ }
+ ],
+ "ix": 11
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 10
+ },
+ "p": {
+ "a": 0,
+ "k": [357.25, 345.25, 0],
+ "ix": 2,
+ "l": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [-41.75, -379.75, 0],
+ "ix": 1,
+ "l": 2
+ },
+ "s": {
+ "a": 0,
+ "k": [30, 30, 100],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-61, -380],
+ [-98.5, -380]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 4",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-43.25, -360],
+ [-43.25, -324]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 3",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-24.5, -379.5],
+ [15, -379.5]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-42.5, -396.5],
+ [-42, -435.5]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [0.039215087891, 0.101959228516, 0.199981689453, 1],
+ "ix": 3
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 4
+ },
+ "w": {
+ "a": 0,
+ "k": 7,
+ "ix": 5
+ },
+ "lc": 2,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 2
+ },
+ "a": {
+ "a": 0,
+ "k": [0, 0],
+ "ix": 1
+ },
+ "s": {
+ "a": 0,
+ "k": [100, 100],
+ "ix": 3
+ },
+ "r": {
+ "a": 0,
+ "k": 0,
+ "ix": 6
+ },
+ "o": {
+ "a": 0,
+ "k": 100,
+ "ix": 7
+ },
+ "sk": {
+ "a": 0,
+ "k": 0,
+ "ix": 4
+ },
+ "sa": {
+ "a": 0,
+ "k": 0,
+ "ix": 5
+ },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Shape 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 300,
+ "st": 0,
+ "bm": 0
+ }
+ ],
+ "markers": []
+}
diff --git a/public/lotties/searching.json b/public/lotties/searching.json
new file mode 100644
index 0000000..4f6208a
--- /dev/null
+++ b/public/lotties/searching.json
@@ -0,0 +1,7778 @@
+{
+ "v": "5.7.3",
+ "fr": 25,
+ "ip": 0,
+ "op": 151,
+ "w": 500,
+ "h": 500,
+ "nm": "doc",
+ "ddd": 0,
+ "assets": [
+ {
+ "id": "comp_0",
+ "layers": [
+ {
+ "ddd": 0,
+ "ind": 1,
+ "ty": 4,
+ "nm": "OBJECTS 2",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.27, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [417.635, 485.668, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.27, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 75,
+ "s": [379.635, 485.668, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ { "t": 150, "s": [417.635, 485.668, 0] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [417.635, 485.668, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.256, 0],
+ [0.195, 0.195],
+ [0, 0],
+ [-0.391, 0.391],
+ [-0.391, -0.39],
+ [0, 0],
+ [0.391, -0.391]
+ ],
+ "o": [
+ [-0.256, 0],
+ [0, 0],
+ [-0.391, -0.391],
+ [0.391, -0.391],
+ [0, 0],
+ [0.391, 0.391],
+ [-0.195, 0.195]
+ ],
+ "v": [
+ [3.138, 4.138],
+ [2.431, 3.845],
+ [-3.845, -2.431],
+ [-3.845, -3.845],
+ [-2.43, -3.845],
+ [3.845, 2.431],
+ [3.845, 3.845]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [504.072, 492.154], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.259, 0],
+ [0, -3.259],
+ [-3.259, 0],
+ [-1.116, 1.116],
+ [0, 1.579]
+ ],
+ "o": [
+ [-3.259, 0],
+ [0, 3.259],
+ [1.579, 0],
+ [1.116, -1.116],
+ [0, -3.259]
+ ],
+ "v": [
+ [0, -5.911],
+ [-5.911, 0],
+ [0, 5.911],
+ [4.179, 4.18],
+ [5.911, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.113, 0],
+ [0, 4.362],
+ [-4.362, 0],
+ [0, -4.362],
+ [1.494, -1.494]
+ ],
+ "o": [
+ [-4.362, 0],
+ [0, -4.362],
+ [4.362, 0],
+ [0, 2.113],
+ [-1.494, 1.494]
+ ],
+ "v": [
+ [0, 7.911],
+ [-7.911, 0],
+ [0, -7.911],
+ [7.911, 0],
+ [5.594, 5.594]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [496.081, 484.095], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [496.081, 484.095], "ix": 2 },
+ "a": { "a": 0, "k": [496.081, 484.095], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [9.988, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -9.988],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [9.988, 0],
+ [0, 0],
+ [0, 9.988]
+ ],
+ "v": [
+ [4.928, 18.085],
+ [-22.879, 18.085],
+ [-23.014, -18.085],
+ [4.928, -18.085],
+ [23.014, 0],
+ [23.014, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.349019616842, 0.603921592236, 0.949019610882, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [498.19, 485.668], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [9.988, 0],
+ [0, 0],
+ [0, 9.988],
+ [0, 0],
+ [-9.988, 0],
+ [0, 0],
+ [0, -9.988],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-9.988, 0],
+ [0, 0],
+ [0, -9.988],
+ [0, 0],
+ [9.988, 0],
+ [0, 0],
+ [0, 9.988]
+ ],
+ "v": [
+ [85.483, 18.085],
+ [-85.483, 18.085],
+ [-103.568, 0],
+ [-103.568, 0],
+ [-85.483, -18.085],
+ [85.483, -18.085],
+ [103.568, 0],
+ [103.568, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [417.635, 485.668], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [417.635, 485.668], "ix": 2 },
+ "a": { "a": 0, "k": [417.635, 485.668], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 2,
+ "ty": 4,
+ "nm": "OBJECTS 3",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 1,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 6,
+ "s": [-21]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 13,
+ "s": [5.875]
+ },
+ {
+ "i": { "x": [0.294], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 21,
+ "s": [-3.452]
+ },
+ {
+ "i": { "x": [0.833], "y": [1] },
+ "o": { "x": [0.167], "y": [0] },
+ "t": 34,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 75,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 80,
+ "s": [-21]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 87,
+ "s": [5.875]
+ },
+ {
+ "i": { "x": [0.294], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 95,
+ "s": [-3.452]
+ },
+ { "t": 108, "s": [0] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [432.18, 579.061, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 1,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 5,
+ "s": [42, 42, 100]
+ },
+ {
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 12,
+ "s": [107, 107, 100]
+ },
+ {
+ "i": { "x": [0.273, 0.273, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 19,
+ "s": [95.222, 95.222, 100]
+ },
+ {
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 34,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 75,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 79,
+ "s": [42, 42, 100]
+ },
+ {
+ "i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 86,
+ "s": [107, 107, 100]
+ },
+ {
+ "i": { "x": [0.273, 0.273, 0.667], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 93,
+ "s": [95.222, 95.222, 100]
+ },
+ { "t": 108, "s": [100, 100, 100] }
+ ],
+ "ix": 6
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, -0.553],
+ [0.552, 0],
+ [0, 0],
+ [-0.011, 1.065]
+ ],
+ "o": [
+ [0, 0],
+ [0.552, 0],
+ [0, 0.553],
+ [0, 0],
+ [0, 0],
+ [0.011, -1.066]
+ ],
+ "v": [
+ [-11.536, 52.534],
+ [17.428, 52.534],
+ [18.428, 53.534],
+ [17.428, 54.534],
+ [-11.536, 54.534],
+ [-12.669, 53.624]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, -0.553],
+ [0.552, 0],
+ [0, 0],
+ [-0.011, 1.065]
+ ],
+ "o": [
+ [0, 0],
+ [0.552, 0],
+ [0, 0.553],
+ [0, 0],
+ [0, 0],
+ [0.011, -1.066]
+ ],
+ "v": [
+ [-11.544, 60.347],
+ [36.484, 60.317],
+ [37.484, 61.317],
+ [36.484, 62.317],
+ [-11.544, 62.347],
+ [-12.676, 61.437]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, -0.553],
+ [0.552, 0],
+ [0, 0],
+ [-0.011, 1.065]
+ ],
+ "o": [
+ [0, 0],
+ [0.552, 0],
+ [0, 0.553],
+ [0, 0],
+ [0, 0],
+ [0.011, -1.066]
+ ],
+ "v": [
+ [-11.544, 68.347],
+ [36.484, 68.317],
+ [37.484, 69.317],
+ [36.484, 70.317],
+ [-11.544, 70.347],
+ [-12.676, 69.437]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, -0.553],
+ [0.552, 0],
+ [0, 0],
+ [-0.011, 1.065]
+ ],
+ "o": [
+ [0, 0],
+ [0.552, 0],
+ [0, 0.553],
+ [0, 0],
+ [0, 0],
+ [0.011, -1.066]
+ ],
+ "v": [
+ [-11.544, 76.597],
+ [36.484, 76.567],
+ [37.484, 77.567],
+ [36.484, 78.567],
+ [-11.544, 78.597],
+ [-12.676, 77.687]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.552, 0],
+ [0, 0.553],
+ [0, 0],
+ [-3.8, 0],
+ [0, 0],
+ [0, -0.553],
+ [0.552, 0],
+ [0, 0],
+ [0, -2.698],
+ [0, 0]
+ ],
+ "o": [
+ [-0.552, 0],
+ [0, 0],
+ [0, -3.801],
+ [0, 0],
+ [0.552, 0],
+ [0, 0.553],
+ [0, 0],
+ [-2.697, 0],
+ [0, 0],
+ [0, 0.553]
+ ],
+ "v": [
+ [-17.428, 16.216],
+ [-18.428, 15.216],
+ [-18.428, -9.323],
+ [-11.536, -16.216],
+ [17.428, -16.216],
+ [18.428, -15.216],
+ [17.428, -14.216],
+ [-11.536, -14.216],
+ [-16.428, -9.323],
+ [-16.428, 15.216]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [-67.5, -42.5], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 6,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.801, 0],
+ [0, 0],
+ [0, 5.956],
+ [0, 0],
+ [5.155, 0],
+ [0, 0],
+ [0, -5.977],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4.801, 0],
+ [0, 0],
+ [0, 5.567],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-5.136, 0],
+ [0, 0],
+ [0, -5.977],
+ [0, 0],
+ [-5.155, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 5.567],
+ [0, 0],
+ [4.801, 0],
+ [0, 0],
+ [0, -5.567]
+ ],
+ "v": [
+ [63.279, -37.939],
+ [-10.108, -37.939],
+ [-19.408, -48.723],
+ [-19.408, -55.795],
+ [-28.742, -66.618],
+ [-62.639, -66.618],
+ [-71.972, -55.795],
+ [-71.972, -27.859],
+ [-71.972, 4.259],
+ [-71.972, 56.537],
+ [-63.279, 66.618],
+ [63.279, 66.618],
+ [71.972, 56.537],
+ [71.972, -27.859]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.960784375668, 0.623529434204, 0.674509823322, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [-20, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.567, 0],
+ [0, 0],
+ [0, 5.956],
+ [0, 0],
+ [5.977, 0],
+ [0, 0],
+ [0, -5.977],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-5.567, 0],
+ [0, 0],
+ [0, 5.567],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-5.956, 0],
+ [0, 0],
+ [0, -5.977],
+ [0, 0],
+ [-5.977, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 5.567],
+ [0, 0],
+ [5.567, 0],
+ [0, 0],
+ [0, -5.567]
+ ],
+ "v": [
+ [73.378, -37.939],
+ [-11.722, -37.939],
+ [-22.506, -48.723],
+ [-22.506, -55.795],
+ [-33.329, -66.618],
+ [-72.635, -66.618],
+ [-83.458, -55.795],
+ [-83.458, -27.858],
+ [-83.458, 4.259],
+ [-83.458, 56.537],
+ [-73.377, 66.618],
+ [73.378, 66.618],
+ [83.458, 56.537],
+ [83.458, -27.858]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.956862807274, 0.572549045086, 0.627451002598, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [-9, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.567, 0],
+ [0, 0],
+ [0, 5.956],
+ [0, 0],
+ [5.977, 0],
+ [0, 0],
+ [0, -5.977],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-5.567, 0],
+ [0, 0],
+ [0, 5.567],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-5.956, 0],
+ [0, 0],
+ [0, -5.977],
+ [0, 0],
+ [-5.977, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 5.567],
+ [0, 0],
+ [5.567, 0],
+ [0, 0],
+ [0, -5.567]
+ ],
+ "v": [
+ [73.378, -37.939],
+ [-11.722, -37.939],
+ [-22.506, -48.723],
+ [-22.506, -55.795],
+ [-33.329, -66.618],
+ [-72.635, -66.618],
+ [-83.458, -55.795],
+ [-83.458, -27.859],
+ [-83.458, 4.259],
+ [-83.458, 56.537],
+ [-73.378, 66.618],
+ [73.378, 66.618],
+ [83.458, 56.537],
+ [83.458, -27.859]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.949019610882, 0.51372551918, 0.57647061348, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 3,
+ "ty": 4,
+ "nm": "OBJECTS 11",
+ "parent": 4,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [29.68, 88.318, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [
+ {
+ "i": [
+ [10.91, -0.656],
+ [0, 0],
+ [0, 0],
+ [0, 12.841],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [11.432, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 12.418]
+ ],
+ "v": [
+ [-60.014, 16.006],
+ [-60.014, 16.041],
+ [39.314, 16.041],
+ [60.014, -7.21],
+ [60.014, -16.041],
+ [-40.437, -16.041],
+ [-40.437, -7.21]
+ ],
+ "c": true
+ }
+ ]
+ },
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 75,
+ "s": [
+ {
+ "i": [
+ [10.91, -0.656],
+ [0, 0],
+ [0, 0],
+ [0, 12.841],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [11.432, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 12.418]
+ ],
+ "v": [
+ [-60.014, 16.006],
+ [-60.014, 16.041],
+ [39.314, 16.041],
+ [59.764, -3.46],
+ [59.804, -3.791],
+ [-40.648, -3.791],
+ [-40.687, -3.46]
+ ],
+ "c": true
+ }
+ ]
+ },
+ {
+ "t": 150,
+ "s": [
+ {
+ "i": [
+ [10.91, -0.656],
+ [0, 0],
+ [0, 0],
+ [0, 12.841],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [11.432, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 12.418]
+ ],
+ "v": [
+ [-60.014, 16.006],
+ [-60.014, 16.041],
+ [39.314, 16.041],
+ [60.014, -7.21],
+ [60.014, -16.041],
+ [-40.437, -16.041],
+ [-40.437, -7.21]
+ ],
+ "c": true
+ }
+ ]
+ }
+ ],
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.345098048449, 0.35686275363, 0.686274528503, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [
+ {
+ "i": [
+ [12.254, -0.656],
+ [0, 0],
+ [0, 0],
+ [0, 12.841],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [12.841, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 12.418]
+ ],
+ "v": [
+ [-74.41, 16.006],
+ [-74.41, 16.041],
+ [37.159, 16.041],
+ [60.41, -7.21],
+ [60.41, -16.041],
+ [-52.421, -16.041],
+ [-52.421, -7.21]
+ ],
+ "c": true
+ }
+ ]
+ },
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 75,
+ "s": [
+ {
+ "i": [
+ [12.254, -0.656],
+ [0, 0],
+ [0, 0],
+ [0, 12.841],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [12.841, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 12.418]
+ ],
+ "v": [
+ [-74.41, 16.006],
+ [-74.41, 16.041],
+ [37.159, 16.041],
+ [60.16, -3.46],
+ [60.199, -3.791],
+ [-52.631, -3.791],
+ [-52.671, -3.46]
+ ],
+ "c": true
+ }
+ ]
+ },
+ {
+ "t": 150,
+ "s": [
+ {
+ "i": [
+ [12.254, -0.656],
+ [0, 0],
+ [0, 0],
+ [0, 12.841],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [12.841, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 12.418]
+ ],
+ "v": [
+ [-74.41, 16.006],
+ [-74.41, 16.041],
+ [37.159, 16.041],
+ [60.41, -7.21],
+ [60.41, -16.041],
+ [-52.421, -16.041],
+ [-52.421, -7.21]
+ ],
+ "c": true
+ }
+ ]
+ }
+ ],
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.380392193794, 0.380392193794, 0.709803938866, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 2",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [7, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 4,
+ "ty": 4,
+ "nm": "OBJECTS 8",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [465.221, 449.154, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 75,
+ "s": [465.221, 436.154, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ { "t": 150, "s": [465.221, 449.154, 0] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.553, 0]
+ ],
+ "v": [
+ [-40.11, -1],
+ [40.11, -1]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-40.094, 16.875],
+ [-11.731, 16.875]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.553, 0]
+ ],
+ "v": [
+ [4.019, 16.875],
+ [40.125, 16.875]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.553, 0]
+ ],
+ "v": [
+ [-40.064, 33.75],
+ [40.156, 33.75]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-40.002, 48.125],
+ [13.269, 48.125]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 5,
+ "ty": "sh",
+ "ix": 6,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.553, 0]
+ ],
+ "v": [
+ [23.144, 48.125],
+ [40.217, 48.125]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 6",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 6,
+ "ty": "sh",
+ "ix": 7,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-40.064, 65],
+ [-24.856, 65]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 7",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 7,
+ "ty": "sh",
+ "ix": 8,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.553, 0]
+ ],
+ "v": [
+ [-17.231, 65],
+ [40.156, 65]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 8",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 8,
+ "ty": "sh",
+ "ix": 9,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.553, 0]
+ ],
+ "v": [
+ [-40.127, 84.25],
+ [40.092, 84.25]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 9",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 9,
+ "ty": "sh",
+ "ix": 10,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-40.129, 101],
+ [-0.481, 101]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 10",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 10,
+ "ty": "sh",
+ "ix": 11,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.552, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.553, 0]
+ ],
+ "v": [
+ [-40.164, 117.875],
+ [40.055, 117.875]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 11",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "tm",
+ "s": { "a": 0, "k": 0, "ix": 1 },
+ "e": { "a": 0, "k": 80, "ix": 2 },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [117]
+ },
+ { "t": 150, "s": [1197] }
+ ],
+ "ix": 3
+ },
+ "m": 2,
+ "ix": 12,
+ "nm": "Trim Paths 1",
+ "mn": "ADBE Vector Filter - Trim",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 2.5, "ix": 5 },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [7.481, -64.58],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 75,
+ "s": [7.481, -77.58],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ { "t": 150, "s": [7.481, -64.58] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 13",
+ "np": 13,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.609, 0],
+ [0, 0],
+ [0, -1.09],
+ [0, 0],
+ [8.168, 0],
+ [0, 0],
+ [0, 16.931],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.09, 0],
+ [0, 0],
+ [0, 8.168],
+ [0, 0],
+ [-16.93, 0],
+ [0, 0],
+ [0, -0.609]
+ ],
+ "v": [
+ [-62.181, -104.359],
+ [61.31, -104.359],
+ [63.283, -102.385],
+ [63.283, 89.57],
+ [48.494, 104.359],
+ [-32.628, 104.359],
+ [-63.283, 73.703],
+ [-63.283, -103.256]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.57647061348, 0.588235318661, 0.811764776707, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [6, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-3.649, 0],
+ [0, 0],
+ [0, -2.571],
+ [0, 0],
+ [8.869, 0],
+ [0, 0],
+ [0, 18.899],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [2.571, 0],
+ [0, 0],
+ [0, 8.869],
+ [0, 0],
+ [-18.899, 0],
+ [0, 0],
+ [0, -3.649]
+ ],
+ "v": [
+ [-62.845, -104.359],
+ [64.797, -104.359],
+ [69.452, -99.704],
+ [69.452, 88.3],
+ [53.394, 104.359],
+ [-35.233, 104.359],
+ [-69.452, 70.139],
+ [-69.452, -97.751]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.780392229557, 0.780392229557, 0.937254965305, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 5,
+ "ty": 4,
+ "nm": "OBJECTS 15",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.33], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.33], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 51,
+ "s": [-11]
+ },
+ { "t": 133, "s": [0] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [594.07, 517.85, 0], "ix": 2 },
+ "a": { "a": 0, "k": [594.07, 517.85, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.236, 0],
+ [0.031, 0.006],
+ [0, 0],
+ [-0.05, 0.272],
+ [-0.275, -0.054],
+ [0, 0],
+ [0.05, -0.272]
+ ],
+ "o": [
+ [-0.03, 0],
+ [0, 0],
+ [-0.271, -0.05],
+ [0.051, -0.272],
+ [0, 0],
+ [0.271, 0.05],
+ [-0.045, 0.241]
+ ],
+ "v": [
+ [9.996, 2.343],
+ [9.904, 2.335],
+ [-10.085, -1.35],
+ [-10.487, -1.932],
+ [-9.904, -2.333],
+ [10.085, 1.351],
+ [10.487, 1.934]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [563.027, 439.315], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.061, 0],
+ [0.395, 0.073],
+ [0, 0],
+ [-0.746, 4.051],
+ [0, 0],
+ [-0.809, -0.152],
+ [0.149, -0.815],
+ [0, 0],
+ [-2.424, -0.447],
+ [0, 0],
+ [-0.347, 1.885],
+ [0, 0],
+ [1.944, 0.358],
+ [0, 0],
+ [0.382, -2.064],
+ [0, 0],
+ [0.805, 0.15],
+ [-0.15, 0.814],
+ [0, 0],
+ [-3.689, -0.682],
+ [0, 0],
+ [0.657, -3.571],
+ [0, 0]
+ ],
+ "o": [
+ [-0.388, 0],
+ [0, 0],
+ [-4.05, -0.747],
+ [0, 0],
+ [0.15, -0.815],
+ [0.815, 0.15],
+ [0, 0],
+ [-0.447, 2.424],
+ [0, 0],
+ [1.885, 0.35],
+ [0, 0],
+ [0.358, -1.944],
+ [0, 0],
+ [-2.072, -0.381],
+ [0, 0],
+ [-0.151, 0.816],
+ [-0.814, -0.15],
+ [0, 0],
+ [0.683, -3.692],
+ [0, 0],
+ [3.571, 0.658],
+ [0, 0],
+ [-0.575, 3.116]
+ ],
+ "v": [
+ [-1.645, 19.875],
+ [-2.821, 19.767],
+ [-3.584, 19.626],
+ [-9.576, 10.925],
+ [-7.652, 0.487],
+ [-5.905, -0.716],
+ [-4.701, 1.031],
+ [-6.625, 11.469],
+ [-3.04, 16.676],
+ [-2.277, 16.816],
+ [1.769, 14.028],
+ [6.64, -12.394],
+ [3.764, -16.57],
+ [2.459, -16.811],
+ [-1.976, -13.756],
+ [-2.096, -13.105],
+ [-3.843, -11.901],
+ [-5.047, -13.648],
+ [-4.927, -14.3],
+ [3.002, -19.761],
+ [4.307, -19.52],
+ [9.591, -11.85],
+ [4.72, 14.572]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.243137255311, 0.278431385756, 0.607843160629, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [569.461, 443.971], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.057, -0.195],
+ [0, 0],
+ [0.188, -1.018]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0.195, -1.057],
+ [0, 0],
+ [1.018, 0.188],
+ [0, 0]
+ ],
+ "v": [
+ [27.043, 8.481],
+ [-28.048, -1.674],
+ [-27.087, -6.887],
+ [-24.821, -8.448],
+ [26.512, 1.014],
+ [28.017, 3.199]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.92549020052, 0.945098042488, 0.96862745285, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [580.45, 438.35], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 7, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.089, 0.201],
+ [0, 0],
+ [-0.201, 1.089],
+ [0, 0],
+ [-1.089, -0.201],
+ [0, 0],
+ [0.201, -1.089],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.089, -0.201],
+ [0, 0],
+ [0.201, -1.089],
+ [0, 0],
+ [1.089, 0.201],
+ [0, 0],
+ [-0.201, 1.089]
+ ],
+ "v": [
+ [20.176, 33.999],
+ [-30.972, 24.571],
+ [-32.58, 22.237],
+ [-22.511, -32.391],
+ [-20.176, -33.999],
+ [30.972, -24.571],
+ [32.58, -22.237],
+ [22.511, 32.391]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.349019616842, 0.603921592236, 0.949019610882, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [575.863, 463.912], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.089, 0.201],
+ [0, 0],
+ [-0.201, 1.089],
+ [0, 0],
+ [-1.089, -0.201],
+ [0, 0],
+ [0.201, -1.089],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.089, -0.201],
+ [0, 0],
+ [0.201, -1.089],
+ [0, 0],
+ [1.089, 0.201],
+ [0, 0],
+ [-0.201, 1.089]
+ ],
+ "v": [
+ [21.145, 35.766],
+ [-32.507, 25.876],
+ [-34.115, 23.542],
+ [-23.479, -34.158],
+ [-21.145, -35.766],
+ [32.508, -25.876],
+ [34.115, -23.542],
+ [23.479, 34.158]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.243137255311, 0.278431385756, 0.607843160629, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [576.866, 465.495], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 14, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [565.616, 432.495], "ix": 2 },
+ "a": { "a": 0, "k": [565.616, 432.495], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ { "t": 5, "s": [0] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.55, -0.099],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.543, 0.1]
+ ],
+ "v": [
+ [-15.476, -3.869],
+ [15.839, 1.902]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.55, -0.099],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.543, 0.1]
+ ],
+ "v": [
+ [-17.476, 7.068],
+ [13.839, 12.84]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.55, -0.099],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0.543, 0.1]
+ ],
+ "v": [
+ [-19.476, 18.006],
+ [11.839, 23.777]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "tm",
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.43], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [1], "y": [0] },
+ "t": 75,
+ "s": [0]
+ },
+ { "t": 150, "s": [100] }
+ ],
+ "ix": 1
+ },
+ "e": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.43], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [1] },
+ "o": { "x": [1], "y": [0] },
+ "t": 75,
+ "s": [100]
+ },
+ { "t": 150, "s": [100] }
+ ],
+ "ix": 2
+ },
+ "o": { "a": 0, "k": 0, "ix": 3 },
+ "m": 2,
+ "ix": 4,
+ "nm": "Trim Paths 1",
+ "mn": "ADBE Vector Filter - Trim",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 2.5, "ix": 5 },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [634.648, 467.253], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.672, -0.302],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-93.37, 43.771],
+ [-46.31, 52.445]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.672, -0.302],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.651, 0.304]
+ ],
+ "v": [
+ [-96.245, 59.146],
+ [-1.049, 76.692]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.672, -0.302],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-99.45, 77.771],
+ [-55.22, 85.923]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.651, 0.304]
+ ],
+ "v": [
+ [-46.479, 87.534],
+ [-4.254, 95.317]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.672, -0.302],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.651, 0.304]
+ ],
+ "v": [
+ [-102.78, 96.271],
+ [-7.584, 113.817]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 2.5, "ix": 5 },
+ "lc": 2,
+ "lj": 2,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tm",
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.43], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [1], "y": [0] },
+ "t": 75,
+ "s": [0]
+ },
+ { "t": 150, "s": [100] }
+ ],
+ "ix": 1
+ },
+ "e": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.43], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [1] },
+ "o": { "x": [1], "y": [0] },
+ "t": 75,
+ "s": [100]
+ },
+ { "t": 150, "s": [100] }
+ ],
+ "ix": 2
+ },
+ "o": { "a": 0, "k": 0, "ix": 3 },
+ "m": 2,
+ "ix": 7,
+ "nm": "Trim Paths 1",
+ "mn": "ADBE Vector Filter - Trim",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [634.648, 467.253], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 7,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.005, 0.185],
+ [0, 0],
+ [-0.185, 1.005],
+ [0, 0],
+ [-1.005, -0.185],
+ [0, 0],
+ [0.185, -1.005],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.005, -0.185],
+ [0, 0],
+ [0.185, -1.005],
+ [0, 0],
+ [1.005, 0.185],
+ [0, 0],
+ [-0.185, 1.005]
+ ],
+ "v": [
+ [46.514, 98.515],
+ [-78.583, 75.456],
+ [-80.068, 73.3],
+ [-48.671, -97.03],
+ [-46.514, -98.515],
+ [78.583, -75.456],
+ [80.068, -73.3],
+ [48.671, 97.03]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.96862745285, 0.662745118141, 0.705882370472, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [589.386, 525.766], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 39, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [48.335, 98.851],
+ [-80.403, 75.12],
+ [-48.335, -98.851],
+ [80.403, -75.12]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [589.386, 525.766], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.006, 0.185],
+ [0, 0],
+ [-0.185, 1.006],
+ [0, 0],
+ [-1.005, -0.185],
+ [0, 0],
+ [0.185, -1.005],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.005, -0.185],
+ [0, 0],
+ [0.185, -1.005],
+ [0, 0],
+ [1.005, 0.185],
+ [0, 0],
+ [-0.185, 1.005]
+ ],
+ "v": [
+ [46.514, 98.515],
+ [-78.583, 75.456],
+ [-80.068, 73.3],
+ [-48.671, -97.03],
+ [-46.514, -98.515],
+ [78.583, -75.456],
+ [80.068, -73.3],
+ [48.671, 97.03]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.243137255311, 0.278431385756, 0.607843160629, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [592.06, 530.557], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 14, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 6,
+ "ty": 4,
+ "nm": "OBJECTS 14",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.33], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 11,
+ "s": [-8]
+ },
+ {
+ "i": { "x": [0.33], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 83,
+ "s": [1]
+ },
+ { "t": 148, "s": [-8] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [598.964, 525.362, 0], "ix": 2 },
+ "a": { "a": 0, "k": [598.964, 525.362, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.88, 0.521],
+ [0, 0],
+ [-0.521, 0.88],
+ [0, 0],
+ [-0.88, -0.521],
+ [0, 0],
+ [0.521, -0.88],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.879, -0.521],
+ [0, 0],
+ [0.521, -0.88],
+ [0, 0],
+ [0.88, 0.521],
+ [0, 0],
+ [-0.521, 0.88]
+ ],
+ "v": [
+ [9.601, 108.52],
+ [-99.818, 43.647],
+ [-100.467, 41.111],
+ [-12.137, -107.872],
+ [-9.601, -108.52],
+ [99.818, -43.647],
+ [100.467, -41.111],
+ [12.137, 107.872]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.96862745285, 0.662745118141, 0.705882370472, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [597.543, 522.377], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.88, 0.521],
+ [0, 0],
+ [-0.521, 0.88],
+ [0, 0],
+ [-0.88, -0.521],
+ [0, 0],
+ [0.521, -0.88],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.879, -0.521],
+ [0, 0],
+ [0.521, -0.88],
+ [0, 0],
+ [0.88, 0.521],
+ [0, 0],
+ [-0.521, 0.88]
+ ],
+ "v": [
+ [9.601, 108.52],
+ [-99.818, 43.647],
+ [-100.467, 41.111],
+ [-12.137, -107.872],
+ [-9.601, -108.52],
+ [99.818, -43.647],
+ [100.467, -41.111],
+ [12.137, 107.872]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.243137255311, 0.278431385756, 0.607843160629, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [600.385, 528.346], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 14, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 7,
+ "ty": 4,
+ "nm": "OBJECTS 16",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [626.887, 381.595, 0], "ix": 2 },
+ "a": { "a": 0, "k": [626.887, 381.595, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.639, 0],
+ [0, -1.639],
+ [-1.639, 0],
+ [0, 1.639]
+ ],
+ "o": [
+ [-1.639, 0],
+ [0, 1.639],
+ [1.639, 0],
+ [0, -1.639]
+ ],
+ "v": [
+ [0, -2.972],
+ [-2.972, 0],
+ [0, 2.972],
+ [2.972, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.639, 0],
+ [0, -1.639],
+ [-1.639, 0],
+ [0, 1.639]
+ ],
+ "o": [
+ [-1.639, 0],
+ [0, 1.639],
+ [1.639, 0],
+ [0, -1.639]
+ ],
+ "v": [
+ [15.275, -2.972],
+ [12.304, 0],
+ [15.275, 2.972],
+ [18.247, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.639, 0],
+ [0, -1.639],
+ [-1.639, 0],
+ [0, 1.639]
+ ],
+ "o": [
+ [-1.639, 0],
+ [0, 1.639],
+ [1.639, 0],
+ [0, -1.639]
+ ],
+ "v": [
+ [31.661, -2.972],
+ [28.689, 0],
+ [31.661, 2.972],
+ [34.633, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [100]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 25,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 50,
+ "s": [100]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 75,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 100,
+ "s": [100]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 125,
+ "s": [0]
+ },
+ { "t": 150, "s": [100] }
+ ],
+ "ix": 5
+ },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [628.985, 403.692], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.19, 0],
+ [0, 2.19],
+ [-2.191, 0],
+ [0, -2.19]
+ ],
+ "o": [
+ [-2.191, 0],
+ [0, -2.19],
+ [2.19, 0],
+ [0, 2.19]
+ ],
+ "v": [
+ [-15.275, 3.972],
+ [-19.247, 0],
+ [-15.275, -3.972],
+ [-11.304, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.191, 0],
+ [0, 2.19],
+ [-2.19, 0],
+ [0, -2.19]
+ ],
+ "o": [
+ [-2.19, 0],
+ [0, -2.19],
+ [2.191, 0],
+ [0, 2.19]
+ ],
+ "v": [
+ [0, 3.972],
+ [-3.972, 0],
+ [0, -3.972],
+ [3.972, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.19, 0],
+ [0, 2.19],
+ [-2.19, 0],
+ [0, -2.19]
+ ],
+ "o": [
+ [-2.19, 0],
+ [0, -2.19],
+ [2.19, 0],
+ [0, 2.19]
+ ],
+ "v": [
+ [16.386, 3.972],
+ [12.414, 0],
+ [16.386, -3.972],
+ [20.357, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 2, "ix": 5 },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [644.261, 403.692], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.489, 0],
+ [0, 0],
+ [0, -2.489],
+ [0, 0],
+ [2.489, 0],
+ [0, 0],
+ [0, 2.489],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [2.489, 0],
+ [0, 0],
+ [0, 2.489],
+ [0, 0],
+ [-2.489, 0],
+ [0, 0],
+ [0, -2.489]
+ ],
+ "v": [
+ [602.768, 386.506],
+ [685.144, 386.506],
+ [689.668, 391.031],
+ [689.668, 416.265],
+ [685.144, 420.79],
+ [602.768, 420.79],
+ [598.244, 416.265],
+ [598.244, 391.031]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.57647061348, 0.572549045086, 0.874509871006, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [643.956, 403.648], "ix": 2 },
+ "a": { "a": 0, "k": [643.956, 403.648], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": -27,
+ "s": [588.956, 403.648],
+ "to": [9.167, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 11,
+ "s": [643.956, 403.648],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 48,
+ "s": [588.956, 403.648],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 86,
+ "s": [643.956, 403.648],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 123,
+ "s": [588.956, 403.648],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 161,
+ "s": [643.956, 403.648],
+ "to": [0, 0],
+ "ti": [9.167, 0]
+ },
+ { "t": 198, "s": [588.956, 403.648] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [643.956, 403.648], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.841, 0],
+ [0, 0],
+ [0, 1.841],
+ [0, 0],
+ [-1.841, 0],
+ [0, 0],
+ [0, -1.841],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.841, 0],
+ [0, 0],
+ [0, -1.841],
+ [0, 0],
+ [1.841, 0],
+ [0, 0],
+ [0, 1.841]
+ ],
+ "v": [
+ [37.194, 16.559],
+ [-37.195, 16.559],
+ [-40.527, 13.226],
+ [-40.527, -13.226],
+ [-37.195, -16.559],
+ [37.194, -16.559],
+ [40.527, -13.226],
+ [40.527, 13.226]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.96862745285, 0.662745118141, 0.705882370472, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": -30,
+ "s": [610.487, 376.948],
+ "to": [2.167, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 8,
+ "s": [623.487, 376.948],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 45,
+ "s": [610.487, 376.948],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 83,
+ "s": [623.487, 376.948],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 120,
+ "s": [610.487, 376.948],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 158,
+ "s": [623.487, 376.948],
+ "to": [0, 0],
+ "ti": [2.167, 0]
+ },
+ { "t": 195, "s": [610.487, 376.948] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.841, 0],
+ [0, 0],
+ [0, 1.841],
+ [0, 0],
+ [-1.841, 0],
+ [0, 0],
+ [0, -1.841],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.841, 0],
+ [0, 0],
+ [0, -1.841],
+ [0, 0],
+ [1.841, 0],
+ [0, 0],
+ [0, 1.841]
+ ],
+ "v": [
+ [26.59, 12.226],
+ [-26.59, 12.226],
+ [-29.923, 8.893],
+ [-29.923, -8.893],
+ [-26.59, -12.226],
+ [26.59, -12.226],
+ [29.923, -8.893],
+ [29.923, 8.893]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.349019616842, 0.603921592236, 0.949019610882, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": -33,
+ "s": [625.029, 354.627],
+ "to": [-5.167, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 5,
+ "s": [594.029, 354.627],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 42,
+ "s": [625.029, 354.627],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 80,
+ "s": [594.029, 354.627],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 117,
+ "s": [625.029, 354.627],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.21, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 155,
+ "s": [594.029, 354.627],
+ "to": [0, 0],
+ "ti": [-5.167, 0]
+ },
+ { "t": 192, "s": [625.029, 354.627] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 8,
+ "ty": 4,
+ "nm": "OBJECTS 17",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 66, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [533.031, 525.909, 0], "ix": 2 },
+ "a": { "a": 0, "k": [533.031, 525.909, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [16.7, 22.376],
+ [16.71, 22.376]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.303, 0],
+ [4.7, -3.508],
+ [-8.878, -11.896],
+ [-11.898, 8.876],
+ [0, 0],
+ [-1.033, 7.116],
+ [4.301, 5.763],
+ [7.116, 1.033]
+ ],
+ "o": [
+ [-5.761, 0],
+ [-11.895, 8.878],
+ [8.879, 11.896],
+ [0, 0],
+ [5.762, -4.301],
+ [1.034, -7.116],
+ [-4.301, -5.763],
+ [-1.312, -0.19]
+ ],
+ "v": [
+ [-0.057, -26.926],
+ [-16.102, -21.575],
+ [-21.575, 16.102],
+ [16.102, 21.574],
+ [16.102, 21.574],
+ [26.64, 3.87],
+ [21.574, -16.102],
+ [3.87, -26.641]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [6.016, 0],
+ [5.672, 7.598],
+ [-12.78, 9.538],
+ [-7.641, -1.112],
+ [-4.62, -6.191],
+ [1.11, -7.645],
+ [6.191, -4.62],
+ [0, 0]
+ ],
+ "o": [
+ [-8.824, 0],
+ [-9.537, -12.781],
+ [6.191, -4.619],
+ [7.645, 1.11],
+ [4.62, 6.191],
+ [-1.11, 7.645],
+ [0, 0],
+ [-5.181, 3.866]
+ ],
+ "v": [
+ [0.036, 28.909],
+ [-23.178, 17.298],
+ [-17.297, -23.178],
+ [4.157, -28.621],
+ [23.177, -17.297],
+ [28.62, 4.157],
+ [17.297, 23.177],
+ [17.297, 23.177]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [-5.145, -1.718],
+ [0, 0],
+ [0, 0],
+ [-3.193, -0.465],
+ [-0.464, 3.194],
+ [0, 0],
+ [0, 0],
+ [-4.846, 2.423],
+ [0, 0],
+ [0, 0],
+ [-1.548, -0.225],
+ [-1.254, 0.936],
+ [1.932, 2.586],
+ [0, 0],
+ [0, 0],
+ [-1.718, 5.147],
+ [0, 0],
+ [0, 0],
+ [-0.466, 3.193],
+ [3.193, 0.465],
+ [0, 0],
+ [0, 0],
+ [2.423, 4.845],
+ [0, 0],
+ [0, 0],
+ [1.931, 2.587],
+ [1.548, 0.225],
+ [1.254, -0.935],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [5.145, 1.717],
+ [0, 0],
+ [0, 0],
+ [0.935, 1.253],
+ [1.547, 0.225],
+ [0.465, -3.193],
+ [0, 0],
+ [0, 0],
+ [4.847, -2.423],
+ [0, 0],
+ [0, 0],
+ [1.547, 0.225],
+ [1.253, -0.936],
+ [0.225, -1.547],
+ [-0.936, -1.253],
+ [0, 0],
+ [0, 0],
+ [1.717, -5.146],
+ [0, 0],
+ [0, 0],
+ [1.253, -0.934],
+ [0.225, -1.547],
+ [-3.193, -0.464],
+ [0, 0],
+ [0, 0],
+ [-2.424, -4.848],
+ [0, 0],
+ [0, 0],
+ [0.225, -1.548],
+ [-0.936, -1.254],
+ [-1.547, -0.225],
+ [-1.254, 0.936]
+ ],
+ "o": [
+ [0, 0],
+ [3.956, 3.702],
+ [0, 0],
+ [0, 0],
+ [-0.464, 3.193],
+ [3.194, 0.463],
+ [0, 0],
+ [0, 0],
+ [5.422, -0.182],
+ [0, 0],
+ [0, 0],
+ [0.935, 1.253],
+ [1.549, 0.227],
+ [2.586, -1.931],
+ [0, 0],
+ [0, 0],
+ [3.701, -3.955],
+ [0, 0],
+ [0, 0],
+ [3.198, 0.461],
+ [0.463, -3.193],
+ [0, 0],
+ [0, 0],
+ [-0.182, -5.423],
+ [0, 0],
+ [0, 0],
+ [2.587, -1.93],
+ [-0.935, -1.253],
+ [-1.547, -0.227],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-3.956, -3.703],
+ [0, 0],
+ [0, 0],
+ [0.225, -1.547],
+ [-0.936, -1.253],
+ [-3.203, -0.466],
+ [0, 0],
+ [0, 0],
+ [-5.421, 0.182],
+ [0, 0],
+ [0, 0],
+ [-0.935, -1.254],
+ [-1.546, -0.223],
+ [-1.254, 0.935],
+ [-0.225, 1.548],
+ [0, 0],
+ [0, 0],
+ [-3.703, 3.956],
+ [0, 0],
+ [0, 0],
+ [-1.545, -0.222],
+ [-1.253, 0.935],
+ [-0.464, 3.194],
+ [0, 0],
+ [0, 0],
+ [0.182, 5.421],
+ [0, 0],
+ [0, 0],
+ [-1.252, 0.935],
+ [-0.225, 1.547],
+ [0.935, 1.252],
+ [1.546, 0.224],
+ [0, 0]
+ ],
+ "v": [
+ [-26.252, 26.896],
+ [-25.641, 27.467],
+ [-11.923, 35.634],
+ [-11.13, 35.899],
+ [-12.325, 44.121],
+ [-7.373, 50.755],
+ [-0.739, 45.804],
+ [0.456, 37.581],
+ [1.292, 37.553],
+ [16.766, 33.627],
+ [17.514, 33.253],
+ [22.484, 39.913],
+ [26.334, 42.204],
+ [30.676, 41.102],
+ [31.865, 32.911],
+ [26.896, 26.252],
+ [27.467, 25.64],
+ [35.634, 11.922],
+ [35.899, 11.129],
+ [44.121, 12.324],
+ [50.755, 7.373],
+ [45.804, 0.738],
+ [37.581, -0.456],
+ [37.553, -1.292],
+ [33.628, -16.766],
+ [33.254, -17.514],
+ [39.912, -22.485],
+ [41.102, -30.676],
+ [37.253, -32.967],
+ [32.91, -31.866],
+ [32.911, -31.866],
+ [26.252, -26.896],
+ [25.64, -27.467],
+ [11.922, -35.634],
+ [11.129, -35.899],
+ [12.324, -44.122],
+ [11.222, -48.463],
+ [7.373, -50.755],
+ [0.738, -45.804],
+ [-0.456, -37.581],
+ [-1.292, -37.554],
+ [-16.766, -33.628],
+ [-17.514, -33.254],
+ [-22.485, -39.913],
+ [-26.333, -42.205],
+ [-30.675, -41.102],
+ [-32.967, -37.253],
+ [-31.866, -32.911],
+ [-26.896, -26.252],
+ [-27.467, -25.641],
+ [-35.634, -11.923],
+ [-35.899, -11.13],
+ [-44.121, -12.325],
+ [-48.463, -11.222],
+ [-50.755, -7.373],
+ [-45.804, -0.739],
+ [-37.581, 0.456],
+ [-37.554, 1.292],
+ [-33.627, 16.766],
+ [-33.253, 17.514],
+ [-39.913, 22.484],
+ [-42.204, 26.334],
+ [-41.102, 30.676],
+ [-37.253, 32.967],
+ [-32.911, 31.865]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.835, -0.001],
+ [0.381, 0.056],
+ [-0.623, 4.284],
+ [0, 0],
+ [3.821, 3.428],
+ [0, 0],
+ [2.076, 0.303],
+ [1.255, 1.682],
+ [-3.471, 2.59],
+ [0, 0],
+ [0.278, 5.131],
+ [0, 0],
+ [-0.623, 4.285],
+ [-1.682, 1.255],
+ [-2.075, -0.301],
+ [0, 0],
+ [-3.429, 3.821],
+ [0, 0],
+ [-0.302, 2.075],
+ [-1.682, 1.255],
+ [-2.076, -0.301],
+ [-1.255, -1.682],
+ [0, 0],
+ [-5.13, 0.278],
+ [0, 0],
+ [-4.273, -0.626],
+ [-1.255, -1.682],
+ [0.302, -2.075],
+ [0, 0],
+ [-3.821, -3.429],
+ [0, 0],
+ [-2.592, -3.473],
+ [3.471, -2.59],
+ [0, 0],
+ [-0.278, -5.132],
+ [0, 0],
+ [0.622, -4.284],
+ [4.275, 0.627],
+ [0, 0],
+ [3.428, -3.82],
+ [0, 0],
+ [3.47, -2.592],
+ [2.076, 0.301],
+ [1.255, 1.682],
+ [0, 0],
+ [5.132, -0.278],
+ [0, 0]
+ ],
+ "o": [
+ [-0.374, 0],
+ [-4.285, -0.623],
+ [0, 0],
+ [-4.841, -1.727],
+ [0, 0],
+ [-1.682, 1.255],
+ [-2.076, -0.301],
+ [-2.59, -3.471],
+ [0, 0],
+ [-2.2, -4.64],
+ [0, 0],
+ [-4.285, -0.622],
+ [0.301, -2.076],
+ [1.682, -1.254],
+ [0, 0],
+ [1.727, -4.841],
+ [0, 0],
+ [-1.254, -1.682],
+ [0.302, -2.076],
+ [1.681, -1.255],
+ [2.076, 0.302],
+ [0, 0],
+ [4.639, -2.199],
+ [0, 0],
+ [0.623, -4.286],
+ [2.076, 0.301],
+ [1.255, 1.681],
+ [0, 0],
+ [4.841, 1.727],
+ [0, 0],
+ [3.468, -2.589],
+ [2.59, 3.47],
+ [0, 0],
+ [2.199, 4.638],
+ [0, 0],
+ [4.285, 0.623],
+ [-0.623, 4.286],
+ [0, 0],
+ [-1.728, 4.842],
+ [0, 0],
+ [2.59, 3.469],
+ [-1.682, 1.254],
+ [-2.076, -0.302],
+ [0, 0],
+ [-4.639, 2.199],
+ [0, 0],
+ [-0.566, 3.904]
+ ],
+ "v": [
+ [-6.527, 52.817],
+ [-7.661, 52.734],
+ [-14.303, 43.834],
+ [-13.348, 37.257],
+ [-26.39, 29.495],
+ [-31.715, 33.468],
+ [-37.54, 34.946],
+ [-42.705, 31.872],
+ [-41.109, 20.88],
+ [-35.784, 16.907],
+ [-39.516, 2.196],
+ [-46.091, 1.24],
+ [-52.734, -7.661],
+ [-49.66, -12.826],
+ [-43.834, -14.303],
+ [-37.257, -13.348],
+ [-29.495, -26.39],
+ [-33.469, -31.714],
+ [-34.947, -37.54],
+ [-31.871, -42.706],
+ [-26.046, -44.184],
+ [-20.881, -41.109],
+ [-16.907, -35.785],
+ [-2.197, -39.516],
+ [-1.241, -46.091],
+ [7.66, -52.734],
+ [12.825, -49.66],
+ [14.302, -43.834],
+ [13.347, -37.257],
+ [26.389, -29.495],
+ [31.714, -33.469],
+ [42.706, -31.872],
+ [41.108, -20.881],
+ [35.784, -16.907],
+ [39.515, -2.197],
+ [46.091, -1.241],
+ [52.734, 7.66],
+ [43.834, 14.302],
+ [37.257, 13.347],
+ [29.495, 26.389],
+ [33.468, 31.714],
+ [31.873, 42.706],
+ [26.046, 44.183],
+ [20.88, 41.108],
+ [16.907, 35.784],
+ [2.196, 39.515],
+ [1.24, 46.091]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 6,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [673.486, 574.02], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [360]
+ },
+ { "t": 150, "s": [0] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.127, 0],
+ [1.968, -0.623],
+ [2.433, -4.689],
+ [-1.595, -5.035],
+ [-4.688, -2.433],
+ [-5.032, 1.594],
+ [-2.433, 4.689],
+ [1.595, 5.035],
+ [4.689, 2.433]
+ ],
+ "o": [
+ [-2.008, 0],
+ [-5.036, 1.595],
+ [-2.434, 4.688],
+ [1.595, 5.036],
+ [4.689, 2.434],
+ [5.036, -1.595],
+ [2.434, -4.688],
+ [-1.595, -5.036],
+ [-2.855, -1.482]
+ ],
+ "v": [
+ [0.024, -19.784],
+ [-5.968, -18.852],
+ [-17.55, -9.109],
+ [-18.851, 5.969],
+ [-9.108, 17.551],
+ [5.97, 18.852],
+ [17.552, 9.109],
+ [18.853, -5.969],
+ [9.11, -17.551]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.21, 0],
+ [3.145, 1.632],
+ [1.756, 5.545],
+ [-2.679, 5.163],
+ [-5.545, 1.756],
+ [-5.164, -2.679],
+ [-1.756, -5.544],
+ [2.68, -5.162],
+ [5.545, -1.756]
+ ],
+ "o": [
+ [-3.444, 0],
+ [-5.162, -2.68],
+ [-1.756, -5.545],
+ [2.68, -5.162],
+ [5.546, -1.757],
+ [5.162, 2.68],
+ [1.756, 5.545],
+ [-2.68, 5.162],
+ [-2.167, 0.686]
+ ],
+ "v": [
+ [-0.024, 21.785],
+ [-10.03, 19.327],
+ [-20.757, 6.574],
+ [-19.326, -10.031],
+ [-6.573, -20.758],
+ [10.032, -19.327],
+ [20.76, -6.574],
+ [19.328, 10.031],
+ [6.575, 20.758]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [-0.972, -0.504],
+ [-1.045, 0.33],
+ [-0.505, 0.972],
+ [0.33, 1.044],
+ [0, 0],
+ [0, 0],
+ [-2.439, 3.165],
+ [0, 0],
+ [0, 0],
+ [-1.045, 0.33],
+ [-0.504, 0.973],
+ [2.006, 1.042],
+ [0, 0],
+ [0, 0],
+ [0.514, 3.965],
+ [0, 0],
+ [0, 0],
+ [0.682, 2.154],
+ [0.973, 0.505],
+ [1.044, -0.33],
+ [0, 0],
+ [0, 0],
+ [3.166, 2.438],
+ [0, 0],
+ [0, 0],
+ [2.006, 1.041],
+ [1.04, -2.006],
+ [0, 0],
+ [0, 0],
+ [3.966, -0.512],
+ [0, 0],
+ [0, 0],
+ [0.972, 0.504],
+ [1.047, -0.33],
+ [-0.682, -2.155],
+ [0, 0],
+ [0, 0],
+ [2.438, -3.165],
+ [0, 0],
+ [0, 0],
+ [1.044, -0.33],
+ [0.504, -0.973],
+ [-0.33, -1.044],
+ [-0.973, -0.504],
+ [0, 0],
+ [0, 0],
+ [-0.514, -3.965],
+ [0, 0],
+ [0, 0],
+ [0.504, -0.972],
+ [-0.33, -1.044],
+ [-2.154, 0.684],
+ [0, 0],
+ [0, 0],
+ [-3.165, -2.438],
+ [0, 0],
+ [0, 0],
+ [-0.33, -1.044],
+ [-0.973, -0.504],
+ [-1.041, 2.005],
+ [0, 0],
+ [0, 0],
+ [-3.962, 0.512]
+ ],
+ "o": [
+ [0, 0],
+ [0.331, 1.044],
+ [0.972, 0.505],
+ [1.044, -0.331],
+ [0.505, -0.972],
+ [0, 0],
+ [0, 0],
+ [3.539, -1.862],
+ [0, 0],
+ [0, 0],
+ [0.972, 0.505],
+ [1.044, -0.331],
+ [1.041, -2.005],
+ [0, 0],
+ [0, 0],
+ [1.186, -3.816],
+ [0, 0],
+ [0, 0],
+ [2.154, -0.683],
+ [-0.331, -1.044],
+ [-0.97, -0.505],
+ [0, 0],
+ [0, 0],
+ [-1.862, -3.539],
+ [0, 0],
+ [0, 0],
+ [1.041, -2.006],
+ [-2.009, -1.044],
+ [0, 0],
+ [0, 0],
+ [-3.815, -1.186],
+ [0, 0],
+ [0, 0],
+ [-0.33, -1.044],
+ [-0.972, -0.505],
+ [-2.154, 0.683],
+ [0, 0],
+ [0, 0],
+ [-3.539, 1.863],
+ [0, 0],
+ [0, 0],
+ [-0.971, -0.505],
+ [-1.044, 0.331],
+ [-0.505, 0.972],
+ [0.331, 1.044],
+ [0, 0],
+ [0, 0],
+ [-1.186, 3.816],
+ [0, 0],
+ [0, 0],
+ [-1.044, 0.33],
+ [-0.505, 0.972],
+ [0.683, 2.154],
+ [0, 0],
+ [0, 0],
+ [1.862, 3.539],
+ [0, 0],
+ [0, 0],
+ [-0.505, 0.972],
+ [0.331, 1.044],
+ [2.006, 1.042],
+ [0, 0],
+ [0, 0],
+ [3.816, 1.186],
+ [0, 0]
+ ],
+ "v": [
+ [4.368, 27.368],
+ [6.298, 33.466],
+ [8.318, 35.867],
+ [11.444, 36.136],
+ [13.845, 34.117],
+ [14.115, 30.991],
+ [12.183, 24.893],
+ [12.923, 24.504],
+ [21.931, 16.927],
+ [22.441, 16.265],
+ [28.119, 19.211],
+ [31.245, 19.481],
+ [33.645, 17.461],
+ [31.895, 11.934],
+ [26.217, 8.988],
+ [26.465, 8.189],
+ [27.477, -3.536],
+ [27.369, -4.367],
+ [33.467, -6.297],
+ [36.138, -11.443],
+ [34.118, -13.844],
+ [30.993, -14.114],
+ [24.895, -12.182],
+ [24.505, -12.922],
+ [16.928, -21.93],
+ [16.265, -22.44],
+ [19.212, -28.118],
+ [17.462, -33.644],
+ [11.936, -31.894],
+ [8.989, -26.216],
+ [8.19, -26.464],
+ [-3.536, -27.476],
+ [-4.366, -27.368],
+ [-6.296, -33.466],
+ [-8.316, -35.867],
+ [-11.442, -36.137],
+ [-14.113, -30.991],
+ [-12.181, -24.894],
+ [-12.921, -24.504],
+ [-21.928, -16.927],
+ [-22.438, -16.264],
+ [-28.117, -19.211],
+ [-31.242, -19.481],
+ [-33.642, -17.46],
+ [-33.913, -14.335],
+ [-31.892, -11.935],
+ [-26.215, -8.988],
+ [-26.463, -8.189],
+ [-27.475, 3.537],
+ [-27.367, 4.367],
+ [-33.465, 6.298],
+ [-35.866, 8.317],
+ [-36.135, 11.443],
+ [-30.99, 14.114],
+ [-24.892, 12.182],
+ [-24.502, 12.923],
+ [-16.926, 21.929],
+ [-16.264, 22.439],
+ [-19.209, 28.118],
+ [-19.48, 31.243],
+ [-17.459, 33.643],
+ [-11.933, 31.893],
+ [-8.986, 26.216],
+ [-8.187, 26.465],
+ [3.538, 27.476]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.619, 0],
+ [0.881, 0.457],
+ [0.492, 1.554],
+ [0, 0],
+ [3.572, 1.003],
+ [0, 0],
+ [2.984, 1.549],
+ [0.492, 1.554],
+ [-0.751, 1.446],
+ [0, 0],
+ [1.819, 3.237],
+ [0, 0],
+ [1.015, 3.206],
+ [-0.75, 1.446],
+ [-1.553, 0.491],
+ [0, 0],
+ [-1.003, 3.573],
+ [0, 0],
+ [0.492, 1.554],
+ [-0.751, 1.446],
+ [-1.554, 0.492],
+ [-1.446, -0.75],
+ [0, 0],
+ [-3.237, 1.82],
+ [0, 0],
+ [-3.206, 1.016],
+ [-1.446, -0.75],
+ [-0.491, -1.553],
+ [0, 0],
+ [-3.573, -1.003],
+ [0, 0],
+ [-2.988, -1.55],
+ [1.548, -2.985],
+ [0, 0],
+ [-1.819, -3.237],
+ [0, 0],
+ [-1.446, -0.75],
+ [-0.492, -1.554],
+ [3.206, -1.016],
+ [0, 0],
+ [1.003, -3.573],
+ [0, 0],
+ [1.549, -2.984],
+ [1.554, -0.491],
+ [1.448, 0.75],
+ [0, 0],
+ [3.237, -1.819],
+ [0, 0],
+ [0.75, -1.445],
+ [1.554, -0.491]
+ ],
+ "o": [
+ [-0.964, 0],
+ [-1.445, -0.75],
+ [0, 0],
+ [-3.695, 0.377],
+ [0, 0],
+ [-1.55, 2.984],
+ [-1.446, -0.75],
+ [-0.492, -1.553],
+ [0, 0],
+ [-2.876, -2.344],
+ [0, 0],
+ [-3.207, 1.016],
+ [-0.492, -1.553],
+ [0.751, -1.446],
+ [0, 0],
+ [-0.376, -3.694],
+ [0, 0],
+ [-1.446, -0.75],
+ [-0.492, -1.553],
+ [0.75, -1.445],
+ [1.552, -0.491],
+ [0, 0],
+ [2.344, -2.875],
+ [0, 0],
+ [-1.015, -3.206],
+ [1.551, -0.492],
+ [1.446, 0.751],
+ [0, 0],
+ [3.695, -0.378],
+ [0, 0],
+ [1.549, -2.984],
+ [2.983, 1.55],
+ [0, 0],
+ [2.876, 2.345],
+ [0, 0],
+ [1.554, -0.491],
+ [1.446, 0.751],
+ [1.015, 3.206],
+ [0, 0],
+ [0.376, 3.694],
+ [0, 0],
+ [2.984, 1.55],
+ [-0.75, 1.446],
+ [-1.552, 0.492],
+ [0, 0],
+ [-2.346, 2.876],
+ [0, 0],
+ [0.492, 1.553],
+ [-0.751, 1.446],
+ [-0.607, 0.192]
+ ],
+ "v": [
+ [10.199, 38.331],
+ [7.397, 37.642],
+ [4.392, 34.07],
+ [2.962, 29.555],
+ [-7.976, 28.612],
+ [-10.158, 32.815],
+ [-18.381, 35.419],
+ [-21.386, 31.846],
+ [-20.985, 27.196],
+ [-18.804, 22.993],
+ [-25.872, 14.59],
+ [-30.386, 16.02],
+ [-38.041, 12.047],
+ [-37.641, 7.396],
+ [-34.069, 4.391],
+ [-29.554, 2.962],
+ [-28.611, -7.978],
+ [-32.814, -10.16],
+ [-35.819, -13.732],
+ [-35.417, -18.382],
+ [-31.845, -21.387],
+ [-27.195, -20.987],
+ [-22.992, -18.805],
+ [-14.589, -25.873],
+ [-16.019, -30.387],
+ [-12.045, -38.043],
+ [-7.395, -37.642],
+ [-4.39, -34.07],
+ [-2.96, -29.555],
+ [7.979, -28.612],
+ [10.161, -32.816],
+ [18.384, -35.419],
+ [20.988, -27.196],
+ [18.806, -22.994],
+ [25.875, -14.59],
+ [30.389, -16.02],
+ [35.04, -15.619],
+ [38.044, -12.046],
+ [34.071, -4.391],
+ [29.556, -2.961],
+ [28.613, 7.978],
+ [32.817, 10.159],
+ [35.42, 18.382],
+ [31.848, 21.387],
+ [27.197, 20.986],
+ [22.995, 18.805],
+ [14.591, 25.873],
+ [16.021, 30.387],
+ [15.621, 35.038],
+ [12.047, 38.043]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 5,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [604.247, 625.836], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ { "t": 150, "s": [360] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [16.422, 1.254],
+ [-1.254, 16.422],
+ [-16.422, -1.254],
+ [1.254, -16.422]
+ ],
+ "o": [
+ [-16.422, -1.254],
+ [1.254, -16.422],
+ [16.422, 1.254],
+ [-1.254, 16.422]
+ ],
+ "v": [
+ [-2.27, 29.735],
+ [-29.735, -2.27],
+ [2.27, -29.735],
+ [29.735, 2.27]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.031, 0.308],
+ [0, 0],
+ [2.938, 4.996],
+ [0, 0],
+ [2.633, 3.068],
+ [3.068, -2.633],
+ [0, 0],
+ [5.831, 1.512],
+ [0, 0],
+ [4.031, 0.308],
+ [0, 0],
+ [0.308, -4.031],
+ [0, 0],
+ [4.997, -2.938],
+ [0, 0],
+ [3.068, -2.633],
+ [-2.633, -3.068],
+ [0, 0],
+ [1.512, -5.831],
+ [0, 0],
+ [0.308, -4.031],
+ [0, 0],
+ [-4.031, -0.308],
+ [0, 0],
+ [-2.937, -4.996],
+ [0, 0],
+ [-2.633, -3.068],
+ [-3.068, 2.633],
+ [0, 0],
+ [-5.831, -1.512],
+ [0, 0],
+ [-4.031, -0.308],
+ [0, 0],
+ [-0.308, 4.031],
+ [0, 0],
+ [-4.997, 2.938],
+ [0, 0],
+ [-3.068, 2.633],
+ [2.633, 3.068],
+ [0, 0],
+ [-1.512, 5.831],
+ [0, 0],
+ [-0.308, 4.031],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-0.609, -5.993],
+ [0, 0],
+ [3.068, -2.633],
+ [-2.633, -3.068],
+ [0, 0],
+ [-4.493, -3.662],
+ [0, 0],
+ [0.308, -4.031],
+ [0, 0],
+ [-4.031, -0.308],
+ [0, 0],
+ [-5.993, 0.609],
+ [0, 0],
+ [-2.633, -3.068],
+ [-3.068, 2.633],
+ [0, 0],
+ [-3.662, 4.493],
+ [0, 0],
+ [-4.031, -0.308],
+ [0, 0],
+ [-0.308, 4.031],
+ [0, 0],
+ [0.609, 5.993],
+ [0, 0],
+ [-3.068, 2.633],
+ [2.633, 3.068],
+ [0, 0],
+ [4.493, 3.662],
+ [0, 0],
+ [-0.308, 4.031],
+ [0, 0],
+ [4.031, 0.308],
+ [0, 0],
+ [5.993, -0.609],
+ [0, 0],
+ [2.633, 3.068],
+ [3.068, -2.633],
+ [0, 0],
+ [3.662, -4.492],
+ [0, 0],
+ [4.031, 0.308],
+ [0, 0],
+ [0.308, -4.031]
+ ],
+ "v": [
+ [48.944, -3.604],
+ [40.986, -4.212],
+ [35.537, -20.85],
+ [41.594, -26.048],
+ [42.382, -36.369],
+ [32.06, -37.157],
+ [26.003, -31.96],
+ [10.385, -39.872],
+ [10.993, -47.83],
+ [4.251, -55.686],
+ [4.251, -55.686],
+ [-3.604, -48.944],
+ [-4.212, -40.986],
+ [-20.85, -35.537],
+ [-26.048, -41.594],
+ [-36.37, -42.382],
+ [-37.158, -32.06],
+ [-31.96, -26.003],
+ [-39.872, -10.385],
+ [-47.83, -10.993],
+ [-55.686, -4.251],
+ [-55.686, -4.251],
+ [-48.944, 3.604],
+ [-40.986, 4.212],
+ [-35.537, 20.85],
+ [-41.594, 26.048],
+ [-42.382, 36.37],
+ [-32.06, 37.158],
+ [-26.003, 31.96],
+ [-10.385, 39.872],
+ [-10.993, 47.83],
+ [-4.251, 55.686],
+ [-4.251, 55.686],
+ [3.604, 48.944],
+ [4.212, 40.986],
+ [20.85, 35.537],
+ [26.048, 41.594],
+ [36.369, 42.382],
+ [37.157, 32.06],
+ [31.96, 26.003],
+ [39.872, 10.385],
+ [47.83, 10.993],
+ [55.686, 4.251],
+ [55.686, 4.251]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [395.468, 443.357], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [360]
+ },
+ { "t": 150, "s": [0] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 9,
+ "ty": 4,
+ "nm": "OBJECTS 18",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [426.779, 595.191, 0], "ix": 2 },
+ "a": { "a": 0, "k": [426.779, 595.191, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.382, -25.279],
+ [58.961, -25.229]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.385, -12.466],
+ [58.957, -12.416]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.391, 0.046],
+ [58.951, 0.096]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.404, 13.01],
+ [58.938, 13.06]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 6",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.43, 25.221],
+ [-16.154, 25.22]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 7",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "tm",
+ "s": { "a": 0, "k": 0, "ix": 1 },
+ "e": { "a": 0, "k": 91, "ix": 2 },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [220]
+ },
+ { "t": 150, "s": [1300] }
+ ],
+ "ix": 3
+ },
+ "m": 2,
+ "ix": 6,
+ "nm": "Trim Paths 1",
+ "mn": "ADBE Vector Filter - Trim",
+ "hd": false
+ },
+ {
+ "ind": 6,
+ "ty": "sh",
+ "ix": 7,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.495, 0],
+ [0, 0],
+ [0, 1.495],
+ [0, 0],
+ [-1.495, 0],
+ [0, 0],
+ [0, -1.495],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.495, 0],
+ [0, 0],
+ [0, -1.495],
+ [0, 0],
+ [1.495, 0],
+ [0, 0],
+ [0, 1.495]
+ ],
+ "v": [
+ [71.509, 39.929],
+ [-71.509, 39.929],
+ [-74.221, 37.217],
+ [-74.221, -37.217],
+ [-71.509, -39.929],
+ [71.509, -39.929],
+ [74.221, -37.217],
+ [74.221, 37.217]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 2.5, "ix": 5 },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [486.898, 641.529], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [91, 91], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 8,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.382, -25.279],
+ [58.961, -25.229]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.385, -12.466],
+ [58.957, -12.416]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.391, 0.046],
+ [58.951, 0.096]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.404, 13.01],
+ [58.938, 13.06]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 6",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.392, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.392, 0]
+ ],
+ "v": [
+ [-59.43, 25.221],
+ [-16.154, 25.22]
+ ],
+ "c": false
+ },
+ "ix": 2
+ },
+ "nm": "Path 7",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "tm",
+ "s": { "a": 0, "k": 0, "ix": 1 },
+ "e": { "a": 0, "k": 91, "ix": 2 },
+ "o": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [220]
+ },
+ { "t": 150, "s": [1300] }
+ ],
+ "ix": 3
+ },
+ "m": 2,
+ "ix": 6,
+ "nm": "Trim Paths 1",
+ "mn": "ADBE Vector Filter - Trim",
+ "hd": false
+ },
+ {
+ "ind": 6,
+ "ty": "sh",
+ "ix": 7,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.495, 0],
+ [0, 0],
+ [0, 1.495],
+ [0, 0],
+ [-1.495, 0],
+ [0, 0],
+ [0, -1.495],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.495, 0],
+ [0, 0],
+ [0, -1.495],
+ [0, 0],
+ [1.495, 0],
+ [0, 0],
+ [0, 1.495]
+ ],
+ "v": [
+ [71.509, 39.929],
+ [-71.509, 39.929],
+ [-74.221, 37.217],
+ [-74.221, -37.217],
+ [-71.509, -39.929],
+ [71.509, -39.929],
+ [74.221, -37.217],
+ [74.221, 37.217]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 3 },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 2.5, "ix": 5 },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [371.898, 556.529], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 8,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ }
+ ]
+ }
+ ],
+ "layers": [
+ {
+ "ddd": 0,
+ "ind": 1,
+ "ty": 3,
+ "nm": "Null 1",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 0, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [250, 250, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [86.5, 86.5, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 2,
+ "ty": 4,
+ "nm": "OBJECTS 2",
+ "parent": 1,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.16], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.16], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 18,
+ "s": [-19]
+ },
+ {
+ "i": { "x": [0.16], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 36,
+ "s": [13.224]
+ },
+ {
+ "i": { "x": [0.768], "y": [0.989] },
+ "o": { "x": [0.396], "y": [0] },
+ "t": 58,
+ "s": [-28.71]
+ },
+ {
+ "i": { "x": [0.738], "y": [1.109] },
+ "o": { "x": [0.4], "y": [-0.031] },
+ "t": 70,
+ "s": [22.487]
+ },
+ {
+ "i": { "x": [0.581], "y": [1] },
+ "o": { "x": [0.167], "y": [0.104] },
+ "t": 90,
+ "s": [-28.937]
+ },
+ {
+ "i": { "x": [0.16], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 120,
+ "s": [22.796]
+ },
+ { "t": 150, "s": [0] }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.16, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [100.192, -7.033, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.16, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 14,
+ "s": [-2.808, -79.033, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.16, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 39,
+ "s": [-2.063, -19.443, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 56,
+ "s": [-123.178, 129.126, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 69,
+ "s": [-50.998, 74.437, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.16, "y": 1 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 91,
+ "s": [5.702, 117.936, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.16, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 115,
+ "s": [87.199, -45.624, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.16, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 131,
+ "s": [124.883, 63.26, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ { "t": 150, "s": [100.192, -7.033, 0] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [600.192, 492.967, 0], "ix": 1 },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.16, 0.16, 0.16], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 0,
+ "s": [100, 100, 100]
+ },
+ {
+ "i": { "x": [0.16, 0.16, 0.16], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 14,
+ "s": [124.717, 124.717, 100]
+ },
+ {
+ "i": { "x": [0.16, 0.16, 0.16], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 39,
+ "s": [113.284, 113.284, 100]
+ },
+ {
+ "i": { "x": [0.16, 0.16, 0.16], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 56,
+ "s": [68.448, 68.448, 100]
+ },
+ {
+ "i": { "x": [0.16, 0.16, 0.16], "y": [1, 1, 1] },
+ "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
+ "t": 115,
+ "s": [118.576, 118.576, 100]
+ },
+ { "t": 150, "s": [100, 100, 100] }
+ ],
+ "ix": 6
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.288, 5.345],
+ [0, 0],
+ [0.818, -0.555],
+ [3.456, -3.495],
+ [0, 0],
+ [3.799, -5.337],
+ [-1.655, 1.673]
+ ],
+ "o": [
+ [0, 0],
+ [-0.187, -0.189],
+ [-2.046, 1.387],
+ [-1.498, 1.515],
+ [3.633, 3.673],
+ [2.097, -0.626],
+ [5.288, -5.345]
+ ],
+ "v": [
+ [33.63, 14.637],
+ [-18.381, -37.941],
+ [-19.956, -37.324],
+ [-29.104, -29.104],
+ [28.482, 25.244],
+ [27.903, 37.442],
+ [33.63, 33.994]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.243137255311, 0.278431385756, 0.607843160629, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 35, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 2",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.288, 5.345],
+ [0, 0],
+ [0.818, -0.555],
+ [3.456, -3.495],
+ [1.147, -1.922],
+ [-0.164, -0.165],
+ [0, 0],
+ [-5.288, 5.345]
+ ],
+ "o": [
+ [0, 0],
+ [-0.187, -0.189],
+ [-2.046, 1.387],
+ [-3.571, 3.611],
+ [-0.373, 0.625],
+ [0, 0],
+ [5.288, 5.345],
+ [5.288, -5.345]
+ ],
+ "v": [
+ [33.63, 14.637],
+ [-18.381, -37.941],
+ [-19.956, -37.324],
+ [-29.104, -29.104],
+ [-37.176, -19.808],
+ [-37.529, -18.584],
+ [14.482, 33.994],
+ [33.63, 33.994]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.349019616842, 0.603921592236, 0.949019610882, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [661.549, 554.396], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-1.103, -1.103],
+ [0, 0],
+ [-2.046, 1.387],
+ [0, 0],
+ [1.107, -0.838],
+ [0.093, -0.093]
+ ],
+ "o": [
+ [-1.103, 1.103],
+ [0, 0],
+ [3.456, -3.495],
+ [0, 0],
+ [-1.009, -1.009],
+ [-0.102, 0.078],
+ [0, 0]
+ ],
+ "v": [
+ [3.323, -8.077],
+ [3.323, -4.084],
+ [6.188, -1.219],
+ [15.336, -9.438],
+ [12.007, -12.767],
+ [8.314, -13.012],
+ [8.014, -12.767]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.274509817362, 0.345098048449, 0.678431391716, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 2",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-3.571, 3.611],
+ [0, 0],
+ [-1.103, 1.103],
+ [0, 0],
+ [0, 0],
+ [-1.103, -1.103],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.103, -1.103],
+ [0, 0],
+ [0, 0],
+ [-1.103, 1.103],
+ [0, 0],
+ [1.147, -1.922]
+ ],
+ "v": [
+ [6.188, -1.219],
+ [3.323, -4.084],
+ [3.323, -8.077],
+ [-5.221, 0.468],
+ [-5.361, 0.607],
+ [-5.361, 4.6],
+ [-1.884, 8.077]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.298039227724, 0.396078437567, 0.729411780834, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [626.257, 526.51], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [34.348, 0],
+ [0, -34.348],
+ [-34.348, 0],
+ [0, 34.348]
+ ],
+ "o": [
+ [-34.348, 0],
+ [0, 34.348],
+ [34.348, 0],
+ [0, -34.348]
+ ],
+ "v": [
+ [576.097, 406.103],
+ [513.805, 468.395],
+ [576.097, 530.687],
+ [638.389, 468.395]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [16.615, 0],
+ [0, 41.277],
+ [-41.277, 0],
+ [0, -41.277],
+ [10.201, -13.205],
+ [0, 0],
+ [0.044, -0.045],
+ [0, 0]
+ ],
+ "o": [
+ [-41.277, 0],
+ [0, -41.277],
+ [41.277, 0],
+ [0, 16.702],
+ [0, 0],
+ [-0.099, 0.074],
+ [0, 0],
+ [-13.183, 10.129]
+ ],
+ "v": [
+ [576.097, 543.253],
+ [501.238, 468.395],
+ [576.097, 393.536],
+ [650.955, 468.395],
+ [635.362, 514.109],
+ [635.175, 514.295],
+ [634.98, 514.448],
+ [621.646, 527.771]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.243137255311, 0.278431385756, 0.607843160629, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [576.097, 468.395], "ix": 2 },
+ "a": { "a": 0, "k": [576.097, 468.395], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [576.097, 468.395], "ix": 2 },
+ "a": { "a": 0, "k": [576.097, 468.395], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.209, 0],
+ [0, 2.209],
+ [-31.929, 0],
+ [0, -2.209],
+ [2.209, 0],
+ [0, -27.517]
+ ],
+ "o": [
+ [-2.209, 0],
+ [0, -31.929],
+ [2.209, 0],
+ [0, 2.209],
+ [-27.518, 0],
+ [0, 2.209]
+ ],
+ "v": [
+ [-48.452, 8.452],
+ [-52.452, 4.452],
+ [5.452, -53.452],
+ [9.452, -49.452],
+ [5.452, -45.452],
+ [-44.452, 4.452]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 70, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 2",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [34.955, 0],
+ [0, -34.955],
+ [-34.955, 0],
+ [0, 34.955]
+ ],
+ "o": [
+ [-34.955, 0],
+ [0, 34.955],
+ [34.955, 0],
+ [0, -34.955]
+ ],
+ "v": [
+ [0, -63.292],
+ [-63.292, 0],
+ [0, 63.292],
+ [63.292, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "gf",
+ "o": { "a": 0, "k": 100, "ix": 10 },
+ "r": 1,
+ "bm": 0,
+ "g": {
+ "p": 3,
+ "k": {
+ "a": 0,
+ "k": [
+ 0.068, 1, 1, 1, 0.534, 1, 1, 1, 1, 1, 1, 1, 0.172, 0,
+ 0.687, 0.25, 0.995, 0.5
+ ],
+ "ix": 9
+ }
+ },
+ "s": { "a": 0, "k": [0, 0], "ix": 5 },
+ "e": { "a": 0, "k": [63.5, 0], "ix": 6 },
+ "t": 2,
+ "h": { "a": 0, "k": 0, "ix": 7 },
+ "a": { "a": 0, "k": 0, "ix": 8 },
+ "nm": "Gradient Fill 1",
+ "mn": "ADBE Vector Graphic - G-Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [576.097, 468.395], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 3,
+ "ty": 4,
+ "nm": "OBJECTS",
+ "parent": 2,
+ "td": 1,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [600.192, 492.967, 0], "ix": 2 },
+ "a": { "a": 0, "k": [600.192, 492.967, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [34.955, 0],
+ [0, -34.955],
+ [-34.955, 0],
+ [0, 34.955]
+ ],
+ "o": [
+ [-34.955, 0],
+ [0, 34.955],
+ [34.955, 0],
+ [0, -34.955]
+ ],
+ "v": [
+ [0, -63.292],
+ [-63.292, 0],
+ [0, 63.292],
+ [63.292, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 0, 0, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [576.097, 468.395], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 4,
+ "ty": 0,
+ "nm": "all",
+ "parent": 1,
+ "tt": 1,
+ "refId": "comp_0",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [80, -32, 0],
+ "to": [5, 1.833, 0],
+ "ti": [-5, 0.833, 0]
+ },
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 14,
+ "s": [110, -21, 0],
+ "to": [5, -0.833, 0],
+ "ti": [-1.667, 4.333, 0]
+ },
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 39,
+ "s": [110, -37, 0],
+ "to": [1.667, -4.333, 0],
+ "ti": [3.333, 0, 0]
+ },
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 56,
+ "s": [150, -77, 0],
+ "to": [-3.333, 0, 0],
+ "ti": [5, 1.667, 0]
+ },
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 69,
+ "s": [110, -37, 0],
+ "to": [-5, -1.667, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 91,
+ "s": [90, -77, 0],
+ "to": [0, 0, 0],
+ "ti": [0, -6.667, 0]
+ },
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 115,
+ "s": [90, -37, 0],
+ "to": [0, 6.667, 0],
+ "ti": [1.667, -0.833, 0]
+ },
+ {
+ "i": { "x": 0.22, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 131,
+ "s": [90, -17, 0],
+ "to": [-1.667, 0.833, 0],
+ "ti": [1.667, 2.5, 0]
+ },
+ { "t": 150, "s": [80, -32, 0] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [580, 468, 0], "ix": 1 },
+ "s": { "a": 0, "k": [140, 140, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "w": 1000,
+ "h": 1000,
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 5,
+ "ty": 0,
+ "nm": "all",
+ "parent": 1,
+ "refId": "comp_0",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [0, 0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [500, 500, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "w": 1000,
+ "h": 1000,
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 6,
+ "ty": 4,
+ "nm": "BACKGROUND",
+ "parent": 1,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [6.89, -17.736, 0], "ix": 2 },
+ "a": { "a": 0, "k": [506.89, 482.264, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [9.248, 8.588],
+ [8.588, -9.248],
+ [-9.248, -8.588],
+ [-11.987, 3.948]
+ ],
+ "o": [
+ [-9.248, -8.588],
+ [-8.588, 9.248],
+ [9.248, 8.588],
+ [16.717, -5.507]
+ ],
+ "v": [
+ [16.52, -18.271],
+ [-15.774, -17.076],
+ [-20.546, 21.643],
+ [14.641, 12.257]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.882352948189, 0.886274516582, 0.996078431606, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [313.017, 296.905],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 50,
+ "s": [301.017, 305.905],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 100,
+ "s": [288.01, 333.41],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ { "t": 150, "s": [313.017, 296.905] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 50,
+ "s": [12]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 100,
+ "s": [-18]
+ },
+ { "t": 150, "s": [0] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 47, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-8.408, -5.428],
+ [-5.428, 8.408],
+ [8.407, 5.428],
+ [8.814, -4.739]
+ ],
+ "o": [
+ [8.408, 5.428],
+ [5.428, -8.408],
+ [-8.408, -5.428],
+ [-12.293, 6.61]
+ ],
+ "v": [
+ [-9.956, 17.35],
+ [15.095, 11.955],
+ [13.471, -18.938],
+ [-12.707, -6.747]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.882352948189, 0.886274516582, 0.996078431606, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [682.659, 671.752],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 50,
+ "s": [663.659, 680.752],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 100,
+ "s": [695.159, 659.252],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ { "t": 150, "s": [682.659, 671.752] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 50,
+ "s": [-39]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 100,
+ "s": [11.5]
+ },
+ { "t": 150, "s": [0] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 47, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.965, 11.62],
+ [11.62, 5.965],
+ [5.965, -11.62],
+ [-7.293, -10.837]
+ ],
+ "o": [
+ [5.965, -11.62],
+ [-11.62, -5.965],
+ [-5.965, 11.62],
+ [10.171, 15.114]
+ ],
+ "v": [
+ [24.368, 10.668],
+ [14.129, -21.174],
+ [-25.786, -15.079],
+ [-6.575, 17.35]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.92549020052, 0.945098042488, 0.96862745285, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [699.145, 321.283],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 50,
+ "s": [674.145, 311.283],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 100,
+ "s": [681.645, 346.283],
+ "to": [0, 0],
+ "ti": [0, 0]
+ },
+ { "t": 150, "s": [699.145, 321.283] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 50,
+ "s": [28]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 100,
+ "s": [-26]
+ },
+ { "t": 150, "s": [0] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 47, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 7,
+ "ty": 4,
+ "nm": "BACKGROUND 2",
+ "parent": 1,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [-8.52, -10.982, 0], "ix": 2 },
+ "a": { "a": 0, "k": [491.48, 489.018, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.259, -2.915],
+ [4.029, -14.154],
+ [5.692, -16.637],
+ [-10.214, -23.955],
+ [-9.82, -7.42],
+ [-18.655, 1.451],
+ [-27.915, -3.278],
+ [-7.956, -10.998],
+ [-13.547, -6.504],
+ [-25.502, 10.861],
+ [1.56, 32.025],
+ [-2.745, 14.557],
+ [-9.975, 14.885],
+ [-1.308, 20],
+ [-0.014, 0.227],
+ [32.833, 10.798],
+ [0.003, 0.001],
+ [65.177, -34.214],
+ [4.73, -15.211]
+ ],
+ "o": [
+ [-1.27, 14.292],
+ [-4.824, 16.945],
+ [-8.411, 24.584],
+ [4.923, 11.545],
+ [15.139, 11.439],
+ [27.764, -2.159],
+ [15.404, 1.809],
+ [8.998, 12.439],
+ [24.952, 11.978],
+ [27.227, -11.596],
+ [-0.722, -14.815],
+ [3.446, -18.269],
+ [11.016, -16.439],
+ [0.015, -0.227],
+ [2.045, -34.503],
+ [0, 0],
+ [-70.886, -23.313],
+ [-14.104, 7.404],
+ [-0.893, 2.87]
+ ],
+ "v": [
+ [-171.011, -91.868],
+ [-171.49, -48.694],
+ [-195.97, -2.419],
+ [-193.762, 73.668],
+ [-171.828, 103.363],
+ [-118.198, 115.859],
+ [-33.223, 104.958],
+ [-5.16, 134.437],
+ [29.639, 163.149],
+ [110.039, 165.4],
+ [159.437, 93.462],
+ [155.53, 49.375],
+ [182.717, -0.427],
+ [201.709, -56.47],
+ [201.752, -57.151],
+ [149.201, -133.92],
+ [79.34, -156.896],
+ [-127.548, -145.224],
+ [-169.347, -100.55]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.882352948189, 0.886274516582, 0.996078431606, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [0, 0], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [492.184, 486.224],
+ "to": [0, 2],
+ "ti": [2.167, 0]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 50,
+ "s": [492.184, 498.224],
+ "to": [-2.167, 0],
+ "ti": [0, 2]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 100,
+ "s": [479.184, 486.224],
+ "to": [0, -2],
+ "ti": [-2.167, 0]
+ },
+ { "t": 150, "s": [492.184, 486.224] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [-13]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 50,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 100,
+ "s": [-20]
+ },
+ { "t": 150, "s": [-13] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 1,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.842, -4],
+ [-3.956, -19.29],
+ [4.899, -24.193],
+ [1.513, -14.581],
+ [-24.115, -14.246],
+ [-22.519, 0.309],
+ [-19.64, 5.032],
+ [-19.839, -2.016],
+ [-15.366, -5.319],
+ [-33.546, 19.331],
+ [-6.683, 21.663],
+ [4.004, 17.675],
+ [-2.155, 18.908],
+ [1.104, 13.215],
+ [4.727, 7.435],
+ [30.574, 10.015],
+ [29.956, -2.268],
+ [63.296, 13.538],
+ [23.912, -36.092]
+ ],
+ "o": [
+ [-8.245, 17.898],
+ [4.65, 22.678],
+ [-2.984, 14.736],
+ [-3.107, 29.94],
+ [19.587, 11.57],
+ [20.268, -0.278],
+ [18.927, -4.85],
+ [16.5, 1.677],
+ [36.685, 12.699],
+ [21.529, -12.406],
+ [5.341, -17.312],
+ [-4.11, -18.147],
+ [1.502, -13.176],
+ [-0.734, -8.781],
+ [-17.262, -27.149],
+ [-28.773, -9.426],
+ [-61.936, 4.688],
+ [-40.863, -8.74],
+ [-2.439, 3.681]
+ ],
+ "v": [
+ [-212.919, -92.593],
+ [-219.459, -34.771],
+ [-205.589, 29.523],
+ [-210.833, 72.491],
+ [-170.385, 143.057],
+ [-105.316, 158.66],
+ [-45.177, 149.607],
+ [12.094, 140.383],
+ [58.82, 154.511],
+ [173.491, 149.67],
+ [216.772, 95.453],
+ [218.787, 44.277],
+ [209.892, -11.07],
+ [216.316, -50.178],
+ [206.989, -74.632],
+ [130.249, -129.973],
+ [41.847, -143.956],
+ [-96.012, -162.644],
+ [-206.496, -104.136]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [0.882352948189, 0.886274516582, 0.996078431606, 1],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 0,
+ "s": [482.48, 480.055],
+ "to": [1.5, -1.5],
+ "ti": [-2.333, -1.5]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 50,
+ "s": [491.48, 471.055],
+ "to": [2.333, 1.5],
+ "ti": [1.5, -1.5]
+ },
+ {
+ "i": { "x": 0.667, "y": 1 },
+ "o": { "x": 0.333, "y": 0 },
+ "t": 100,
+ "s": [496.48, 489.055],
+ "to": [-1.5, 1.5],
+ "ti": [2.333, 1.5]
+ },
+ { "t": 150, "s": [482.48, 480.055] }
+ ],
+ "ix": 2
+ },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 50,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.667], "y": [1] },
+ "o": { "x": [0.333], "y": [0] },
+ "t": 100,
+ "s": [8]
+ },
+ { "t": 150, "s": [0] }
+ ],
+ "ix": 6
+ },
+ "o": { "a": 0, "k": 47, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 176,
+ "st": 0,
+ "bm": 0
+ }
+ ],
+ "markers": []
+}
diff --git a/public/lotties/web.json b/public/lotties/web.json
new file mode 100644
index 0000000..c07f08f
--- /dev/null
+++ b/public/lotties/web.json
@@ -0,0 +1,26488 @@
+{
+ "v": "5.7.8",
+ "fr": 30,
+ "ip": 0,
+ "op": 301,
+ "w": 1200,
+ "h": 1200,
+ "nm": "T2",
+ "ddd": 0,
+ "assets": [],
+ "layers": [
+ {
+ "ddd": 0,
+ "ind": 1,
+ "ty": 4,
+ "nm": "mAN Outlines 4",
+ "parent": 2,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [11]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 33.333,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 66.667,
+ "s": [11]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 100,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 133.333,
+ "s": [11]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 166.667,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 200,
+ "s": [11]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 233.333,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 266.667,
+ "s": [11]
+ },
+ { "t": 300, "s": [0] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [89.439, 274.318, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [84.451, 273.734, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "hasMask": true,
+ "masksProperties": [
+ {
+ "inv": true,
+ "mode": "a",
+ "pt": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [6.875, -60.75],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [3.438, 13.313],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [246.479, -67.69],
+ [107.979, -60.19],
+ [73.479, 4.31],
+ [68.979, 80.81],
+ [99.979, 155.31],
+ [113.479, 215.31],
+ [78.729, 303.935],
+ [96.354, 382.435],
+ [96.229, 419.685],
+ [88.979, 696.31],
+ [184.479, 792.81],
+ [332.479, 881.31],
+ [565.479, 902.31],
+ [603.979, 626.81],
+ [613.979, 403.81],
+ [460.479, 4.31]
+ ],
+ "c": true
+ },
+ "ix": 1
+ },
+ "o": { "a": 0, "k": 100, "ix": 3 },
+ "x": { "a": 0, "k": 0, "ix": 4 },
+ "nm": "Mask 1"
+ }
+ ],
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.761, 0.367],
+ [0.369, -1.762],
+ [0, 0],
+ [-1.761, -0.368],
+ [-0.369, 1.759],
+ [0, 0]
+ ],
+ "o": [
+ [-1.76, -0.37],
+ [0, 0],
+ [-0.368, 1.76],
+ [1.761, 0.369],
+ [0, 0],
+ [0.365, -1.762]
+ ],
+ "v": [
+ [1.197, -5.736],
+ [-2.656, -3.213],
+ [-3.716, 1.889],
+ [-1.194, 5.737],
+ [2.66, 3.216],
+ [3.719, -1.886]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [267.841, 63.082], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-3.229, -6.199],
+ [-2.567, -14.578],
+ [8.467, -2.57],
+ [10.245, 44.525],
+ [-7.083, 15.24]
+ ],
+ "o": [
+ [3.23, 6.208],
+ [2.567, 14.584],
+ [-8.467, 2.572],
+ [-10.248, -44.525],
+ [5.262, -11.31]
+ ],
+ "v": [
+ [0.286, -57.518],
+ [24.375, 35.154],
+ [20.686, 68.573],
+ [-10.999, 27.34],
+ [-22.07, -60.555]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [502.716, 752.85], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-7.313, -10.482],
+ [-6.195, -17.229],
+ [5.074, -1.844],
+ [10.449, 27.557],
+ [3.223, 16.052],
+ [-9.91, 0.319]
+ ],
+ "o": [
+ [7.31, 10.482],
+ [6.191, 17.232],
+ [-5.076, 1.843],
+ [-10.454, -27.549],
+ [-3.218, -16.051],
+ [9.913, -0.32]
+ ],
+ "v": [
+ [-2.137, -52.305],
+ [21.734, 13.888],
+ [25.64, 62.067],
+ [0.901, 31.897],
+ [-19.72, -35.813],
+ [-20.804, -63.589]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [366.462, 559.481], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [3.451, 3.251],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4.692, 11.629],
+ [0, 0],
+ [0, 0],
+ [2.236, -14.503]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [-3.448, -3.251],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4.689, -11.637],
+ [0, 0],
+ [0, 0],
+ [-2.239, 14.503]
+ ],
+ "v": [
+ [13.957, -8.681],
+ [24.156, 55.344],
+ [11.787, 52.304],
+ [-0.367, 22.792],
+ [-14.038, 1.09],
+ [-21.2, -1.95],
+ [-19.464, -37.54],
+ [-8.83, -55.556],
+ [14.824, -50.995],
+ [0.284, -35.156]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [452.878, 739.53], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-1.426, 6.135],
+ [0, 0],
+ [0, 0],
+ [3.537, 2.676],
+ [0, 0],
+ [0, 0],
+ [-5.049, -16.322],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.426, -6.125],
+ [0, 0],
+ [0, 0],
+ [-3.538, -2.679],
+ [0, 0],
+ [0, 0],
+ [5.046, 16.33],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [30.52, 51.977],
+ [30.302, 36.998],
+ [34.86, 22.898],
+ [15.328, -40.48],
+ [2.524, -42.215],
+ [-5.07, -51.977],
+ [-30.247, -39.612],
+ [-29.812, -7.927],
+ [-21.782, 13.127],
+ [-16.573, 13.561],
+ [4.477, 20.506]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [315.216, 561.25], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [2.797, -15.953],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [27.683, 23.494],
+ [0, 0],
+ [14.216, -7.731],
+ [17.648, 6.437],
+ [-4.778, 21.702],
+ [0, 0],
+ [-27.901, -5.675],
+ [-18.574, -4.111],
+ [0, 0],
+ [0, 0],
+ [30.157, -16.132],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-5.843, -20.08],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-16.702, -5.2],
+ [0, 0],
+ [-16.355, -10.98],
+ [-2.121, -3.252]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [-2.797, 15.953],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-43.268, -36.713],
+ [0, 0],
+ [-14.215, 7.723],
+ [-17.648, -6.437],
+ [4.775, -21.701],
+ [0, 0],
+ [11.694, 2.374],
+ [25.759, 5.716],
+ [0, 0],
+ [0, 0],
+ [-30.158, 16.142],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [5.839, 20.08],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [16.697, 5.193],
+ [0, 0],
+ [16.354, 10.974],
+ [2.122, 3.251]
+ ],
+ "v": [
+ [156.174, 122.958],
+ [144.889, 119.92],
+ [129.481, 142.276],
+ [127.31, 173.747],
+ [142.718, 175.698],
+ [135.775, 189.151],
+ [69.363, 146.831],
+ [4.908, 35.063],
+ [-79.298, 87.589],
+ [-124.654, 90.193],
+ [-152.215, 33.547],
+ [-74.305, -178.27],
+ [-21.137, -183.477],
+ [36.811, -174.583],
+ [78.478, -161.562],
+ [72.618, -58.255],
+ [29.866, -58.477],
+ [-5.725, -40.672],
+ [-6.158, -84.297],
+ [-30.248, -29.174],
+ [-15.49, -35.464],
+ [-19.614, -3.346],
+ [-6.809, 20.307],
+ [6.645, 16.398],
+ [28.564, 22.042],
+ [76.095, 66.755],
+ [104.089, 67.182],
+ [131.651, 97.57],
+ [154.871, 114.277]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [288.525, 560.598], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [35.697, 8.084],
+ [8.992, -1.924],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [9.271, -7.018],
+ [17.26, 4.66],
+ [0, 0],
+ [-4.328, 11.204],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [2.631, 15.65],
+ [0, 0],
+ [-14.597, 1.859],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-16.423, -0.77],
+ [0, 0],
+ [0, 0],
+ [-5.679, -1.147],
+ [0, 0],
+ [-9.556, -4.717],
+ [-2.091, -22.127],
+ [0, 0],
+ [-4.447, -18.761]
+ ],
+ "o": [
+ [0, 0],
+ [-35.696, -8.091],
+ [-8.991, 1.925],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-9.266, 7.018],
+ [-17.258, -4.651],
+ [0, 0],
+ [4.328, -11.194],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-2.628, -15.65],
+ [0, 0],
+ [14.594, -1.859],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [16.423, 0.769],
+ [0, 0],
+ [0, 0],
+ [5.675, 1.155],
+ [0, 0],
+ [9.558, 4.718],
+ [2.092, 22.128],
+ [0, 0],
+ [4.446, 18.771]
+ ],
+ "v": [
+ [140.447, 144.492],
+ [92.703, 128.866],
+ [17.394, 119.097],
+ [-11.252, 123.658],
+ [0.901, 86.545],
+ [-9.515, -10.678],
+ [-70.719, 42.706],
+ [-109.565, 48.129],
+ [-137.342, 35.975],
+ [-138.644, 14.706],
+ [-128.01, -2.867],
+ [-95.892, -0.262],
+ [-43.804, -62.116],
+ [-59.867, -80.132],
+ [-70.067, -132.437],
+ [-48.362, -142.632],
+ [-27.745, -138.514],
+ [-14.073, -106.608],
+ [-7.563, -102.268],
+ [19.131, -115.288],
+ [61.67, -116.37],
+ [65.142, -120.498],
+ [83.589, -119.416],
+ [95.959, -117.459],
+ [110.932, -104.872],
+ [140.88, -67.324],
+ [125.69, 46.613],
+ [134.154, 101.514]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [227.568, 257.607], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.588, 0.476],
+ [0.213, -2.874],
+ [3.634, 0.254],
+ [0.058, 1.703],
+ [-1.675, 1.286]
+ ],
+ "o": [
+ [1.744, -0.327],
+ [-0.225, 3.047],
+ [-1.58, -0.106],
+ [-0.09, -2.474],
+ [2.44, -1.865]
+ ],
+ "v": [
+ [3.626, -6.581],
+ [7.315, -3.329],
+ [-4.399, 6.653],
+ [-7.438, 3.616],
+ [-2.663, -1.16]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [266.801, 86.127], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.29, -15.389],
+ [-2.067, -2.8],
+ [-1.248, -1.727],
+ [-1.639, -3.464],
+ [-1.142, -3.801],
+ [-1.781, -3.169],
+ [-1.642, -1.638],
+ [-3.53, -0.581],
+ [3.701, 19.521],
+ [-0.037, 12.048],
+ [-2.211, 2.315],
+ [0.265, 0.729],
+ [3.386, 1.024]
+ ],
+ "o": [
+ [3.674, 1.204],
+ [1.268, 1.72],
+ [2.408, 3.342],
+ [1.585, 3.357],
+ [1.122, 3.71],
+ [0.77, 1.377],
+ [2.502, 2.498],
+ [-3.865, -19.351],
+ [-5.811, -6.323],
+ [0.013, -4.42],
+ [0.651, -0.69],
+ [-3.117, -1.302],
+ [-10.708, 7.379]
+ ],
+ "v": [
+ [170.134, 316.307],
+ [177.513, 323.252],
+ [181.202, 328.672],
+ [189.015, 339.31],
+ [192.7, 351.031],
+ [196.172, 362.305],
+ [200.512, 366.867],
+ [208.759, 371.854],
+ [197.257, 313.703],
+ [183.806, 284.622],
+ [187.274, 273.781],
+ [189.015, 271.823],
+ [178.164, 269.44]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-9.963, -6.593],
+ [-8.403, 0.787],
+ [-0.098, 10.875],
+ [0.872, 4.906],
+ [7.906, 27.239],
+ [1.957, 2.866],
+ [9.164, -0.646],
+ [3.16, -2.04],
+ [0.95, -3.416],
+ [-1.448, -3.538],
+ [-1.815, -2.555],
+ [-1.097, -2.768],
+ [-0.966, -5.144],
+ [-2.441, -12.129],
+ [2.916, -2.122],
+ [2.359, 0.899]
+ ],
+ "o": [
+ [6.317, 4.184],
+ [9.941, -0.942],
+ [0.04, -4.733],
+ [-5.216, -29.383],
+ [-1.316, -4.537],
+ [-3.64, -5.316],
+ [-4.165, 0.287],
+ [-2.871, 1.858],
+ [-1.356, 4.896],
+ [1.278, 3.121],
+ [1.883, 2.652],
+ [1.876, 4.717],
+ [2.302, 12.225],
+ [0.802, 3.995],
+ [-3.564, 2.587],
+ [3.911, 11.554]
+ ],
+ "v": [
+ [220.696, 403.106],
+ [244.563, 410.271],
+ [259.537, 388.349],
+ [257.366, 373.378],
+ [238.053, 288.75],
+ [233.499, 275.943],
+ [208.759, 268.138],
+ [197.692, 272.692],
+ [190.53, 280.284],
+ [192.048, 295.039],
+ [197.475, 303.286],
+ [203.116, 311.32],
+ [206.588, 328.026],
+ [213.317, 361.661],
+ [214.617, 378.154],
+ [200.946, 375.771]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.908, 1.924],
+ [-0.156, -19.835],
+ [-4.16, -1.048],
+ [-8.562, 9.802]
+ ],
+ "o": [
+ [-7.722, 11.947],
+ [4.614, 0.597],
+ [-3.693, -17.436],
+ [-2.637, -1.197]
+ ],
+ "v": [
+ [162.973, 262.93],
+ [150.386, 309.362],
+ [162.104, 313.268],
+ [170.785, 266.615]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [11.314, 12.324],
+ [2.04, 1.179],
+ [7.276, 3.915],
+ [3.721, 3.726],
+ [8.473, 10.163],
+ [1.774, 1.032],
+ [2.26, 1.049],
+ [6.125, -3.21],
+ [-58.947, -27.277],
+ [-3.161, 11.491],
+ [-9.63, 6.282]
+ ],
+ "o": [
+ [-1.569, -1.711],
+ [-10.268, 3.864],
+ [-4.172, -2.243],
+ [-9.43, -9.434],
+ [-1.764, -2.122],
+ [-2.325, -1.351],
+ [-1.173, 8.164],
+ [22.164, 64.058],
+ [-3.177, -12.685],
+ [3.742, -13.585],
+ [-14.195, -9.695]
+ ],
+ "v": [
+ [129.122, 215.841],
+ [124.13, 210.846],
+ [93.102, 208.461],
+ [81.166, 198.479],
+ [55.123, 169.62],
+ [49.919, 163.757],
+ [41.891, 161.153],
+ [30.171, 177.432],
+ [145.615, 320.646],
+ [147.131, 282.451],
+ [166.661, 250.555]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.202, 18.859],
+ [1.334, -1.588],
+ [0.229, -4.112],
+ [-5.7, -7.903],
+ [-2.981, 1.287]
+ ],
+ "o": [
+ [-2.047, 1.368],
+ [-2.256, 2.703],
+ [-0.776, 14.045],
+ [2.837, -1.432],
+ [-8.357, -10.358]
+ ],
+ "v": [
+ [14.98, 106.472],
+ [8.904, 110.158],
+ [5.649, 121.443],
+ [16.499, 159.203],
+ [25.613, 155.51]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 5,
+ "ty": "sh",
+ "ix": 6,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.815, 6.813],
+ [6.367, -3.186],
+ [-1.797, -9.041],
+ [-5.769, -4.102],
+ [-4.193, -1.31],
+ [-2.228, -1.302],
+ [-1.712, -2.039],
+ [-5.261, -5.51],
+ [-0.683, 0.45],
+ [-1.276, 3.97],
+ [-0.012, 2.154],
+ [0.771, 2.457],
+ [4.921, 16.665]
+ ],
+ "o": [
+ [-6.368, 3.186],
+ [-2.305, 9.05],
+ [1.745, 8.754],
+ [4.083, -0.581],
+ [3.177, 0.99],
+ [1.908, 1.131],
+ [5.216, 6.183],
+ [0.303, 0.312],
+ [-0.265, -5.398],
+ [0.758, -2.351],
+ [0.012, -1.851],
+ [-5.392, -17.149],
+ [-9.626, -1.008]
+ ],
+ "v": [
+ [41.891, 93.018],
+ [22.792, 102.567],
+ [22.575, 131.213],
+ [32.992, 152.693],
+ [44.711, 155.297],
+ [53.609, 158.115],
+ [59.247, 164.411],
+ [74.655, 182.206],
+ [75.957, 183.076],
+ [77.91, 170.703],
+ [80.297, 163.323],
+ [78.127, 155.945],
+ [62.069, 104.737]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 6",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 6,
+ "ty": "sh",
+ "ix": 7,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.79, -1.269],
+ [-1.379, -1.073],
+ [-0.797, -2.571],
+ [-5.233, -16.272],
+ [0.023, -2.04],
+ [0.884, -2.743],
+ [0.033, -3.138],
+ [-0.544, -3.889],
+ [-4.132, -2.432],
+ [-3.914, 7.222],
+ [0.779, 4.61],
+ [9.258, 26.254],
+ [2.152, 3.521],
+ [9.496, -2.129],
+ [8.972, -3.324]
+ ],
+ "o": [
+ [2.146, 0.467],
+ [1.156, 0.908],
+ [5.242, 16.911],
+ [0.909, 2.825],
+ [-0.034, 2.374],
+ [-0.901, 2.776],
+ [-0.044, 4.513],
+ [3.594, 3.382],
+ [5.388, 3.169],
+ [1.867, -3.441],
+ [-5.212, -30.8],
+ [-1.605, -4.562],
+ [-3.511, -5.766],
+ [-9.126, 2.04],
+ [2.31, 5.019]
+ ],
+ "v": [
+ [59.464, 97.578],
+ [66.408, 99.307],
+ [69.446, 106.685],
+ [84.638, 155.297],
+ [87.026, 163.544],
+ [84.421, 171.791],
+ [82.25, 180.685],
+ [84.855, 192.836],
+ [95.485, 202.385],
+ [124.13, 202.599],
+ [123.913, 186.974],
+ [101.561, 102.567],
+ [96.571, 89.766],
+ [73.786, 78.482],
+ [47.966, 89.979]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 7",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 7,
+ "ty": "sh",
+ "ix": 8,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.991, -12.006],
+ [-5.147, 3.318],
+ [0.651, 8.598]
+ ],
+ "o": [
+ [5.512, -2.948],
+ [-0.59, -8.664],
+ [-5.195, 11.8]
+ ],
+ "v": [
+ [-1.943, 107.776],
+ [14.763, 99.094],
+ [13.682, 72.406]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 8",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 8,
+ "ty": "sh",
+ "ix": 9,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [31.037, 3.768],
+ [10.552, -0.336],
+ [9.197, -1.933],
+ [20.691, -58.464],
+ [2.424, -9.05],
+ [-2.351, -10.999],
+ [-19.834, -3.562],
+ [-8.5, 3.586],
+ [-7.071, 4.316],
+ [-19.899, 13.832],
+ [1.883, 1.924],
+ [-3.342, 22.512],
+ [29.575, -15.479],
+ [0.128, 4.947],
+ [-2.536, 1.359],
+ [-3.459, 1.817],
+ [-21.844, 11.146],
+ [-14.978, 33.362],
+ [-4.111, -0.426],
+ [0.962, -2.179],
+ [6.859, -15.272],
+ [0.304, -1.926],
+ [-0.122, -3.064],
+ [-0.491, -9.139],
+ [-13.046, 6.298],
+ [-5.373, 0.452],
+ [-3.722, -2.138],
+ [-0.656, 0.311],
+ [0.233, 32.282]
+ ],
+ "o": [
+ [-10.747, -1.301],
+ [-10.343, 0.328],
+ [-21.444, 58.193],
+ [-3.058, 8.647],
+ [-2.579, 9.632],
+ [4.037, 18.876],
+ [9.106, 1.63],
+ [7.506, -3.169],
+ [21.325, -13.021],
+ [-2.33, -1.179],
+ [-11.355, -11.572],
+ [-29.26, 15.094],
+ [-2.842, 1.49],
+ [-0.084, -3.382],
+ [4.058, -2.179],
+ [22.127, -11.579],
+ [14.892, -33.298],
+ [1.319, -2.933],
+ [3.774, 0.394],
+ [-6.937, 15.641],
+ [-1.154, 2.58],
+ [-0.421, 2.687],
+ [0.388, 9.671],
+ [11.842, -5.936],
+ [4.532, -2.186],
+ [6.183, -0.516],
+ [1.073, 0.623],
+ [1.572, -31.201],
+ [-24.069, -10.376]
+ ],
+ "v": [
+ [10.426, -37.397],
+ [-22.126, -40.435],
+ [-50.334, -35.227],
+ [-115.001, 139.673],
+ [-123.03, 165.927],
+ [-124.983, 195.442],
+ [-91.129, 230.164],
+ [-60.751, 227.995],
+ [-38.832, 215.841],
+ [22.792, 174.607],
+ [16.282, 169.833],
+ [0.227, 114.065],
+ [-90.477, 159.851],
+ [-98.509, 158.982],
+ [-88.958, 151.826],
+ [-77.678, 146.396],
+ [-11.276, 112.549],
+ [33.643, 11.642],
+ [41.891, -1.159],
+ [43.193, 5.786],
+ [23.226, 50.916],
+ [19.754, 58.517],
+ [20.189, 67.632],
+ [21.056, 96.055],
+ [60.332, 77.18],
+ [74.655, 71.75],
+ [90.497, 75.656],
+ [93.319, 76.958],
+ [97.221, -17.865]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 9",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 9,
+ "ty": "sh",
+ "ix": 10,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.746, 1.368],
+ [3.112, 1.434],
+ [6.212, 2.547],
+ [2.894, 1.564],
+ [6.64, 0.713],
+ [1.089, -1.163],
+ [-0.164, -1.007],
+ [0.123, -5.567],
+ [3.805, 0.254],
+ [0.835, -4.053],
+ [1.212, -6.977],
+ [4.503, -1.533],
+ [0.282, -3.193],
+ [-1.287, 0.483],
+ [0.258, -5.584],
+ [4.414, -1.768],
+ [-0.119, -7.772],
+ [-5.868, 1.736],
+ [0.164, 3.416],
+ [-1.213, 2.416],
+ [-2.138, 0.181],
+ [-2.097, -1.302],
+ [-2.109, -1.212],
+ [-10.077, 2.17],
+ [-0.077, 1.801],
+ [-2.892, -1.268],
+ [-4.831, -2.129],
+ [-5.638, 7.869]
+ ],
+ "o": [
+ [-2.756, -0.794],
+ [-6.31, -2.89],
+ [-3.321, -1.367],
+ [-5.27, -2.858],
+ [-1.729, -0.18],
+ [-1.122, 1.196],
+ [4.794, -1.474],
+ [-0.102, 4.587],
+ [-6.293, -0.425],
+ [2.915, -1.27],
+ [-0.758, 4.374],
+ [-2.838, 0.974],
+ [0.982, -0.113],
+ [3.836, -1.425],
+ [-0.222, 4.741],
+ [-6.122, 2.456],
+ [0.082, 5.315],
+ [-0.184, -3.366],
+ [-0.139, -2.94],
+ [1.354, -2.695],
+ [2.035, -0.163],
+ [2.629, 1.629],
+ [7.425, 4.266],
+ [-0.43, -0.941],
+ [0.226, -5.234],
+ [6.015, 2.639],
+ [-1.715, -13.799],
+ [-4.303, -1.016]
+ ],
+ "v": [
+ [-187.693, -165.208],
+ [-196.808, -169.335],
+ [-215.254, -177.794],
+ [-225.015, -181.479],
+ [-241.291, -190.815],
+ [-245.849, -187.555],
+ [-248.236, -184.083],
+ [-228.488, -180.833],
+ [-237.82, -178.662],
+ [-251.491, -173.887],
+ [-233.045, -171.939],
+ [-248.236, -168.465],
+ [-254.747, -161.956],
+ [-251.057, -163.692],
+ [-235.649, -161.734],
+ [-249.104, -157.615],
+ [-258.653, -139.386],
+ [-249.972, -128.323],
+ [-253.228, -136.782],
+ [-250.189, -144.16],
+ [-245.849, -149.37],
+ [-238.47, -145.675],
+ [-231.527, -141.557],
+ [-208.309, -134.391],
+ [-210.263, -137.862],
+ [-200.931, -138.519],
+ [-182.268, -130.492],
+ [-174.025, -163.471]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 10",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 10,
+ "ty": "sh",
+ "ix": 11,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.531, 14.88],
+ [1.622, 11.015],
+ [-0.287, 3.513],
+ [-1.135, 6.2],
+ [-2.805, 18.172],
+ [2.124, 12.965],
+ [8.438, 6.543],
+ [8.004, 5.921],
+ [1.691, 1.016],
+ [3.685, 0.598],
+ [4, -1.384],
+ [1.7, -0.409],
+ [3.005, -0.148],
+ [12.484, -9.4],
+ [2.114, -2.319],
+ [6.129, -7.01],
+ [23.438, -27.23],
+ [2.687, 0.319],
+ [0.126, 1.048],
+ [0.319, 1.531],
+ [4.088, 0.524],
+ [3.125, -0.613],
+ [1.257, -4.284],
+ [-3.506, -3.923],
+ [-1.523, -0.629],
+ [-5.471, -1.63],
+ [-9.917, 1.99],
+ [-9.455, 8.689],
+ [-19.048, 17.304],
+ [-2.989, -0.155],
+ [-0.082, -1.884],
+ [1.551, -1.441],
+ [5.04, -5.396],
+ [-3.096, -27.008],
+ [0.376, -3.415],
+ [1.077, -2.882],
+ [3.165, -8.492],
+ [-24.081, -3.293],
+ [-19.77, -8.419]
+ ],
+ "o": [
+ [-1.846, -10.859],
+ [-0.582, -3.931],
+ [0.483, -5.898],
+ [3.368, -18.474],
+ [1.925, -12.464],
+ [-2.028, -12.406],
+ [-7.968, -6.182],
+ [-1.45, -1.073],
+ [-2.436, -1.465],
+ [-4.168, -0.688],
+ [-1.524, 0.524],
+ [-2.551, 0.622],
+ [-20.571, 1.008],
+ [-2.326, 1.746],
+ [-6.517, 7.123],
+ [-23.604, 26.984],
+ [-2.145, 2.49],
+ [-1.654, -0.205],
+ [-0.377, -3.111],
+ [-4.402, -0.664],
+ [-3.312, -0.427],
+ [-4.839, 0.95],
+ [-1.316, 4.454],
+ [0.962, 1.072],
+ [5.666, 2.336],
+ [7.907, 2.35],
+ [15.057, -3.013],
+ [19.007, -17.477],
+ [2.81, -2.546],
+ [1.138, 0.058],
+ [0.098, 2.251],
+ [-6.007, 5.577],
+ [3.12, 26.33],
+ [0.463, 3.996],
+ [-0.286, 2.645],
+ [-3.333, 8.919],
+ [23.294, -7.764],
+ [25.415, 3.472],
+ [-0.64, -16.117]
+ ],
+ "v": [
+ [90.063, -69.949],
+ [84.855, -103.795],
+ [83.336, -115.948],
+ [86.592, -134.391],
+ [96.14, -189.947],
+ [97.005, -229.87],
+ [81.383, -257.648],
+ [56.86, -271.971],
+ [52.74, -276.091],
+ [42.975, -279.128],
+ [27.567, -279.563],
+ [24.094, -277.18],
+ [15.197, -276.745],
+ [-39.483, -266.109],
+ [-46.211, -259.383],
+ [-65.307, -237.469],
+ [-134.745, -156.747],
+ [-142.124, -150.449],
+ [-144.727, -153.055],
+ [-141.472, -159.352],
+ [-153.192, -160.867],
+ [-165.128, -162.169],
+ [-174.454, -147.846],
+ [-174.454, -127.445],
+ [-169.246, -125.065],
+ [-152.541, -118.987],
+ [-126.72, -115.735],
+ [-90.261, -140.032],
+ [-34.714, -190.815],
+ [-26.249, -197.538],
+ [-23.211, -194.499],
+ [-27.985, -188.423],
+ [-44.908, -172.373],
+ [-35.581, -89.906],
+ [-34.496, -77.761],
+ [-37.534, -68.86],
+ [-47.512, -42.605],
+ [28.218, -41.302],
+ [97.005, -24.81]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 11",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 11,
+ "ty": "sh",
+ "ix": 12,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.827, 5.928],
+ [1.745, 5.65],
+ [1.319, 1.932],
+ [4.188, -0.328],
+ [4.648, -6.429],
+ [-2.441, -12.931],
+ [-1.421, -3.587],
+ [-3.644, -4.324],
+ [-7.963, 9.13],
+ [-2.201, 3.308]
+ ],
+ "o": [
+ [-1.805, -5.855],
+ [-0.831, -2.695],
+ [-2.355, -3.456],
+ [-10.093, 0.777],
+ [1.97, 12.816],
+ [0.833, 4.406],
+ [2.311, 5.839],
+ [7.816, -9.467],
+ [2.699, -3.088],
+ [-6.493, -1.229]
+ ],
+ "v": [
+ [-61.402, -274.141],
+ [-66.393, -290.412],
+ [-68.997, -298.659],
+ [-82.018, -302.132],
+ [-105.452, -291.937],
+ [-98.942, -251.792],
+ [-96.121, -238.984],
+ [-84.618, -225.096],
+ [-60.317, -253.093],
+ [-52.505, -262.422]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 12",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 12,
+ "ty": "sh",
+ "ix": 13,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.023, -0.467],
+ [-0.439, 3.973],
+ [0.116, 2.695],
+ [6.298, 1.073],
+ [0.191, -0.131],
+ [-0.679, -5.585],
+ [5.77, 0.295],
+ [0.957, 2.268],
+ [8.514, 4.626],
+ [-2.385, -2.392],
+ [-1.376, -2.931],
+ [-0.681, -3.882],
+ [0.476, -4.029],
+ [5.315, -0.492],
+ [0.376, 7.714],
+ [2.91, 0.047],
+ [-3.496, -4.8],
+ [-7.653, -4.169],
+ [-1.301, -2.833],
+ [-0.343, -2.203],
+ [-0.844, -6.838],
+ [-13.626, -3.047],
+ [1.572, 8.436],
+ [0.446, 4.93],
+ [-0.26, 4.471],
+ [-0.269, 3.997],
+ [2.506, 5.995],
+ [0.347, -4.43],
+ [3.795, 0],
+ [2.924, 3.75]
+ ],
+ "o": [
+ [-5.27, 0.483],
+ [0.294, -2.71],
+ [-0.319, -7.583],
+ [-0.045, -0.262],
+ [0.31, 3.881],
+ [0.556, 4.577],
+ [-2.964, -0.154],
+ [-4.189, -9.934],
+ [-0.81, 4.954],
+ [2.265, 2.26],
+ [1.466, 3.119],
+ [0.707, 4.061],
+ [-0.637, 5.405],
+ [-7.222, 0.663],
+ [-1.777, -1.195],
+ [-1.545, 8.639],
+ [5.024, 6.911],
+ [3.059, 1.663],
+ [0.82, 1.777],
+ [1.061, 6.813],
+ [8.05, -5.969],
+ [-1.433, -7.314],
+ [-0.811, -4.364],
+ [-0.434, -4.724],
+ [0.216, -3.71],
+ [0.5, -7.476],
+ [0.212, 4.661],
+ [-0.294, 3.776],
+ [-6.315, 0],
+ [-0.397, 6.15]
+ ],
+ "v": [
+ [-94.818, -369.833],
+ [-97.639, -379.169],
+ [-97.423, -387.628],
+ [-104.801, -406.292],
+ [-105.234, -406.292],
+ [-103.716, -392.624],
+ [-105.452, -377.646],
+ [-110.443, -385.68],
+ [-130.622, -406.07],
+ [-125.418, -396.742],
+ [-117.822, -389.365],
+ [-115.433, -377.867],
+ [-114.133, -365.279],
+ [-124.55, -354.429],
+ [-140.387, -366.362],
+ [-146.679, -368.964],
+ [-140.822, -350.31],
+ [-122.596, -333.161],
+ [-111.095, -326.872],
+ [-110.01, -320.361],
+ [-106.971, -300.184],
+ [-71.601, -307.773],
+ [-78.763, -331.425],
+ [-80.061, -345.749],
+ [-81.366, -360.072],
+ [-79.411, -371.57],
+ [-82.669, -392.19],
+ [-83.103, -377.211],
+ [-86.354, -369.398],
+ [-90.695, -387.849]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 13",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 13,
+ "ty": "sh",
+ "ix": 14,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.627, 2.137],
+ [-2.179, 0.95],
+ [-3.853, 2.957],
+ [-1.953, 0.819],
+ [-2.157, 2.425],
+ [0.007, 3.055],
+ [1.614, 3.186],
+ [0.114, 1.786],
+ [0.025, 3.366],
+ [1.34, 3.219],
+ [7.314, 0.476],
+ [2.33, 0.793],
+ [1.429, 2.177],
+ [1.388, 1.106],
+ [4.45, 0.426],
+ [2.505, -2.186],
+ [1.936, -0.09],
+ [1.682, 0.736],
+ [3.513, -4.881],
+ [-0.475, -3.358],
+ [-0.061, -2.53],
+ [0.462, -3.521],
+ [-1.99, -2.695],
+ [-0.296, -4.045],
+ [-0.475, -3.021],
+ [-4.603, 0.622],
+ [-1.908, -2.284],
+ [0.47, -3.538],
+ [4.82, -2.989],
+ [4.423, -10.769],
+ [-6.613, -0.116]
+ ],
+ "o": [
+ [1.077, -1.408],
+ [5.208, -2.285],
+ [1.949, -1.498],
+ [3.71, -1.556],
+ [1.833, -2.071],
+ [-0.013, -4.783],
+ [-1.023, -2.014],
+ [-0.185, -2.883],
+ [-0.024, -3.07],
+ [-2.546, -6.109],
+ [-2.649, -0.163],
+ [-2.094, -0.712],
+ [-1.266, -1.933],
+ [-2.902, -2.31],
+ [-4.316, -0.41],
+ [-1.451, 1.27],
+ [-1.79, 0.074],
+ [-4.735, -2.071],
+ [-1.278, 1.785],
+ [0.278, 1.989],
+ [0.075, 3.202],
+ [3.03, 1.9],
+ [1.474, 2.006],
+ [0.376, 5.102],
+ [1.969, -3.791],
+ [3.948, -0.54],
+ [1.675, 2.006],
+ [-0.962, 7.232],
+ [4.933, 5.405],
+ [5.437, 1.286],
+ [1.461, -2.792]
+ ],
+ "v": [
+ [51.435, -320.796],
+ [58.379, -324.047],
+ [70.966, -331.859],
+ [76.825, -336.198],
+ [86.374, -339.672],
+ [88.545, -348.573],
+ [85.289, -359.859],
+ [82.468, -365.714],
+ [84.421, -374.607],
+ [81.599, -384.812],
+ [69.881, -393.925],
+ [62.069, -393.925],
+ [57.728, -399.781],
+ [52.957, -405.424],
+ [40.154, -411.067],
+ [31.691, -406.948],
+ [26.265, -403.033],
+ [20.189, -405.424],
+ [3.912, -404.343],
+ [1.529, -395.007],
+ [3.698, -390.02],
+ [0.878, -382.641],
+ [11.512, -380.036],
+ [12.376, -367.016],
+ [13.895, -354.651],
+ [21.49, -364.625],
+ [31.256, -359.638],
+ [33.643, -351.391],
+ [20.623, -335.552],
+ [29.303, -312.982],
+ [48.613, -312.115]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 14",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 14,
+ "ty": "sh",
+ "ix": 15,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.237, 1.203],
+ [0, 0],
+ [-4.98, -8.91],
+ [-3.877, -3.293],
+ [-1.482, -3.619],
+ [3.385, -7.043],
+ [6.404, -9.393],
+ [1.994, -0.934],
+ [2.633, -1.032],
+ [1.864, -1.426],
+ [6.431, -2.498],
+ [-1.031, -8.714],
+ [-2.47, -4.085],
+ [-8.389, -9.688],
+ [0, -17.999],
+ [1.293, -8.296],
+ [3.621, -19.68],
+ [0.185, -3.711],
+ [-0.63, -4.145],
+ [-1.981, -11.031],
+ [-0.733, -16.657],
+ [0.836, -17.426],
+ [0.786, -12.938],
+ [-0.598, -3.374],
+ [-0.967, -1.972],
+ [-2.153, -6.594],
+ [-4.943, -26.305],
+ [3.824, -5.961],
+ [-14.74, -11.096],
+ [-1.896, -9.35],
+ [-3.883, -0.891],
+ [-1.457, 0.009],
+ [-1.671, 0.517],
+ [-6.062, -1.286],
+ [-3.739, -5.495],
+ [-1.338, -4.593],
+ [-5.3, -35.214],
+ [0, 0],
+ [12.251, -2.179],
+ [5.761, 2.064],
+ [6.542, 17.263],
+ [3.313, 11.235],
+ [0.102, 0.221],
+ [2.071, 2.858],
+ [1.798, 3.063],
+ [2.6, -1.522],
+ [6.306, 2.99],
+ [10.158, 7.222],
+ [17.358, 49.79],
+ [24.359, -13.978],
+ [11.768, -0.753],
+ [8.246, 17.312],
+ [-1.209, 11.62],
+ [-1.383, 5.233],
+ [-1.675, 5.061],
+ [-7.055, 19.031],
+ [-20.117, 54.648],
+ [-0.171, 1.926],
+ [0.406, 3.686],
+ [2.445, 25.034],
+ [2.349, -2.153],
+ [7.538, -6.723],
+ [11.935, -6.625],
+ [8.774, 0.04],
+ [7.489, 2.375],
+ [9.709, 4.17],
+ [3.337, 1.106],
+ [1.568, -0.362],
+ [2.117, -0.148],
+ [4.066, 1.892],
+ [3.312, 1.908],
+ [3.689, 1.27],
+ [0.856, -1.023],
+ [0.975, -4.922],
+ [4.652, 1.589],
+ [-1.322, 9.36],
+ [-0.524, 2.736],
+ [-0.5, 2.808],
+ [-1.146, 5.004],
+ [-1.067, 2.432],
+ [-4.619, 1.958],
+ [-3.751, -2.162],
+ [-3.271, -1.653],
+ [-5.916, -2.76],
+ [-2.937, -1.309],
+ [-2.836, -0.754],
+ [-4, -0.491],
+ [-12.769, -1.81],
+ [-15.862, 18.417],
+ [2.19, 8.337],
+ [1.568, 9.606],
+ [2.695, 18.384],
+ [7.046, 12.537],
+ [-2.367, 6.412],
+ [-3.289, -5.921],
+ [-1.106, -1.377],
+ [-2.51, 0.492],
+ [1.007, 5.904],
+ [0.887, 1.834],
+ [1.191, 1.081],
+ [1.445, 4.103],
+ [-7.5, -3.635],
+ [-4.152, -3.809],
+ [-0.392, 1.204],
+ [0.019, 1.448],
+ [-4.97, -0.589],
+ [-2.933, -6.159],
+ [-2.813, -0.114],
+ [-0.885, -6.478],
+ [0.345, -4.061],
+ [0.156, -3.718],
+ [-0.456, -4.554],
+ [-0.704, -3.873],
+ [-1.565, -5.159],
+ [-4.614, -15.01],
+ [-1.299, -1.458],
+ [-27.304, 1.122],
+ [3.771, 4.488],
+ [6.118, 0.974],
+ [1.667, 7.861],
+ [-5.225, -0.312],
+ [-0.147, -3.039],
+ [-5.319, -2.702],
+ [-3.824, -0.671],
+ [-2.641, -2.506],
+ [-0.646, -9.63],
+ [-6.466, -2.343],
+ [0.799, 7.445],
+ [4.579, 0.319],
+ [2.032, 2.898],
+ [0.528, 3.456],
+ [1.933, 1.933],
+ [0.364, 2.285],
+ [-3.161, 2.669],
+ [-1.036, 1.54],
+ [3.498, 2.571],
+ [-0.175, -2.489],
+ [-1.325, -0.867],
+ [3.922, 1.376],
+ [4.082, 0.491],
+ [0, 0],
+ [0.286, 2.44],
+ [0.648, -0.722],
+ [1.687, -3.186],
+ [2.719, -2.612],
+ [-0.724, 6.837],
+ [-2.403, 2.137],
+ [-5.049, 5.552],
+ [0.156, 1.008],
+ [-1.786, 5.348],
+ [0, 1.245],
+ [0.11, 1.867],
+ [-5.564, 2.645],
+ [-6.701, -4.144]
+ ],
+ "o": [
+ [0, 0],
+ [11.517, 2.365],
+ [6.502, -0.09],
+ [2.798, 2.383],
+ [2.633, 6.461],
+ [4.193, 6.805],
+ [-1.408, 2.064],
+ [-2.084, 0.975],
+ [-1.777, 0.704],
+ [-5.233, 3.996],
+ [-3.134, 6.117],
+ [0.782, 6.6],
+ [12.033, 7.232],
+ [8.648, 9.999],
+ [0, 8.459],
+ [-3.104, 19.934],
+ [-0.716, 3.873],
+ [-0.191, 3.741],
+ [1.746, 11.449],
+ [2.78, 15.462],
+ [0.77, 17.443],
+ [-0.586, 12.292],
+ [-0.266, 4.317],
+ [0.287, 1.596],
+ [2.974, 6.044],
+ [7.693, 23.543],
+ [1.416, 7.55],
+ [11.31, 13.562],
+ [6.597, 4.971],
+ [3.985, 0.574],
+ [1.346, 0.304],
+ [1.859, -0.014],
+ [5.357, -1.637],
+ [6.41, 1.358],
+ [2.228, 3.268],
+ [9.275, 31.832],
+ [0, 0],
+ [-1.405, 13.929],
+ [-6.932, 1.236],
+ [-17.239, -6.191],
+ [-4.362, -11.521],
+ [-0.091, -0.303],
+ [-1.494, -3.087],
+ [-2.237, -3.079],
+ [-2.37, 2.105],
+ [-6.863, 4.029],
+ [-12.369, -5.855],
+ [-41.074, -29.236],
+ [-22.627, 14.781],
+ [-8.378, 4.807],
+ [-26.579, 1.703],
+ [-4.324, -9.09],
+ [0.584, -5.667],
+ [1.34, -5.053],
+ [6.302, -19.04],
+ [20.183, -54.46],
+ [0.987, -2.686],
+ [0.275, -3.144],
+ [-2.825, -25.617],
+ [-2.899, 1.506],
+ [-7.51, 6.895],
+ [-10.003, 8.926],
+ [-6.794, 3.767],
+ [-8.199, -0.049],
+ [-10.618, -3.365],
+ [-3.272, -1.399],
+ [-1.772, -0.59],
+ [-2.195, 0.507],
+ [-5.58, 0.359],
+ [-3.644, -1.695],
+ [-3.198, -1.851],
+ [-0.513, 1.369],
+ [0.549, 3.964],
+ [-0.802, 4.036],
+ [-6.882, -2.35],
+ [0.381, -2.703],
+ [0.467, -2.424],
+ [0.983, -5.487],
+ [0.668, -2.892],
+ [2.286, -5.175],
+ [4.786, -2.03],
+ [3.689, 2.121],
+ [5.185, 2.614],
+ [2.813, 1.311],
+ [3.1, 1.392],
+ [3.776, 1.007],
+ [12.742, 1.564],
+ [16.099, -18.18],
+ [-5.519, -5.185],
+ [-2.2, -8.362],
+ [-3.058, -18.721],
+ [-13.27, -4.489],
+ [-2.752, -4.889],
+ [2.788, -7.55],
+ [0.999, 1.793],
+ [1.552, 1.948],
+ [5.712, -1.114],
+ [-0.619, -3.628],
+ [-0.524, -1.09],
+ [-3.227, -2.931],
+ [-2.862, -8.1],
+ [5.025, 2.433],
+ [0.29, 0.269],
+ [0.362, -1.097],
+ [-0.079, -5.488],
+ [8.082, 0.975],
+ [1.56, -0.696],
+ [5.749, 0.229],
+ [0.597, 4.364],
+ [-0.323, 3.857],
+ [-0.171, 4.193],
+ [0.462, 4.617],
+ [0.925, 5.085],
+ [4.767, 15.724],
+ [1.531, 1.221],
+ [13.586, -14.847],
+ [-0.561, -7.665],
+ [-3.218, -3.824],
+ [-8.784, -1.392],
+ [-0.762, -3.587],
+ [2.571, 0.148],
+ [0.397, 8.164],
+ [3.566, 1.81],
+ [4.284, 0.761],
+ [5.09, 4.832],
+ [8.448, -0.974],
+ [-1.241, -7.002],
+ [-4.766, -0.006],
+ [-3.931, -0.262],
+ [-2.604, -3.711],
+ [-0.381, -2.497],
+ [-1.523, -1.524],
+ [-0.786, -4.979],
+ [1.123, -0.942],
+ [2.342, -3.479],
+ [-1.085, -0.803],
+ [0.119, 1.655],
+ [3.379, 2.212],
+ [-1.466, 3.047],
+ [-6.016, -0.722],
+ [0, 0],
+ [-1.036, -0.27],
+ [-2.263, 2.488],
+ [-2.379, 4.489],
+ [-2.182, 2.105],
+ [0.394, -3.702],
+ [3.488, -7.437],
+ [0.622, -0.688],
+ [-4.955, -0.671],
+ [0.421, -1.261],
+ [0, -1.663],
+ [-0.458, -7.747],
+ [5.905, -2.801],
+ [3.678, -2.76]
+ ],
+ "v": [
+ [37.115, -417.576],
+ [40.805, -417.576],
+ [65.107, -400.216],
+ [81.599, -396.964],
+ [87.459, -386.982],
+ [89.196, -366.581],
+ [92.016, -336.422],
+ [86.808, -332.515],
+ [79.863, -330.344],
+ [74.655, -326.216],
+ [56.648, -316.456],
+ [56.209, -294.753],
+ [59.899, -277.828],
+ [92.884, -255.265],
+ [104.817, -211.861],
+ [102.212, -186.688],
+ [92.016, -127.445],
+ [89.845, -115.948],
+ [91.365, -103.795],
+ [96.787, -68.647],
+ [103.731, -21.558],
+ [102.212, 31.171],
+ [100.263, 69.801],
+ [99.608, 82.601],
+ [103.08, 88.464],
+ [110.676, 108.857],
+ [129.774, 182.854],
+ [129.339, 206.07],
+ [167.964, 243.611],
+ [184.24, 261.839],
+ [195.522, 263.797],
+ [199.427, 264.664],
+ [204.418, 263.141],
+ [221.564, 262.93],
+ [238.92, 272.257],
+ [243.694, 285.491],
+ [266.048, 388.135],
+ [266.048, 389.003],
+ [247.167, 416.339],
+ [227.64, 413.743],
+ [194.654, 377.719],
+ [183.372, 342.784],
+ [183.155, 342.128],
+ [176.863, 333.234],
+ [170.351, 324.333],
+ [163.841, 329.974],
+ [143.879, 326.935],
+ [110.459, 307.414],
+ [24.745, 181.552],
+ [-45.559, 227.339],
+ [-74.423, 237.322],
+ [-126.285, 211.935],
+ [-132.574, 179.817],
+ [-129.324, 163.544],
+ [-124.983, 148.352],
+ [-104.367, 91.283],
+ [-43.606, -71.685],
+ [-41.003, -78.844],
+ [-42.088, -89.906],
+ [-50.551, -166.942],
+ [-57.928, -160.654],
+ [-80.282, -140.255],
+ [-111.745, -114.646],
+ [-134.093, -108.57],
+ [-157.531, -113.565],
+ [-187.91, -125.932],
+ [-197.893, -130.271],
+ [-204.62, -128.534],
+ [-211.348, -127.445],
+ [-224.365, -130.271],
+ [-234.781, -135.693],
+ [-244.547, -141.336],
+ [-246.5, -137.651],
+ [-243.462, -126.578],
+ [-255.616, -122.026],
+ [-264.726, -144.373],
+ [-262.559, -152.186],
+ [-261.474, -160.219],
+ [-258.002, -175.844],
+ [-256.267, -183.87],
+ [-244.981, -196.458],
+ [-231.309, -193.631],
+ [-221.331, -187.122],
+ [-203.318, -179.531],
+ [-194.637, -175.411],
+ [-185.524, -171.504],
+ [-173.374, -169.768],
+ [-136.263, -165.208],
+ [-88.746, -220.541],
+ [-102.847, -239.205],
+ [-108.056, -266.763],
+ [-116.954, -323.612],
+ [-149.502, -351.825],
+ [-152.974, -370.922],
+ [-134.745, -369.398],
+ [-132.574, -363.33],
+ [-124.766, -360.94],
+ [-121.727, -376.13],
+ [-123.68, -386.112],
+ [-126.936, -389.586],
+ [-136.698, -400.216],
+ [-126.72, -411.5],
+ [-112.613, -400.87],
+ [-111.095, -400.003],
+ [-111.527, -404.989],
+ [-104.801, -413.023],
+ [-87.656, -397.611],
+ [-82.448, -400.649],
+ [-73.554, -383.287],
+ [-73.121, -370.922],
+ [-74.857, -359.424],
+ [-73.554, -345.969],
+ [-72.47, -332.727],
+ [-67.695, -317.111],
+ [-53.373, -270.023],
+ [-48.164, -266.976],
+ [20.623, -283.469],
+ [16.933, -304.089],
+ [0.661, -308.43],
+ [-16.266, -326.216],
+ [-13.662, -339.237],
+ [-10.624, -333.594],
+ [-1.943, -315.8],
+ [10.426, -313.638],
+ [20.839, -309.297],
+ [27.132, -286.073],
+ [51.222, -283.69],
+ [48.4, -305.606],
+ [34.728, -305.826],
+ [23.66, -308.862],
+ [24.094, -320.796],
+ [18.886, -327.74],
+ [13.244, -334.464],
+ [21.49, -343.799],
+ [24.962, -347.919],
+ [24.745, -356.812],
+ [21.49, -355.953],
+ [23.66, -354.651],
+ [19.321, -349.877],
+ [12.81, -342.93],
+ [6.087, -363.544],
+ [5.649, -370.701],
+ [3.698, -368.964],
+ [-2.594, -360.94],
+ [-9.105, -348.573],
+ [-21.909, -348.352],
+ [-13.662, -353.127],
+ [-1.075, -373.74],
+ [0.661, -375.909],
+ [-4.981, -385.68],
+ [-3.245, -389.799],
+ [-4.981, -395.007],
+ [4.129, -412.369],
+ [25.179, -410.198]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 15",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [266.298, 419.219], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 17,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [1.982, 6.666],
+ [0, 0],
+ [14.14, 7.608],
+ [0, 0],
+ [12.383, -0.148],
+ [0, 0],
+ [6.875, -10.015],
+ [0, 0],
+ [-3.497, -3.079],
+ [0, 0],
+ [-4.492, 2.055],
+ [0, 0],
+ [-0.254, -8.393]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.986, -6.667],
+ [0, 0],
+ [-14.142, -7.608],
+ [0, 0],
+ [-12.382, 0.156],
+ [0, 0],
+ [-6.878, 10.024],
+ [0, 0],
+ [3.496, 3.087],
+ [0, 0],
+ [4.491, -2.057],
+ [0, 0],
+ [0.254, 8.403]
+ ],
+ "v": [
+ [-27.784, 29.317],
+ [-15.414, 42.553],
+ [-18.236, 53.189],
+ [7.372, 54.491],
+ [8.457, 43.641],
+ [25.168, 35.819],
+ [34.503, 30.611],
+ [47.091, 26.493],
+ [47.741, 11.301],
+ [41.665, -3.243],
+ [36.239, -29.931],
+ [19.526, -32.535],
+ [-1.525, -50.553],
+ [-18.236, -41.217],
+ [-43.193, -44.476],
+ [-45.144, -28.629],
+ [-46.882, -17.999],
+ [-35.814, -15.829],
+ [-31.039, 17.813],
+ [-26.265, 3.923],
+ [-13.895, 8.91]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [311.453, 54.742], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-7.449, 110.465],
+ [14.468, 62.722],
+ [16.638, 99.614]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.183, 22.235],
+ [5.622, 7.027],
+ [4.947, -0.663],
+ [0, 0],
+ [0, 0],
+ [4.106, 3.661],
+ [9.651, 10.13],
+ [0, 0],
+ [7.207, 26.37],
+ [0, 0],
+ [-0.708, 15.953],
+ [3.607, 24.249],
+ [0, 0],
+ [4.839, 16.838],
+ [12.522, 6.454],
+ [3.009, 11.768],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.343, 6.961],
+ [0, 0],
+ [4.23, 8.377],
+ [5.487, -0.548],
+ [0, 0],
+ [12.183, -4.659],
+ [0, 0],
+ [5.615, -7.559],
+ [0, 0],
+ [-2.076, -3.619],
+ [0, 0],
+ [5.691, -9.467],
+ [4.427, -0.148],
+ [-1.125, -4.831],
+ [0, 0],
+ [-9.565, -5.011],
+ [-2.669, -10.835],
+ [0, 0],
+ [14.274, -4.004],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [1.785, 9.115],
+ [1.9, -1.409],
+ [0, 0],
+ [4.746, 5.02],
+ [2.629, -3.062],
+ [0, 0],
+ [6.478, 5.364],
+ [3.197, -3.284],
+ [-4.427, -4.962],
+ [0, 0],
+ [5.961, -2.85],
+ [2.604, 3.931],
+ [5.012, 0.492],
+ [-5.015, -9.656],
+ [-8.627, -7.706],
+ [0, 0],
+ [-2.53, -14.373],
+ [-2.772, -3.423],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4.619, -1.925],
+ [3.046, -14.552],
+ [-2.87, -5.266],
+ [-0.627, 6.117],
+ [0, 0],
+ [0, 0],
+ [-8.551, 0.107],
+ [0, 0],
+ [-22.111, 3.825],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-33.436, -7.74],
+ [-11.867, 6.157],
+ [0, 0],
+ [-30.678, -30.718],
+ [-7.518, -0.868],
+ [0, 0],
+ [0, 0],
+ [-10.535, -15.519],
+ [-10.506, 5.954]
+ ],
+ "o": [
+ [-5.18, -22.234],
+ [-5.626, -7.025],
+ [-4.95, 0.664],
+ [0, 0],
+ [0, 0],
+ [-4.103, -3.66],
+ [-9.652, -10.123],
+ [0, 0],
+ [-7.209, -26.369],
+ [0, 0],
+ [0.708, -15.953],
+ [-3.613, -24.256],
+ [0, 0],
+ [-4.845, -16.845],
+ [-12.53, -6.46],
+ [-3.011, -11.777],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0.738, -14.978],
+ [0, 0],
+ [-4.225, -8.378],
+ [-5.482, 0.548],
+ [0, 0],
+ [-12.181, 4.661],
+ [0, 0],
+ [-5.613, 7.557],
+ [0, 0],
+ [2.072, 3.62],
+ [0, 0],
+ [-5.697, 9.458],
+ [-4.426, 0.147],
+ [1.123, 4.831],
+ [0, 0],
+ [9.56, 5.02],
+ [2.67, 10.825],
+ [0, 0],
+ [-14.277, 4.005],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.781, -9.106],
+ [-1.9, 1.409],
+ [0, 0],
+ [-4.747, -5.02],
+ [-2.629, 3.063],
+ [0, 0],
+ [-6.478, -5.355],
+ [-3.198, 3.292],
+ [4.423, 4.964],
+ [0, 0],
+ [-5.966, 2.842],
+ [-2.608, -3.931],
+ [-5.017, -0.491],
+ [5.007, 9.647],
+ [8.627, 7.706],
+ [0, 0],
+ [2.53, 14.372],
+ [2.773, 3.423],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4.62, 1.934],
+ [-3.051, 14.544],
+ [2.866, 5.256],
+ [0.626, -6.11],
+ [0, 0],
+ [0, 0],
+ [8.545, -0.106],
+ [0, 0],
+ [22.106, -3.823],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [33.437, 7.73],
+ [11.862, -6.167],
+ [0, 0],
+ [30.677, 30.726],
+ [7.518, 0.86],
+ [0, 0],
+ [0, 0],
+ [10.544, 15.51],
+ [10.507, -5.962]
+ ],
+ "v": [
+ [260.14, 371.982],
+ [232.143, 271.065],
+ [209.139, 264.768],
+ [191.124, 273.016],
+ [179.405, 266.725],
+ [175.499, 253.049],
+ [146.853, 230.914],
+ [123.197, 203.569],
+ [120.809, 166.242],
+ [94.986, 83.342],
+ [96.721, 9.336],
+ [93.033, -63.582],
+ [85.215, -119.359],
+ [99.76, -230.259],
+ [70.462, -267.152],
+ [53.965, -286.248],
+ [50.059, -307.958],
+ [53.314, -318.809],
+ [73.93, -330.742],
+ [89.776, -341.379],
+ [82.616, -365.464],
+ [82.395, -385.216],
+ [74.581, -396.935],
+ [60.693, -397.368],
+ [33.13, -414.297],
+ [20.762, -406.263],
+ [1.447, -409.521],
+ [-2.46, -391.727],
+ [-4.847, -383.259],
+ [-0.072, -378.485],
+ [-6.148, -363.293],
+ [-15.698, -348.536],
+ [-21.557, -343.549],
+ [-17.217, -335.949],
+ [-7.449, -314.903],
+ [19.676, -301.873],
+ [19.46, -279.526],
+ [-21.991, -276.921],
+ [-46.734, -263.9],
+ [-57.368, -269.321],
+ [-76.9, -331.609],
+ [-79.07, -360.042],
+ [-79.07, -382.178],
+ [-84.496, -398.237],
+ [-87.534, -382.178],
+ [-96.431, -404.748],
+ [-109.018, -410.824],
+ [-108.801, -388.254],
+ [-118.566, -399.327],
+ [-134.626, -408.441],
+ [-132.238, -395.634],
+ [-122.908, -387.599],
+ [-122.257, -359.821],
+ [-135.928, -359.821],
+ [-144.608, -372.196],
+ [-151.553, -359.387],
+ [-131.587, -334.213],
+ [-116.615, -325.753],
+ [-104.027, -255.219],
+ [-99.035, -233.952],
+ [-88.185, -222.012],
+ [-138.967, -161.46],
+ [-188.668, -168.191],
+ [-226.428, -184.472],
+ [-245.092, -194.889],
+ [-258.98, -171.009],
+ [-262.453, -132.379],
+ [-249.431, -126.09],
+ [-251.168, -137.154],
+ [-246.828, -144.32],
+ [-213.624, -130.865],
+ [-200.604, -133.035],
+ [-126.814, -113.283],
+ [-49.118, -172.745],
+ [-39.355, -78.347],
+ [-131.154, 177.316],
+ [-98.386, 232.437],
+ [-43.691, 222.454],
+ [24.234, 178.829],
+ [80.012, 278.657],
+ [152.711, 329.447],
+ [169.421, 321.635],
+ [182.008, 337.26],
+ [201.322, 388.042],
+ [249.505, 413.002]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [268.329, 420.262], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 2,
+ "ty": 4,
+ "nm": "mAN Outlines 3",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 0,
+ "s": [767.12, 666.589, 0],
+ "to": [-1.5, 7.333, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 75.125,
+ "s": [758.12, 710.589, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 150.251,
+ "s": [767.12, 666.589, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 225.875,
+ "s": [758.12, 710.589, 0],
+ "to": [0, 0, 0],
+ "ti": [-1.5, 7.333, 0]
+ },
+ { "t": 301, "s": [767.12, 666.589, 0] }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": { "a": 0, "k": [266.951, 419.734, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "hasMask": true,
+ "masksProperties": [
+ {
+ "inv": false,
+ "mode": "a",
+ "pt": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -3],
+ [0, 0],
+ [0, 0],
+ [-41, -9],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4, 92],
+ [0, 0],
+ [0, 0],
+ [0, 1.5]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 3],
+ [0, 0],
+ [0, 0],
+ [41, 9],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4, -92],
+ [0, 0],
+ [0, 0],
+ [0, -1.5]
+ ],
+ "v": [
+ [318.963, -21.501],
+ [265.463, -14.501],
+ [241.963, 9.999],
+ [216.963, 149.499],
+ [165.963, 208.999],
+ [116.463, 219.999],
+ [60.463, 196.999],
+ [91.963, 234.499],
+ [73.463, 327.999],
+ [-43.037, 327.999],
+ [-5.037, 364.499],
+ [63.963, 434.499],
+ [78.963, 655.999],
+ [183.463, 765.999],
+ [310.963, 810.499],
+ [416.463, 836.499],
+ [542.963, 855.999],
+ [615.963, 820.999],
+ [630.963, 715.999],
+ [628.963, 611.999],
+ [624.963, 500.499],
+ [618.463, 350.999],
+ [376.463, 4.499]
+ ],
+ "c": true
+ },
+ "ix": 1
+ },
+ "o": { "a": 0, "k": 100, "ix": 3 },
+ "x": { "a": 0, "k": 0, "ix": 4 },
+ "nm": "Mask 1"
+ }
+ ],
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.761, 0.367],
+ [0.369, -1.762],
+ [0, 0],
+ [-1.761, -0.368],
+ [-0.369, 1.759],
+ [0, 0]
+ ],
+ "o": [
+ [-1.76, -0.37],
+ [0, 0],
+ [-0.368, 1.76],
+ [1.761, 0.369],
+ [0, 0],
+ [0.365, -1.762]
+ ],
+ "v": [
+ [1.197, -5.736],
+ [-2.656, -3.213],
+ [-3.716, 1.889],
+ [-1.194, 5.737],
+ [2.66, 3.216],
+ [3.719, -1.886]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [267.841, 63.082], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-3.229, -6.199],
+ [-2.567, -14.578],
+ [8.467, -2.57],
+ [10.245, 44.525],
+ [-7.083, 15.24]
+ ],
+ "o": [
+ [3.23, 6.208],
+ [2.567, 14.584],
+ [-8.467, 2.572],
+ [-10.248, -44.525],
+ [5.262, -11.31]
+ ],
+ "v": [
+ [0.286, -57.518],
+ [24.375, 35.154],
+ [20.686, 68.573],
+ [-10.999, 27.34],
+ [-22.07, -60.555]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [502.716, 752.85], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-7.313, -10.482],
+ [-6.195, -17.229],
+ [5.074, -1.844],
+ [10.449, 27.557],
+ [3.223, 16.052],
+ [-9.91, 0.319]
+ ],
+ "o": [
+ [7.31, 10.482],
+ [6.191, 17.232],
+ [-5.076, 1.843],
+ [-10.454, -27.549],
+ [-3.218, -16.051],
+ [9.913, -0.32]
+ ],
+ "v": [
+ [-2.137, -52.305],
+ [21.734, 13.888],
+ [25.64, 62.067],
+ [0.901, 31.897],
+ [-19.72, -35.813],
+ [-20.804, -63.589]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [366.462, 559.481], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [3.451, 3.251],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4.692, 11.629],
+ [0, 0],
+ [0, 0],
+ [2.236, -14.503]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [-3.448, -3.251],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4.689, -11.637],
+ [0, 0],
+ [0, 0],
+ [-2.239, 14.503]
+ ],
+ "v": [
+ [13.957, -8.681],
+ [24.156, 55.344],
+ [11.787, 52.304],
+ [-0.367, 22.792],
+ [-14.038, 1.09],
+ [-21.2, -1.95],
+ [-19.464, -37.54],
+ [-8.83, -55.556],
+ [14.824, -50.995],
+ [0.284, -35.156]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [452.878, 739.53], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-1.426, 6.135],
+ [0, 0],
+ [0, 0],
+ [3.537, 2.676],
+ [0, 0],
+ [0, 0],
+ [-5.049, -16.322],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.426, -6.125],
+ [0, 0],
+ [0, 0],
+ [-3.538, -2.679],
+ [0, 0],
+ [0, 0],
+ [5.046, 16.33],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [30.52, 51.977],
+ [30.302, 36.998],
+ [34.86, 22.898],
+ [15.328, -40.48],
+ [2.524, -42.215],
+ [-5.07, -51.977],
+ [-30.247, -39.612],
+ [-29.812, -7.927],
+ [-21.782, 13.127],
+ [-16.573, 13.561],
+ [4.477, 20.506]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [315.216, 561.25], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [2.797, -15.953],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [27.683, 23.494],
+ [0, 0],
+ [14.216, -7.731],
+ [17.648, 6.437],
+ [-4.778, 21.702],
+ [0, 0],
+ [-27.901, -5.675],
+ [-18.574, -4.111],
+ [0, 0],
+ [0, 0],
+ [30.157, -16.132],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-5.843, -20.08],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-16.702, -5.2],
+ [0, 0],
+ [-16.355, -10.98],
+ [-2.121, -3.252]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [-2.797, 15.953],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-43.268, -36.713],
+ [0, 0],
+ [-14.215, 7.723],
+ [-17.648, -6.437],
+ [4.775, -21.701],
+ [0, 0],
+ [11.694, 2.374],
+ [25.759, 5.716],
+ [0, 0],
+ [0, 0],
+ [-30.158, 16.142],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [5.839, 20.08],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [16.697, 5.193],
+ [0, 0],
+ [16.354, 10.974],
+ [2.122, 3.251]
+ ],
+ "v": [
+ [156.174, 122.958],
+ [144.889, 119.92],
+ [129.481, 142.276],
+ [127.31, 173.747],
+ [142.718, 175.698],
+ [135.775, 189.151],
+ [69.363, 146.831],
+ [4.908, 35.063],
+ [-79.298, 87.589],
+ [-124.654, 90.193],
+ [-152.215, 33.547],
+ [-74.305, -178.27],
+ [-21.137, -183.477],
+ [36.811, -174.583],
+ [78.478, -161.562],
+ [72.618, -58.255],
+ [29.866, -58.477],
+ [-5.725, -40.672],
+ [-6.158, -84.297],
+ [-30.248, -29.174],
+ [-15.49, -35.464],
+ [-19.614, -3.346],
+ [-6.809, 20.307],
+ [6.645, 16.398],
+ [28.564, 22.042],
+ [76.095, 66.755],
+ [104.089, 67.182],
+ [131.651, 97.57],
+ [154.871, 114.277]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [288.525, 560.598], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [35.697, 8.084],
+ [8.992, -1.924],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [9.271, -7.018],
+ [17.26, 4.66],
+ [0, 0],
+ [-4.328, 11.204],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [2.631, 15.65],
+ [0, 0],
+ [-14.597, 1.859],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-16.423, -0.77],
+ [0, 0],
+ [0, 0],
+ [-5.679, -1.147],
+ [0, 0],
+ [-9.556, -4.717],
+ [-2.091, -22.127],
+ [0, 0],
+ [-4.447, -18.761]
+ ],
+ "o": [
+ [0, 0],
+ [-35.696, -8.091],
+ [-8.991, 1.925],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-9.266, 7.018],
+ [-17.258, -4.651],
+ [0, 0],
+ [4.328, -11.194],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-2.628, -15.65],
+ [0, 0],
+ [14.594, -1.859],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [16.423, 0.769],
+ [0, 0],
+ [0, 0],
+ [5.675, 1.155],
+ [0, 0],
+ [9.558, 4.718],
+ [2.092, 22.128],
+ [0, 0],
+ [4.446, 18.771]
+ ],
+ "v": [
+ [140.447, 144.492],
+ [92.703, 128.866],
+ [17.394, 119.097],
+ [-11.252, 123.658],
+ [0.901, 86.545],
+ [-9.515, -10.678],
+ [-70.719, 42.706],
+ [-109.565, 48.129],
+ [-137.342, 35.975],
+ [-138.644, 14.706],
+ [-128.01, -2.867],
+ [-95.892, -0.262],
+ [-43.804, -62.116],
+ [-59.867, -80.132],
+ [-70.067, -132.437],
+ [-48.362, -142.632],
+ [-27.745, -138.514],
+ [-14.073, -106.608],
+ [-7.563, -102.268],
+ [19.131, -115.288],
+ [61.67, -116.37],
+ [65.142, -120.498],
+ [83.589, -119.416],
+ [95.959, -117.459],
+ [110.932, -104.872],
+ [140.88, -67.324],
+ [125.69, 46.613],
+ [134.154, 101.514]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [227.568, 257.607], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.588, 0.476],
+ [0.213, -2.874],
+ [3.634, 0.254],
+ [0.058, 1.703],
+ [-1.675, 1.286]
+ ],
+ "o": [
+ [1.744, -0.327],
+ [-0.225, 3.047],
+ [-1.58, -0.106],
+ [-0.09, -2.474],
+ [2.44, -1.865]
+ ],
+ "v": [
+ [3.626, -6.581],
+ [7.315, -3.329],
+ [-4.399, 6.653],
+ [-7.438, 3.616],
+ [-2.663, -1.16]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [266.801, 86.127], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.29, -15.389],
+ [-2.067, -2.8],
+ [-1.248, -1.727],
+ [-1.639, -3.464],
+ [-1.142, -3.801],
+ [-1.781, -3.169],
+ [-1.642, -1.638],
+ [-3.53, -0.581],
+ [3.701, 19.521],
+ [-0.037, 12.048],
+ [-2.211, 2.315],
+ [0.265, 0.729],
+ [3.386, 1.024]
+ ],
+ "o": [
+ [3.674, 1.204],
+ [1.268, 1.72],
+ [2.408, 3.342],
+ [1.585, 3.357],
+ [1.122, 3.71],
+ [0.77, 1.377],
+ [2.502, 2.498],
+ [-3.865, -19.351],
+ [-5.811, -6.323],
+ [0.013, -4.42],
+ [0.651, -0.69],
+ [-3.117, -1.302],
+ [-10.708, 7.379]
+ ],
+ "v": [
+ [170.134, 316.307],
+ [177.513, 323.252],
+ [181.202, 328.672],
+ [189.015, 339.31],
+ [192.7, 351.031],
+ [196.172, 362.305],
+ [200.512, 366.867],
+ [208.759, 371.854],
+ [197.257, 313.703],
+ [183.806, 284.622],
+ [187.274, 273.781],
+ [189.015, 271.823],
+ [178.164, 269.44]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-9.963, -6.593],
+ [-8.403, 0.787],
+ [-0.098, 10.875],
+ [0.872, 4.906],
+ [7.906, 27.239],
+ [1.957, 2.866],
+ [9.164, -0.646],
+ [3.16, -2.04],
+ [0.95, -3.416],
+ [-1.448, -3.538],
+ [-1.815, -2.555],
+ [-1.097, -2.768],
+ [-0.966, -5.144],
+ [-2.441, -12.129],
+ [2.916, -2.122],
+ [2.359, 0.899]
+ ],
+ "o": [
+ [6.317, 4.184],
+ [9.941, -0.942],
+ [0.04, -4.733],
+ [-5.216, -29.383],
+ [-1.316, -4.537],
+ [-3.64, -5.316],
+ [-4.165, 0.287],
+ [-2.871, 1.858],
+ [-1.356, 4.896],
+ [1.278, 3.121],
+ [1.883, 2.652],
+ [1.876, 4.717],
+ [2.302, 12.225],
+ [0.802, 3.995],
+ [-3.564, 2.587],
+ [3.911, 11.554]
+ ],
+ "v": [
+ [220.696, 403.106],
+ [244.563, 410.271],
+ [259.537, 388.349],
+ [257.366, 373.378],
+ [238.053, 288.75],
+ [233.499, 275.943],
+ [208.759, 268.138],
+ [197.692, 272.692],
+ [190.53, 280.284],
+ [192.048, 295.039],
+ [197.475, 303.286],
+ [203.116, 311.32],
+ [206.588, 328.026],
+ [213.317, 361.661],
+ [214.617, 378.154],
+ [200.946, 375.771]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.908, 1.924],
+ [-0.156, -19.835],
+ [-4.16, -1.048],
+ [-8.562, 9.802]
+ ],
+ "o": [
+ [-7.722, 11.947],
+ [4.614, 0.597],
+ [-3.693, -17.436],
+ [-2.637, -1.197]
+ ],
+ "v": [
+ [162.973, 262.93],
+ [150.386, 309.362],
+ [162.104, 313.268],
+ [170.785, 266.615]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [11.314, 12.324],
+ [2.04, 1.179],
+ [7.276, 3.915],
+ [3.721, 3.726],
+ [8.473, 10.163],
+ [1.774, 1.032],
+ [2.26, 1.049],
+ [6.125, -3.21],
+ [-58.947, -27.277],
+ [-3.161, 11.491],
+ [-9.63, 6.282]
+ ],
+ "o": [
+ [-1.569, -1.711],
+ [-10.268, 3.864],
+ [-4.172, -2.243],
+ [-9.43, -9.434],
+ [-1.764, -2.122],
+ [-2.325, -1.351],
+ [-1.173, 8.164],
+ [22.164, 64.058],
+ [-3.177, -12.685],
+ [3.742, -13.585],
+ [-14.195, -9.695]
+ ],
+ "v": [
+ [129.122, 215.841],
+ [124.13, 210.846],
+ [93.102, 208.461],
+ [81.166, 198.479],
+ [55.123, 169.62],
+ [49.919, 163.757],
+ [41.891, 161.153],
+ [30.171, 177.432],
+ [145.615, 320.646],
+ [147.131, 282.451],
+ [166.661, 250.555]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.202, 18.859],
+ [1.334, -1.588],
+ [0.229, -4.112],
+ [-5.7, -7.903],
+ [-2.981, 1.287]
+ ],
+ "o": [
+ [-2.047, 1.368],
+ [-2.256, 2.703],
+ [-0.776, 14.045],
+ [2.837, -1.432],
+ [-8.357, -10.358]
+ ],
+ "v": [
+ [14.98, 106.472],
+ [8.904, 110.158],
+ [5.649, 121.443],
+ [16.499, 159.203],
+ [25.613, 155.51]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 5,
+ "ty": "sh",
+ "ix": 6,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.815, 6.813],
+ [6.367, -3.186],
+ [-1.797, -9.041],
+ [-5.769, -4.102],
+ [-4.193, -1.31],
+ [-2.228, -1.302],
+ [-1.712, -2.039],
+ [-5.261, -5.51],
+ [-0.683, 0.45],
+ [-1.276, 3.97],
+ [-0.012, 2.154],
+ [0.771, 2.457],
+ [4.921, 16.665]
+ ],
+ "o": [
+ [-6.368, 3.186],
+ [-2.305, 9.05],
+ [1.745, 8.754],
+ [4.083, -0.581],
+ [3.177, 0.99],
+ [1.908, 1.131],
+ [5.216, 6.183],
+ [0.303, 0.312],
+ [-0.265, -5.398],
+ [0.758, -2.351],
+ [0.012, -1.851],
+ [-5.392, -17.149],
+ [-9.626, -1.008]
+ ],
+ "v": [
+ [41.891, 93.018],
+ [22.792, 102.567],
+ [22.575, 131.213],
+ [32.992, 152.693],
+ [44.711, 155.297],
+ [53.609, 158.115],
+ [59.247, 164.411],
+ [74.655, 182.206],
+ [75.957, 183.076],
+ [77.91, 170.703],
+ [80.297, 163.323],
+ [78.127, 155.945],
+ [62.069, 104.737]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 6",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 6,
+ "ty": "sh",
+ "ix": 7,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.79, -1.269],
+ [-1.379, -1.073],
+ [-0.797, -2.571],
+ [-5.233, -16.272],
+ [0.023, -2.04],
+ [0.884, -2.743],
+ [0.033, -3.138],
+ [-0.544, -3.889],
+ [-4.132, -2.432],
+ [-3.914, 7.222],
+ [0.779, 4.61],
+ [9.258, 26.254],
+ [2.152, 3.521],
+ [9.496, -2.129],
+ [8.972, -3.324]
+ ],
+ "o": [
+ [2.146, 0.467],
+ [1.156, 0.908],
+ [5.242, 16.911],
+ [0.909, 2.825],
+ [-0.034, 2.374],
+ [-0.901, 2.776],
+ [-0.044, 4.513],
+ [3.594, 3.382],
+ [5.388, 3.169],
+ [1.867, -3.441],
+ [-5.212, -30.8],
+ [-1.605, -4.562],
+ [-3.511, -5.766],
+ [-9.126, 2.04],
+ [2.31, 5.019]
+ ],
+ "v": [
+ [59.464, 97.578],
+ [66.408, 99.307],
+ [69.446, 106.685],
+ [84.638, 155.297],
+ [87.026, 163.544],
+ [84.421, 171.791],
+ [82.25, 180.685],
+ [84.855, 192.836],
+ [95.485, 202.385],
+ [124.13, 202.599],
+ [123.913, 186.974],
+ [101.561, 102.567],
+ [96.571, 89.766],
+ [73.786, 78.482],
+ [47.966, 89.979]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 7",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 7,
+ "ty": "sh",
+ "ix": 8,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.991, -12.006],
+ [-5.147, 3.318],
+ [0.651, 8.598]
+ ],
+ "o": [
+ [5.512, -2.948],
+ [-0.59, -8.664],
+ [-5.195, 11.8]
+ ],
+ "v": [
+ [-1.943, 107.776],
+ [14.763, 99.094],
+ [13.682, 72.406]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 8",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 8,
+ "ty": "sh",
+ "ix": 9,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [31.037, 3.768],
+ [10.552, -0.336],
+ [9.197, -1.933],
+ [20.691, -58.464],
+ [2.424, -9.05],
+ [-2.351, -10.999],
+ [-19.834, -3.562],
+ [-8.5, 3.586],
+ [-7.071, 4.316],
+ [-19.899, 13.832],
+ [1.883, 1.924],
+ [-3.342, 22.512],
+ [29.575, -15.479],
+ [0.128, 4.947],
+ [-2.536, 1.359],
+ [-3.459, 1.817],
+ [-21.844, 11.146],
+ [-14.978, 33.362],
+ [-4.111, -0.426],
+ [0.962, -2.179],
+ [6.859, -15.272],
+ [0.304, -1.926],
+ [-0.122, -3.064],
+ [-0.491, -9.139],
+ [-13.046, 6.298],
+ [-5.373, 0.452],
+ [-3.722, -2.138],
+ [-0.656, 0.311],
+ [0.233, 32.282]
+ ],
+ "o": [
+ [-10.747, -1.301],
+ [-10.343, 0.328],
+ [-21.444, 58.193],
+ [-3.058, 8.647],
+ [-2.579, 9.632],
+ [4.037, 18.876],
+ [9.106, 1.63],
+ [7.506, -3.169],
+ [21.325, -13.021],
+ [-2.33, -1.179],
+ [-11.355, -11.572],
+ [-29.26, 15.094],
+ [-2.842, 1.49],
+ [-0.084, -3.382],
+ [4.058, -2.179],
+ [22.127, -11.579],
+ [14.892, -33.298],
+ [1.319, -2.933],
+ [3.774, 0.394],
+ [-6.937, 15.641],
+ [-1.154, 2.58],
+ [-0.421, 2.687],
+ [0.388, 9.671],
+ [11.842, -5.936],
+ [4.532, -2.186],
+ [6.183, -0.516],
+ [1.073, 0.623],
+ [1.572, -31.201],
+ [-24.069, -10.376]
+ ],
+ "v": [
+ [10.426, -37.397],
+ [-22.126, -40.435],
+ [-50.334, -35.227],
+ [-115.001, 139.673],
+ [-123.03, 165.927],
+ [-124.983, 195.442],
+ [-91.129, 230.164],
+ [-60.751, 227.995],
+ [-38.832, 215.841],
+ [22.792, 174.607],
+ [16.282, 169.833],
+ [0.227, 114.065],
+ [-90.477, 159.851],
+ [-98.509, 158.982],
+ [-88.958, 151.826],
+ [-77.678, 146.396],
+ [-11.276, 112.549],
+ [33.643, 11.642],
+ [41.891, -1.159],
+ [43.193, 5.786],
+ [23.226, 50.916],
+ [19.754, 58.517],
+ [20.189, 67.632],
+ [21.056, 96.055],
+ [60.332, 77.18],
+ [74.655, 71.75],
+ [90.497, 75.656],
+ [93.319, 76.958],
+ [97.221, -17.865]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 9",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 9,
+ "ty": "sh",
+ "ix": 10,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.746, 1.368],
+ [3.112, 1.434],
+ [6.212, 2.547],
+ [2.894, 1.564],
+ [6.64, 0.713],
+ [1.089, -1.163],
+ [-0.164, -1.007],
+ [0.123, -5.567],
+ [3.805, 0.254],
+ [0.835, -4.053],
+ [1.212, -6.977],
+ [4.503, -1.533],
+ [0.282, -3.193],
+ [-1.287, 0.483],
+ [0.258, -5.584],
+ [4.414, -1.768],
+ [-0.119, -7.772],
+ [-5.868, 1.736],
+ [0.164, 3.416],
+ [-1.213, 2.416],
+ [-2.138, 0.181],
+ [-2.097, -1.302],
+ [-2.109, -1.212],
+ [-10.077, 2.17],
+ [-0.077, 1.801],
+ [-2.892, -1.268],
+ [-4.831, -2.129],
+ [-5.638, 7.869]
+ ],
+ "o": [
+ [-2.756, -0.794],
+ [-6.31, -2.89],
+ [-3.321, -1.367],
+ [-5.27, -2.858],
+ [-1.729, -0.18],
+ [-1.122, 1.196],
+ [4.794, -1.474],
+ [-0.102, 4.587],
+ [-6.293, -0.425],
+ [2.915, -1.27],
+ [-0.758, 4.374],
+ [-2.838, 0.974],
+ [0.982, -0.113],
+ [3.836, -1.425],
+ [-0.222, 4.741],
+ [-6.122, 2.456],
+ [0.082, 5.315],
+ [-0.184, -3.366],
+ [-0.139, -2.94],
+ [1.354, -2.695],
+ [2.035, -0.163],
+ [2.629, 1.629],
+ [7.425, 4.266],
+ [-0.43, -0.941],
+ [0.226, -5.234],
+ [6.015, 2.639],
+ [-1.715, -13.799],
+ [-4.303, -1.016]
+ ],
+ "v": [
+ [-187.693, -165.208],
+ [-196.808, -169.335],
+ [-215.254, -177.794],
+ [-225.015, -181.479],
+ [-241.291, -190.815],
+ [-245.849, -187.555],
+ [-248.236, -184.083],
+ [-228.488, -180.833],
+ [-237.82, -178.662],
+ [-251.491, -173.887],
+ [-233.045, -171.939],
+ [-248.236, -168.465],
+ [-254.747, -161.956],
+ [-251.057, -163.692],
+ [-235.649, -161.734],
+ [-249.104, -157.615],
+ [-258.653, -139.386],
+ [-249.972, -128.323],
+ [-253.228, -136.782],
+ [-250.189, -144.16],
+ [-245.849, -149.37],
+ [-238.47, -145.675],
+ [-231.527, -141.557],
+ [-208.309, -134.391],
+ [-210.263, -137.862],
+ [-200.931, -138.519],
+ [-182.268, -130.492],
+ [-174.025, -163.471]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 10",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 10,
+ "ty": "sh",
+ "ix": 11,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.531, 14.88],
+ [1.622, 11.015],
+ [-0.287, 3.513],
+ [-1.135, 6.2],
+ [-2.805, 18.172],
+ [2.124, 12.965],
+ [8.438, 6.543],
+ [8.004, 5.921],
+ [1.691, 1.016],
+ [3.685, 0.598],
+ [4, -1.384],
+ [1.7, -0.409],
+ [3.005, -0.148],
+ [12.484, -9.4],
+ [2.114, -2.319],
+ [6.129, -7.01],
+ [23.438, -27.23],
+ [2.687, 0.319],
+ [0.126, 1.048],
+ [0.319, 1.531],
+ [4.088, 0.524],
+ [3.125, -0.613],
+ [1.257, -4.284],
+ [-3.506, -3.923],
+ [-1.523, -0.629],
+ [-5.471, -1.63],
+ [-9.917, 1.99],
+ [-9.455, 8.689],
+ [-19.048, 17.304],
+ [-2.989, -0.155],
+ [-0.082, -1.884],
+ [1.551, -1.441],
+ [5.04, -5.396],
+ [-3.096, -27.008],
+ [0.376, -3.415],
+ [1.077, -2.882],
+ [3.165, -8.492],
+ [-24.081, -3.293],
+ [-19.77, -8.419]
+ ],
+ "o": [
+ [-1.846, -10.859],
+ [-0.582, -3.931],
+ [0.483, -5.898],
+ [3.368, -18.474],
+ [1.925, -12.464],
+ [-2.028, -12.406],
+ [-7.968, -6.182],
+ [-1.45, -1.073],
+ [-2.436, -1.465],
+ [-4.168, -0.688],
+ [-1.524, 0.524],
+ [-2.551, 0.622],
+ [-20.571, 1.008],
+ [-2.326, 1.746],
+ [-6.517, 7.123],
+ [-23.604, 26.984],
+ [-2.145, 2.49],
+ [-1.654, -0.205],
+ [-0.377, -3.111],
+ [-4.402, -0.664],
+ [-3.312, -0.427],
+ [-4.839, 0.95],
+ [-1.316, 4.454],
+ [0.962, 1.072],
+ [5.666, 2.336],
+ [7.907, 2.35],
+ [15.057, -3.013],
+ [19.007, -17.477],
+ [2.81, -2.546],
+ [1.138, 0.058],
+ [0.098, 2.251],
+ [-6.007, 5.577],
+ [3.12, 26.33],
+ [0.463, 3.996],
+ [-0.286, 2.645],
+ [-3.333, 8.919],
+ [23.294, -7.764],
+ [25.415, 3.472],
+ [-0.64, -16.117]
+ ],
+ "v": [
+ [90.063, -69.949],
+ [84.855, -103.795],
+ [83.336, -115.948],
+ [86.592, -134.391],
+ [96.14, -189.947],
+ [97.005, -229.87],
+ [81.383, -257.648],
+ [56.86, -271.971],
+ [52.74, -276.091],
+ [42.975, -279.128],
+ [27.567, -279.563],
+ [24.094, -277.18],
+ [15.197, -276.745],
+ [-39.483, -266.109],
+ [-46.211, -259.383],
+ [-65.307, -237.469],
+ [-134.745, -156.747],
+ [-142.124, -150.449],
+ [-144.727, -153.055],
+ [-141.472, -159.352],
+ [-153.192, -160.867],
+ [-165.128, -162.169],
+ [-174.454, -147.846],
+ [-174.454, -127.445],
+ [-169.246, -125.065],
+ [-152.541, -118.987],
+ [-126.72, -115.735],
+ [-90.261, -140.032],
+ [-34.714, -190.815],
+ [-26.249, -197.538],
+ [-23.211, -194.499],
+ [-27.985, -188.423],
+ [-44.908, -172.373],
+ [-35.581, -89.906],
+ [-34.496, -77.761],
+ [-37.534, -68.86],
+ [-47.512, -42.605],
+ [28.218, -41.302],
+ [97.005, -24.81]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 11",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 11,
+ "ty": "sh",
+ "ix": 12,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.827, 5.928],
+ [1.745, 5.65],
+ [1.319, 1.932],
+ [4.188, -0.328],
+ [4.648, -6.429],
+ [-2.441, -12.931],
+ [-1.421, -3.587],
+ [-3.644, -4.324],
+ [-7.963, 9.13],
+ [-2.201, 3.308]
+ ],
+ "o": [
+ [-1.805, -5.855],
+ [-0.831, -2.695],
+ [-2.355, -3.456],
+ [-10.093, 0.777],
+ [1.97, 12.816],
+ [0.833, 4.406],
+ [2.311, 5.839],
+ [7.816, -9.467],
+ [2.699, -3.088],
+ [-6.493, -1.229]
+ ],
+ "v": [
+ [-61.402, -274.141],
+ [-66.393, -290.412],
+ [-68.997, -298.659],
+ [-82.018, -302.132],
+ [-105.452, -291.937],
+ [-98.942, -251.792],
+ [-96.121, -238.984],
+ [-84.618, -225.096],
+ [-60.317, -253.093],
+ [-52.505, -262.422]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 12",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 12,
+ "ty": "sh",
+ "ix": 13,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.023, -0.467],
+ [-0.439, 3.973],
+ [0.116, 2.695],
+ [6.298, 1.073],
+ [0.191, -0.131],
+ [-0.679, -5.585],
+ [5.77, 0.295],
+ [0.957, 2.268],
+ [8.514, 4.626],
+ [-2.385, -2.392],
+ [-1.376, -2.931],
+ [-0.681, -3.882],
+ [0.476, -4.029],
+ [5.315, -0.492],
+ [0.376, 7.714],
+ [2.91, 0.047],
+ [-3.496, -4.8],
+ [-7.653, -4.169],
+ [-1.301, -2.833],
+ [-0.343, -2.203],
+ [-0.844, -6.838],
+ [-13.626, -3.047],
+ [1.572, 8.436],
+ [0.446, 4.93],
+ [-0.26, 4.471],
+ [-0.269, 3.997],
+ [2.506, 5.995],
+ [0.347, -4.43],
+ [3.795, 0],
+ [2.924, 3.75]
+ ],
+ "o": [
+ [-5.27, 0.483],
+ [0.294, -2.71],
+ [-0.319, -7.583],
+ [-0.045, -0.262],
+ [0.31, 3.881],
+ [0.556, 4.577],
+ [-2.964, -0.154],
+ [-4.189, -9.934],
+ [-0.81, 4.954],
+ [2.265, 2.26],
+ [1.466, 3.119],
+ [0.707, 4.061],
+ [-0.637, 5.405],
+ [-7.222, 0.663],
+ [-1.777, -1.195],
+ [-1.545, 8.639],
+ [5.024, 6.911],
+ [3.059, 1.663],
+ [0.82, 1.777],
+ [1.061, 6.813],
+ [8.05, -5.969],
+ [-1.433, -7.314],
+ [-0.811, -4.364],
+ [-0.434, -4.724],
+ [0.216, -3.71],
+ [0.5, -7.476],
+ [0.212, 4.661],
+ [-0.294, 3.776],
+ [-6.315, 0],
+ [-0.397, 6.15]
+ ],
+ "v": [
+ [-94.818, -369.833],
+ [-97.639, -379.169],
+ [-97.423, -387.628],
+ [-104.801, -406.292],
+ [-105.234, -406.292],
+ [-103.716, -392.624],
+ [-105.452, -377.646],
+ [-110.443, -385.68],
+ [-130.622, -406.07],
+ [-125.418, -396.742],
+ [-117.822, -389.365],
+ [-115.433, -377.867],
+ [-114.133, -365.279],
+ [-124.55, -354.429],
+ [-140.387, -366.362],
+ [-146.679, -368.964],
+ [-140.822, -350.31],
+ [-122.596, -333.161],
+ [-111.095, -326.872],
+ [-110.01, -320.361],
+ [-106.971, -300.184],
+ [-71.601, -307.773],
+ [-78.763, -331.425],
+ [-80.061, -345.749],
+ [-81.366, -360.072],
+ [-79.411, -371.57],
+ [-82.669, -392.19],
+ [-83.103, -377.211],
+ [-86.354, -369.398],
+ [-90.695, -387.849]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 13",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 13,
+ "ty": "sh",
+ "ix": 14,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.627, 2.137],
+ [-2.179, 0.95],
+ [-3.853, 2.957],
+ [-1.953, 0.819],
+ [-2.157, 2.425],
+ [0.007, 3.055],
+ [1.614, 3.186],
+ [0.114, 1.786],
+ [0.025, 3.366],
+ [1.34, 3.219],
+ [7.314, 0.476],
+ [2.33, 0.793],
+ [1.429, 2.177],
+ [1.388, 1.106],
+ [4.45, 0.426],
+ [2.505, -2.186],
+ [1.936, -0.09],
+ [1.682, 0.736],
+ [3.513, -4.881],
+ [-0.475, -3.358],
+ [-0.061, -2.53],
+ [0.462, -3.521],
+ [-1.99, -2.695],
+ [-0.296, -4.045],
+ [-0.475, -3.021],
+ [-4.603, 0.622],
+ [-1.908, -2.284],
+ [0.47, -3.538],
+ [4.82, -2.989],
+ [4.423, -10.769],
+ [-6.613, -0.116]
+ ],
+ "o": [
+ [1.077, -1.408],
+ [5.208, -2.285],
+ [1.949, -1.498],
+ [3.71, -1.556],
+ [1.833, -2.071],
+ [-0.013, -4.783],
+ [-1.023, -2.014],
+ [-0.185, -2.883],
+ [-0.024, -3.07],
+ [-2.546, -6.109],
+ [-2.649, -0.163],
+ [-2.094, -0.712],
+ [-1.266, -1.933],
+ [-2.902, -2.31],
+ [-4.316, -0.41],
+ [-1.451, 1.27],
+ [-1.79, 0.074],
+ [-4.735, -2.071],
+ [-1.278, 1.785],
+ [0.278, 1.989],
+ [0.075, 3.202],
+ [3.03, 1.9],
+ [1.474, 2.006],
+ [0.376, 5.102],
+ [1.969, -3.791],
+ [3.948, -0.54],
+ [1.675, 2.006],
+ [-0.962, 7.232],
+ [4.933, 5.405],
+ [5.437, 1.286],
+ [1.461, -2.792]
+ ],
+ "v": [
+ [51.435, -320.796],
+ [58.379, -324.047],
+ [70.966, -331.859],
+ [76.825, -336.198],
+ [86.374, -339.672],
+ [88.545, -348.573],
+ [85.289, -359.859],
+ [82.468, -365.714],
+ [84.421, -374.607],
+ [81.599, -384.812],
+ [69.881, -393.925],
+ [62.069, -393.925],
+ [57.728, -399.781],
+ [52.957, -405.424],
+ [40.154, -411.067],
+ [31.691, -406.948],
+ [26.265, -403.033],
+ [20.189, -405.424],
+ [3.912, -404.343],
+ [1.529, -395.007],
+ [3.698, -390.02],
+ [0.878, -382.641],
+ [11.512, -380.036],
+ [12.376, -367.016],
+ [13.895, -354.651],
+ [21.49, -364.625],
+ [31.256, -359.638],
+ [33.643, -351.391],
+ [20.623, -335.552],
+ [29.303, -312.982],
+ [48.613, -312.115]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 14",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 14,
+ "ty": "sh",
+ "ix": 15,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.237, 1.203],
+ [0, 0],
+ [-4.98, -8.91],
+ [-3.877, -3.293],
+ [-1.482, -3.619],
+ [3.385, -7.043],
+ [6.404, -9.393],
+ [1.994, -0.934],
+ [2.633, -1.032],
+ [1.864, -1.426],
+ [6.431, -2.498],
+ [-1.031, -8.714],
+ [-2.47, -4.085],
+ [-8.389, -9.688],
+ [0, -17.999],
+ [1.293, -8.296],
+ [3.621, -19.68],
+ [0.185, -3.711],
+ [-0.63, -4.145],
+ [-1.981, -11.031],
+ [-0.733, -16.657],
+ [0.836, -17.426],
+ [0.786, -12.938],
+ [-0.598, -3.374],
+ [-0.967, -1.972],
+ [-2.153, -6.594],
+ [-4.943, -26.305],
+ [3.824, -5.961],
+ [-14.74, -11.096],
+ [-1.896, -9.35],
+ [-3.883, -0.891],
+ [-1.457, 0.009],
+ [-1.671, 0.517],
+ [-6.062, -1.286],
+ [-3.739, -5.495],
+ [-1.338, -4.593],
+ [-5.3, -35.214],
+ [0, 0],
+ [12.251, -2.179],
+ [5.761, 2.064],
+ [6.542, 17.263],
+ [3.313, 11.235],
+ [0.102, 0.221],
+ [2.071, 2.858],
+ [1.798, 3.063],
+ [2.6, -1.522],
+ [6.306, 2.99],
+ [10.158, 7.222],
+ [17.358, 49.79],
+ [24.359, -13.978],
+ [11.768, -0.753],
+ [8.246, 17.312],
+ [-1.209, 11.62],
+ [-1.383, 5.233],
+ [-1.675, 5.061],
+ [-7.055, 19.031],
+ [-20.117, 54.648],
+ [-0.171, 1.926],
+ [0.406, 3.686],
+ [2.445, 25.034],
+ [2.349, -2.153],
+ [7.538, -6.723],
+ [11.935, -6.625],
+ [8.774, 0.04],
+ [7.489, 2.375],
+ [9.709, 4.17],
+ [3.337, 1.106],
+ [1.568, -0.362],
+ [2.117, -0.148],
+ [4.066, 1.892],
+ [3.312, 1.908],
+ [3.689, 1.27],
+ [0.856, -1.023],
+ [0.975, -4.922],
+ [4.652, 1.589],
+ [-1.322, 9.36],
+ [-0.524, 2.736],
+ [-0.5, 2.808],
+ [-1.146, 5.004],
+ [-1.067, 2.432],
+ [-4.619, 1.958],
+ [-3.751, -2.162],
+ [-3.271, -1.653],
+ [-5.916, -2.76],
+ [-2.937, -1.309],
+ [-2.836, -0.754],
+ [-4, -0.491],
+ [-12.769, -1.81],
+ [-15.862, 18.417],
+ [2.19, 8.337],
+ [1.568, 9.606],
+ [2.695, 18.384],
+ [7.046, 12.537],
+ [-2.367, 6.412],
+ [-3.289, -5.921],
+ [-1.106, -1.377],
+ [-2.51, 0.492],
+ [1.007, 5.904],
+ [0.887, 1.834],
+ [1.191, 1.081],
+ [1.445, 4.103],
+ [-7.5, -3.635],
+ [-4.152, -3.809],
+ [-0.392, 1.204],
+ [0.019, 1.448],
+ [-4.97, -0.589],
+ [-2.933, -6.159],
+ [-2.813, -0.114],
+ [-0.885, -6.478],
+ [0.345, -4.061],
+ [0.156, -3.718],
+ [-0.456, -4.554],
+ [-0.704, -3.873],
+ [-1.565, -5.159],
+ [-4.614, -15.01],
+ [-1.299, -1.458],
+ [-27.304, 1.122],
+ [3.771, 4.488],
+ [6.118, 0.974],
+ [1.667, 7.861],
+ [-5.225, -0.312],
+ [-0.147, -3.039],
+ [-5.319, -2.702],
+ [-3.824, -0.671],
+ [-2.641, -2.506],
+ [-0.646, -9.63],
+ [-6.466, -2.343],
+ [0.799, 7.445],
+ [4.579, 0.319],
+ [2.032, 2.898],
+ [0.528, 3.456],
+ [1.933, 1.933],
+ [0.364, 2.285],
+ [-3.161, 2.669],
+ [-1.036, 1.54],
+ [3.498, 2.571],
+ [-0.175, -2.489],
+ [-1.325, -0.867],
+ [3.922, 1.376],
+ [4.082, 0.491],
+ [0, 0],
+ [0.286, 2.44],
+ [0.648, -0.722],
+ [1.687, -3.186],
+ [2.719, -2.612],
+ [-0.724, 6.837],
+ [-2.403, 2.137],
+ [-5.049, 5.552],
+ [0.156, 1.008],
+ [-1.786, 5.348],
+ [0, 1.245],
+ [0.11, 1.867],
+ [-5.564, 2.645],
+ [-6.701, -4.144]
+ ],
+ "o": [
+ [0, 0],
+ [11.517, 2.365],
+ [6.502, -0.09],
+ [2.798, 2.383],
+ [2.633, 6.461],
+ [4.193, 6.805],
+ [-1.408, 2.064],
+ [-2.084, 0.975],
+ [-1.777, 0.704],
+ [-5.233, 3.996],
+ [-3.134, 6.117],
+ [0.782, 6.6],
+ [12.033, 7.232],
+ [8.648, 9.999],
+ [0, 8.459],
+ [-3.104, 19.934],
+ [-0.716, 3.873],
+ [-0.191, 3.741],
+ [1.746, 11.449],
+ [2.78, 15.462],
+ [0.77, 17.443],
+ [-0.586, 12.292],
+ [-0.266, 4.317],
+ [0.287, 1.596],
+ [2.974, 6.044],
+ [7.693, 23.543],
+ [1.416, 7.55],
+ [11.31, 13.562],
+ [6.597, 4.971],
+ [3.985, 0.574],
+ [1.346, 0.304],
+ [1.859, -0.014],
+ [5.357, -1.637],
+ [6.41, 1.358],
+ [2.228, 3.268],
+ [9.275, 31.832],
+ [0, 0],
+ [-1.405, 13.929],
+ [-6.932, 1.236],
+ [-17.239, -6.191],
+ [-4.362, -11.521],
+ [-0.091, -0.303],
+ [-1.494, -3.087],
+ [-2.237, -3.079],
+ [-2.37, 2.105],
+ [-6.863, 4.029],
+ [-12.369, -5.855],
+ [-41.074, -29.236],
+ [-22.627, 14.781],
+ [-8.378, 4.807],
+ [-26.579, 1.703],
+ [-4.324, -9.09],
+ [0.584, -5.667],
+ [1.34, -5.053],
+ [6.302, -19.04],
+ [20.183, -54.46],
+ [0.987, -2.686],
+ [0.275, -3.144],
+ [-2.825, -25.617],
+ [-2.899, 1.506],
+ [-7.51, 6.895],
+ [-10.003, 8.926],
+ [-6.794, 3.767],
+ [-8.199, -0.049],
+ [-10.618, -3.365],
+ [-3.272, -1.399],
+ [-1.772, -0.59],
+ [-2.195, 0.507],
+ [-5.58, 0.359],
+ [-3.644, -1.695],
+ [-3.198, -1.851],
+ [-0.513, 1.369],
+ [0.549, 3.964],
+ [-0.802, 4.036],
+ [-6.882, -2.35],
+ [0.381, -2.703],
+ [0.467, -2.424],
+ [0.983, -5.487],
+ [0.668, -2.892],
+ [2.286, -5.175],
+ [4.786, -2.03],
+ [3.689, 2.121],
+ [5.185, 2.614],
+ [2.813, 1.311],
+ [3.1, 1.392],
+ [3.776, 1.007],
+ [12.742, 1.564],
+ [16.099, -18.18],
+ [-5.519, -5.185],
+ [-2.2, -8.362],
+ [-3.058, -18.721],
+ [-13.27, -4.489],
+ [-2.752, -4.889],
+ [2.788, -7.55],
+ [0.999, 1.793],
+ [1.552, 1.948],
+ [5.712, -1.114],
+ [-0.619, -3.628],
+ [-0.524, -1.09],
+ [-3.227, -2.931],
+ [-2.862, -8.1],
+ [5.025, 2.433],
+ [0.29, 0.269],
+ [0.362, -1.097],
+ [-0.079, -5.488],
+ [8.082, 0.975],
+ [1.56, -0.696],
+ [5.749, 0.229],
+ [0.597, 4.364],
+ [-0.323, 3.857],
+ [-0.171, 4.193],
+ [0.462, 4.617],
+ [0.925, 5.085],
+ [4.767, 15.724],
+ [1.531, 1.221],
+ [13.586, -14.847],
+ [-0.561, -7.665],
+ [-3.218, -3.824],
+ [-8.784, -1.392],
+ [-0.762, -3.587],
+ [2.571, 0.148],
+ [0.397, 8.164],
+ [3.566, 1.81],
+ [4.284, 0.761],
+ [5.09, 4.832],
+ [8.448, -0.974],
+ [-1.241, -7.002],
+ [-4.766, -0.006],
+ [-3.931, -0.262],
+ [-2.604, -3.711],
+ [-0.381, -2.497],
+ [-1.523, -1.524],
+ [-0.786, -4.979],
+ [1.123, -0.942],
+ [2.342, -3.479],
+ [-1.085, -0.803],
+ [0.119, 1.655],
+ [3.379, 2.212],
+ [-1.466, 3.047],
+ [-6.016, -0.722],
+ [0, 0],
+ [-1.036, -0.27],
+ [-2.263, 2.488],
+ [-2.379, 4.489],
+ [-2.182, 2.105],
+ [0.394, -3.702],
+ [3.488, -7.437],
+ [0.622, -0.688],
+ [-4.955, -0.671],
+ [0.421, -1.261],
+ [0, -1.663],
+ [-0.458, -7.747],
+ [5.905, -2.801],
+ [3.678, -2.76]
+ ],
+ "v": [
+ [37.115, -417.576],
+ [40.805, -417.576],
+ [65.107, -400.216],
+ [81.599, -396.964],
+ [87.459, -386.982],
+ [89.196, -366.581],
+ [92.016, -336.422],
+ [86.808, -332.515],
+ [79.863, -330.344],
+ [74.655, -326.216],
+ [56.648, -316.456],
+ [56.209, -294.753],
+ [59.899, -277.828],
+ [92.884, -255.265],
+ [104.817, -211.861],
+ [102.212, -186.688],
+ [92.016, -127.445],
+ [89.845, -115.948],
+ [91.365, -103.795],
+ [96.787, -68.647],
+ [103.731, -21.558],
+ [102.212, 31.171],
+ [100.263, 69.801],
+ [99.608, 82.601],
+ [103.08, 88.464],
+ [110.676, 108.857],
+ [129.774, 182.854],
+ [129.339, 206.07],
+ [167.964, 243.611],
+ [184.24, 261.839],
+ [195.522, 263.797],
+ [199.427, 264.664],
+ [204.418, 263.141],
+ [221.564, 262.93],
+ [238.92, 272.257],
+ [243.694, 285.491],
+ [266.048, 388.135],
+ [266.048, 389.003],
+ [247.167, 416.339],
+ [227.64, 413.743],
+ [194.654, 377.719],
+ [183.372, 342.784],
+ [183.155, 342.128],
+ [176.863, 333.234],
+ [170.351, 324.333],
+ [163.841, 329.974],
+ [143.879, 326.935],
+ [110.459, 307.414],
+ [24.745, 181.552],
+ [-45.559, 227.339],
+ [-74.423, 237.322],
+ [-126.285, 211.935],
+ [-132.574, 179.817],
+ [-129.324, 163.544],
+ [-124.983, 148.352],
+ [-104.367, 91.283],
+ [-43.606, -71.685],
+ [-41.003, -78.844],
+ [-42.088, -89.906],
+ [-50.551, -166.942],
+ [-57.928, -160.654],
+ [-80.282, -140.255],
+ [-111.745, -114.646],
+ [-134.093, -108.57],
+ [-157.531, -113.565],
+ [-187.91, -125.932],
+ [-197.893, -130.271],
+ [-204.62, -128.534],
+ [-211.348, -127.445],
+ [-224.365, -130.271],
+ [-234.781, -135.693],
+ [-244.547, -141.336],
+ [-246.5, -137.651],
+ [-243.462, -126.578],
+ [-255.616, -122.026],
+ [-264.726, -144.373],
+ [-262.559, -152.186],
+ [-261.474, -160.219],
+ [-258.002, -175.844],
+ [-256.267, -183.87],
+ [-244.981, -196.458],
+ [-231.309, -193.631],
+ [-221.331, -187.122],
+ [-203.318, -179.531],
+ [-194.637, -175.411],
+ [-185.524, -171.504],
+ [-173.374, -169.768],
+ [-136.263, -165.208],
+ [-88.746, -220.541],
+ [-102.847, -239.205],
+ [-108.056, -266.763],
+ [-116.954, -323.612],
+ [-149.502, -351.825],
+ [-152.974, -370.922],
+ [-134.745, -369.398],
+ [-132.574, -363.33],
+ [-124.766, -360.94],
+ [-121.727, -376.13],
+ [-123.68, -386.112],
+ [-126.936, -389.586],
+ [-136.698, -400.216],
+ [-126.72, -411.5],
+ [-112.613, -400.87],
+ [-111.095, -400.003],
+ [-111.527, -404.989],
+ [-104.801, -413.023],
+ [-87.656, -397.611],
+ [-82.448, -400.649],
+ [-73.554, -383.287],
+ [-73.121, -370.922],
+ [-74.857, -359.424],
+ [-73.554, -345.969],
+ [-72.47, -332.727],
+ [-67.695, -317.111],
+ [-53.373, -270.023],
+ [-48.164, -266.976],
+ [20.623, -283.469],
+ [16.933, -304.089],
+ [0.661, -308.43],
+ [-16.266, -326.216],
+ [-13.662, -339.237],
+ [-10.624, -333.594],
+ [-1.943, -315.8],
+ [10.426, -313.638],
+ [20.839, -309.297],
+ [27.132, -286.073],
+ [51.222, -283.69],
+ [48.4, -305.606],
+ [34.728, -305.826],
+ [23.66, -308.862],
+ [24.094, -320.796],
+ [18.886, -327.74],
+ [13.244, -334.464],
+ [21.49, -343.799],
+ [24.962, -347.919],
+ [24.745, -356.812],
+ [21.49, -355.953],
+ [23.66, -354.651],
+ [19.321, -349.877],
+ [12.81, -342.93],
+ [6.087, -363.544],
+ [5.649, -370.701],
+ [3.698, -368.964],
+ [-2.594, -360.94],
+ [-9.105, -348.573],
+ [-21.909, -348.352],
+ [-13.662, -353.127],
+ [-1.075, -373.74],
+ [0.661, -375.909],
+ [-4.981, -385.68],
+ [-3.245, -389.799],
+ [-4.981, -395.007],
+ [4.129, -412.369],
+ [25.179, -410.198]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 15",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [266.298, 419.219], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 17,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [1.982, 6.666],
+ [0, 0],
+ [14.14, 7.608],
+ [0, 0],
+ [12.383, -0.148],
+ [0, 0],
+ [6.875, -10.015],
+ [0, 0],
+ [-3.497, -3.079],
+ [0, 0],
+ [-4.492, 2.055],
+ [0, 0],
+ [-0.254, -8.393]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.986, -6.667],
+ [0, 0],
+ [-14.142, -7.608],
+ [0, 0],
+ [-12.382, 0.156],
+ [0, 0],
+ [-6.878, 10.024],
+ [0, 0],
+ [3.496, 3.087],
+ [0, 0],
+ [4.491, -2.057],
+ [0, 0],
+ [0.254, 8.403]
+ ],
+ "v": [
+ [-27.784, 29.317],
+ [-15.414, 42.553],
+ [-18.236, 53.189],
+ [7.372, 54.491],
+ [8.457, 43.641],
+ [25.168, 35.819],
+ [34.503, 30.611],
+ [47.091, 26.493],
+ [47.741, 11.301],
+ [41.665, -3.243],
+ [36.239, -29.931],
+ [19.526, -32.535],
+ [-1.525, -50.553],
+ [-18.236, -41.217],
+ [-43.193, -44.476],
+ [-45.144, -28.629],
+ [-46.882, -17.999],
+ [-35.814, -15.829],
+ [-31.039, 17.813],
+ [-26.265, 3.923],
+ [-13.895, 8.91]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [311.453, 54.742], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-7.449, 110.465],
+ [14.468, 62.722],
+ [16.638, 99.614]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.183, 22.235],
+ [5.622, 7.027],
+ [4.947, -0.663],
+ [0, 0],
+ [0, 0],
+ [4.106, 3.661],
+ [9.651, 10.13],
+ [0, 0],
+ [7.207, 26.37],
+ [0, 0],
+ [-0.708, 15.953],
+ [3.607, 24.249],
+ [0, 0],
+ [4.839, 16.838],
+ [12.522, 6.454],
+ [3.009, 11.768],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.343, 6.961],
+ [0, 0],
+ [4.23, 8.377],
+ [5.487, -0.548],
+ [0, 0],
+ [12.183, -4.659],
+ [0, 0],
+ [5.615, -7.559],
+ [0, 0],
+ [-2.076, -3.619],
+ [0, 0],
+ [5.691, -9.467],
+ [4.427, -0.148],
+ [-1.125, -4.831],
+ [0, 0],
+ [-9.565, -5.011],
+ [-2.669, -10.835],
+ [0, 0],
+ [14.274, -4.004],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [1.785, 9.115],
+ [1.9, -1.409],
+ [0, 0],
+ [4.746, 5.02],
+ [2.629, -3.062],
+ [0, 0],
+ [6.478, 5.364],
+ [3.197, -3.284],
+ [-4.427, -4.962],
+ [0, 0],
+ [5.961, -2.85],
+ [2.604, 3.931],
+ [5.012, 0.492],
+ [-5.015, -9.656],
+ [-8.627, -7.706],
+ [0, 0],
+ [-2.53, -14.373],
+ [-2.772, -3.423],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4.619, -1.925],
+ [3.046, -14.552],
+ [-2.87, -5.266],
+ [-0.627, 6.117],
+ [0, 0],
+ [0, 0],
+ [-8.551, 0.107],
+ [0, 0],
+ [-22.111, 3.825],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-33.436, -7.74],
+ [-11.867, 6.157],
+ [0, 0],
+ [-30.678, -30.718],
+ [-7.518, -0.868],
+ [0, 0],
+ [0, 0],
+ [-10.535, -15.519],
+ [-10.506, 5.954]
+ ],
+ "o": [
+ [-5.18, -22.234],
+ [-5.626, -7.025],
+ [-4.95, 0.664],
+ [0, 0],
+ [0, 0],
+ [-4.103, -3.66],
+ [-9.652, -10.123],
+ [0, 0],
+ [-7.209, -26.369],
+ [0, 0],
+ [0.708, -15.953],
+ [-3.613, -24.256],
+ [0, 0],
+ [-4.845, -16.845],
+ [-12.53, -6.46],
+ [-3.011, -11.777],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0.738, -14.978],
+ [0, 0],
+ [-4.225, -8.378],
+ [-5.482, 0.548],
+ [0, 0],
+ [-12.181, 4.661],
+ [0, 0],
+ [-5.613, 7.557],
+ [0, 0],
+ [2.072, 3.62],
+ [0, 0],
+ [-5.697, 9.458],
+ [-4.426, 0.147],
+ [1.123, 4.831],
+ [0, 0],
+ [9.56, 5.02],
+ [2.67, 10.825],
+ [0, 0],
+ [-14.277, 4.005],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.781, -9.106],
+ [-1.9, 1.409],
+ [0, 0],
+ [-4.747, -5.02],
+ [-2.629, 3.063],
+ [0, 0],
+ [-6.478, -5.355],
+ [-3.198, 3.292],
+ [4.423, 4.964],
+ [0, 0],
+ [-5.966, 2.842],
+ [-2.608, -3.931],
+ [-5.017, -0.491],
+ [5.007, 9.647],
+ [8.627, 7.706],
+ [0, 0],
+ [2.53, 14.372],
+ [2.773, 3.423],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4.62, 1.934],
+ [-3.051, 14.544],
+ [2.866, 5.256],
+ [0.626, -6.11],
+ [0, 0],
+ [0, 0],
+ [8.545, -0.106],
+ [0, 0],
+ [22.106, -3.823],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [33.437, 7.73],
+ [11.862, -6.167],
+ [0, 0],
+ [30.677, 30.726],
+ [7.518, 0.86],
+ [0, 0],
+ [0, 0],
+ [10.544, 15.51],
+ [10.507, -5.962]
+ ],
+ "v": [
+ [260.14, 371.982],
+ [232.143, 271.065],
+ [209.139, 264.768],
+ [191.124, 273.016],
+ [179.405, 266.725],
+ [175.499, 253.049],
+ [146.853, 230.914],
+ [123.197, 203.569],
+ [120.809, 166.242],
+ [94.986, 83.342],
+ [96.721, 9.336],
+ [93.033, -63.582],
+ [85.215, -119.359],
+ [99.76, -230.259],
+ [70.462, -267.152],
+ [53.965, -286.248],
+ [50.059, -307.958],
+ [53.314, -318.809],
+ [73.93, -330.742],
+ [89.776, -341.379],
+ [82.616, -365.464],
+ [82.395, -385.216],
+ [74.581, -396.935],
+ [60.693, -397.368],
+ [33.13, -414.297],
+ [20.762, -406.263],
+ [1.447, -409.521],
+ [-2.46, -391.727],
+ [-4.847, -383.259],
+ [-0.072, -378.485],
+ [-6.148, -363.293],
+ [-15.698, -348.536],
+ [-21.557, -343.549],
+ [-17.217, -335.949],
+ [-7.449, -314.903],
+ [19.676, -301.873],
+ [19.46, -279.526],
+ [-21.991, -276.921],
+ [-46.734, -263.9],
+ [-57.368, -269.321],
+ [-76.9, -331.609],
+ [-79.07, -360.042],
+ [-79.07, -382.178],
+ [-84.496, -398.237],
+ [-87.534, -382.178],
+ [-96.431, -404.748],
+ [-109.018, -410.824],
+ [-108.801, -388.254],
+ [-118.566, -399.327],
+ [-134.626, -408.441],
+ [-132.238, -395.634],
+ [-122.908, -387.599],
+ [-122.257, -359.821],
+ [-135.928, -359.821],
+ [-144.608, -372.196],
+ [-151.553, -359.387],
+ [-131.587, -334.213],
+ [-116.615, -325.753],
+ [-104.027, -255.219],
+ [-99.035, -233.952],
+ [-88.185, -222.012],
+ [-138.967, -161.46],
+ [-188.668, -168.191],
+ [-226.428, -184.472],
+ [-245.092, -194.889],
+ [-258.98, -171.009],
+ [-262.453, -132.379],
+ [-249.431, -126.09],
+ [-251.168, -137.154],
+ [-246.828, -144.32],
+ [-213.624, -130.865],
+ [-200.604, -133.035],
+ [-126.814, -113.283],
+ [-49.118, -172.745],
+ [-39.355, -78.347],
+ [-131.154, 177.316],
+ [-98.386, 232.437],
+ [-43.691, 222.454],
+ [24.234, 178.829],
+ [80.012, 278.657],
+ [152.711, 329.447],
+ [169.421, 321.635],
+ [182.008, 337.26],
+ [201.322, 388.042],
+ [249.505, 413.002]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [268.329, 420.262], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 3,
+ "ty": 4,
+ "nm": "mAN Outlines 2",
+ "parent": 2,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 37.375,
+ "s": [-10]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 74.75,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 112.125,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 149.5,
+ "s": [-10]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 186.875,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 224.25,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 261.625,
+ "s": [-10]
+ },
+ { "t": 299, "s": [0] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [192.971, 205.069, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [198.051, 180.234, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "hasMask": true,
+ "masksProperties": [
+ {
+ "inv": true,
+ "mode": "a",
+ "pt": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, -3],
+ [0, 0],
+ [0, 0],
+ [-41, -9],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4, 92],
+ [0, 0],
+ [0, 0],
+ [0, 1.5]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 3],
+ [0, 0],
+ [0, 0],
+ [41, 9],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4, -92],
+ [0, 0],
+ [0, 0],
+ [0, -1.5]
+ ],
+ "v": [
+ [318.963, -21.501],
+ [265.463, -14.501],
+ [241.963, 9.999],
+ [216.963, 149.499],
+ [165.963, 208.999],
+ [116.463, 219.999],
+ [60.463, 196.999],
+ [-20.037, 181.999],
+ [-49.537, 251.499],
+ [-43.037, 327.999],
+ [-5.037, 364.499],
+ [63.963, 434.499],
+ [78.963, 655.999],
+ [183.463, 765.999],
+ [310.963, 810.499],
+ [416.463, 836.499],
+ [542.963, 855.999],
+ [615.963, 820.999],
+ [630.963, 715.999],
+ [628.963, 611.999],
+ [624.963, 500.499],
+ [618.463, 350.999],
+ [376.463, 4.499]
+ ],
+ "c": true
+ },
+ "ix": 1
+ },
+ "o": { "a": 0, "k": 100, "ix": 3 },
+ "x": { "a": 0, "k": 0, "ix": 4 },
+ "nm": "Mask 1"
+ }
+ ],
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.761, 0.367],
+ [0.369, -1.762],
+ [0, 0],
+ [-1.761, -0.368],
+ [-0.369, 1.759],
+ [0, 0]
+ ],
+ "o": [
+ [-1.76, -0.37],
+ [0, 0],
+ [-0.368, 1.76],
+ [1.761, 0.369],
+ [0, 0],
+ [0.365, -1.762]
+ ],
+ "v": [
+ [1.197, -5.736],
+ [-2.656, -3.213],
+ [-3.716, 1.889],
+ [-1.194, 5.737],
+ [2.66, 3.216],
+ [3.719, -1.886]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [267.841, 63.082], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-3.229, -6.199],
+ [-2.567, -14.578],
+ [8.467, -2.57],
+ [10.245, 44.525],
+ [-7.083, 15.24]
+ ],
+ "o": [
+ [3.23, 6.208],
+ [2.567, 14.584],
+ [-8.467, 2.572],
+ [-10.248, -44.525],
+ [5.262, -11.31]
+ ],
+ "v": [
+ [0.286, -57.518],
+ [24.375, 35.154],
+ [20.686, 68.573],
+ [-10.999, 27.34],
+ [-22.07, -60.555]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [502.716, 752.85], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-7.313, -10.482],
+ [-6.195, -17.229],
+ [5.074, -1.844],
+ [10.449, 27.557],
+ [3.223, 16.052],
+ [-9.91, 0.319]
+ ],
+ "o": [
+ [7.31, 10.482],
+ [6.191, 17.232],
+ [-5.076, 1.843],
+ [-10.454, -27.549],
+ [-3.218, -16.051],
+ [9.913, -0.32]
+ ],
+ "v": [
+ [-2.137, -52.305],
+ [21.734, 13.888],
+ [25.64, 62.067],
+ [0.901, 31.897],
+ [-19.72, -35.813],
+ [-20.804, -63.589]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [366.462, 559.481], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [3.451, 3.251],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4.692, 11.629],
+ [0, 0],
+ [0, 0],
+ [2.236, -14.503]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [-3.448, -3.251],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4.689, -11.637],
+ [0, 0],
+ [0, 0],
+ [-2.239, 14.503]
+ ],
+ "v": [
+ [13.957, -8.681],
+ [24.156, 55.344],
+ [11.787, 52.304],
+ [-0.367, 22.792],
+ [-14.038, 1.09],
+ [-21.2, -1.95],
+ [-19.464, -37.54],
+ [-8.83, -55.556],
+ [14.824, -50.995],
+ [0.284, -35.156]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [452.878, 739.53], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-1.426, 6.135],
+ [0, 0],
+ [0, 0],
+ [3.537, 2.676],
+ [0, 0],
+ [0, 0],
+ [-5.049, -16.322],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [1.426, -6.125],
+ [0, 0],
+ [0, 0],
+ [-3.538, -2.679],
+ [0, 0],
+ [0, 0],
+ [5.046, 16.33],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [30.52, 51.977],
+ [30.302, 36.998],
+ [34.86, 22.898],
+ [15.328, -40.48],
+ [2.524, -42.215],
+ [-5.07, -51.977],
+ [-30.247, -39.612],
+ [-29.812, -7.927],
+ [-21.782, 13.127],
+ [-16.573, 13.561],
+ [4.477, 20.506]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [315.216, 561.25], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [2.797, -15.953],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [27.683, 23.494],
+ [0, 0],
+ [14.216, -7.731],
+ [17.648, 6.437],
+ [-4.778, 21.702],
+ [0, 0],
+ [-27.901, -5.675],
+ [-18.574, -4.111],
+ [0, 0],
+ [0, 0],
+ [30.157, -16.132],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-5.843, -20.08],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-16.702, -5.2],
+ [0, 0],
+ [-16.355, -10.98],
+ [-2.121, -3.252]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [-2.797, 15.953],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-43.268, -36.713],
+ [0, 0],
+ [-14.215, 7.723],
+ [-17.648, -6.437],
+ [4.775, -21.701],
+ [0, 0],
+ [11.694, 2.374],
+ [25.759, 5.716],
+ [0, 0],
+ [0, 0],
+ [-30.158, 16.142],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [5.839, 20.08],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [16.697, 5.193],
+ [0, 0],
+ [16.354, 10.974],
+ [2.122, 3.251]
+ ],
+ "v": [
+ [156.174, 122.958],
+ [144.889, 119.92],
+ [129.481, 142.276],
+ [127.31, 173.747],
+ [142.718, 175.698],
+ [135.775, 189.151],
+ [69.363, 146.831],
+ [4.908, 35.063],
+ [-79.298, 87.589],
+ [-124.654, 90.193],
+ [-152.215, 33.547],
+ [-74.305, -178.27],
+ [-21.137, -183.477],
+ [36.811, -174.583],
+ [78.478, -161.562],
+ [72.618, -58.255],
+ [29.866, -58.477],
+ [-5.725, -40.672],
+ [-6.158, -84.297],
+ [-30.248, -29.174],
+ [-15.49, -35.464],
+ [-19.614, -3.346],
+ [-6.809, 20.307],
+ [6.645, 16.398],
+ [28.564, 22.042],
+ [76.095, 66.755],
+ [104.089, 67.182],
+ [131.651, 97.57],
+ [154.871, 114.277]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [288.525, 560.598], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [35.697, 8.084],
+ [8.992, -1.924],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [9.271, -7.018],
+ [17.26, 4.66],
+ [0, 0],
+ [-4.328, 11.204],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [2.631, 15.65],
+ [0, 0],
+ [-14.597, 1.859],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-16.423, -0.77],
+ [0, 0],
+ [0, 0],
+ [-5.679, -1.147],
+ [0, 0],
+ [-9.556, -4.717],
+ [-2.091, -22.127],
+ [0, 0],
+ [-4.447, -18.761]
+ ],
+ "o": [
+ [0, 0],
+ [-35.696, -8.091],
+ [-8.991, 1.925],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-9.266, 7.018],
+ [-17.258, -4.651],
+ [0, 0],
+ [4.328, -11.194],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-2.628, -15.65],
+ [0, 0],
+ [14.594, -1.859],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [16.423, 0.769],
+ [0, 0],
+ [0, 0],
+ [5.675, 1.155],
+ [0, 0],
+ [9.558, 4.718],
+ [2.092, 22.128],
+ [0, 0],
+ [4.446, 18.771]
+ ],
+ "v": [
+ [140.447, 144.492],
+ [92.703, 128.866],
+ [17.394, 119.097],
+ [-11.252, 123.658],
+ [0.901, 86.545],
+ [-9.515, -10.678],
+ [-70.719, 42.706],
+ [-109.565, 48.129],
+ [-137.342, 35.975],
+ [-138.644, 14.706],
+ [-128.01, -2.867],
+ [-95.892, -0.262],
+ [-43.804, -62.116],
+ [-59.867, -80.132],
+ [-70.067, -132.437],
+ [-48.362, -142.632],
+ [-27.745, -138.514],
+ [-14.073, -106.608],
+ [-7.563, -102.268],
+ [19.131, -115.288],
+ [61.67, -116.37],
+ [65.142, -120.498],
+ [83.589, -119.416],
+ [95.959, -117.459],
+ [110.932, -104.872],
+ [140.88, -67.324],
+ [125.69, 46.613],
+ [134.154, 101.514]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [227.568, 257.607], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.588, 0.476],
+ [0.213, -2.874],
+ [3.634, 0.254],
+ [0.058, 1.703],
+ [-1.675, 1.286]
+ ],
+ "o": [
+ [1.744, -0.327],
+ [-0.225, 3.047],
+ [-1.58, -0.106],
+ [-0.09, -2.474],
+ [2.44, -1.865]
+ ],
+ "v": [
+ [3.626, -6.581],
+ [7.315, -3.329],
+ [-4.399, 6.653],
+ [-7.438, 3.616],
+ [-2.663, -1.16]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [266.801, 86.127], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.29, -15.389],
+ [-2.067, -2.8],
+ [-1.248, -1.727],
+ [-1.639, -3.464],
+ [-1.142, -3.801],
+ [-1.781, -3.169],
+ [-1.642, -1.638],
+ [-3.53, -0.581],
+ [3.701, 19.521],
+ [-0.037, 12.048],
+ [-2.211, 2.315],
+ [0.265, 0.729],
+ [3.386, 1.024]
+ ],
+ "o": [
+ [3.674, 1.204],
+ [1.268, 1.72],
+ [2.408, 3.342],
+ [1.585, 3.357],
+ [1.122, 3.71],
+ [0.77, 1.377],
+ [2.502, 2.498],
+ [-3.865, -19.351],
+ [-5.811, -6.323],
+ [0.013, -4.42],
+ [0.651, -0.69],
+ [-3.117, -1.302],
+ [-10.708, 7.379]
+ ],
+ "v": [
+ [170.134, 316.307],
+ [177.513, 323.252],
+ [181.202, 328.672],
+ [189.015, 339.31],
+ [192.7, 351.031],
+ [196.172, 362.305],
+ [200.512, 366.867],
+ [208.759, 371.854],
+ [197.257, 313.703],
+ [183.806, 284.622],
+ [187.274, 273.781],
+ [189.015, 271.823],
+ [178.164, 269.44]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-9.963, -6.593],
+ [-8.403, 0.787],
+ [-0.098, 10.875],
+ [0.872, 4.906],
+ [7.906, 27.239],
+ [1.957, 2.866],
+ [9.164, -0.646],
+ [3.16, -2.04],
+ [0.95, -3.416],
+ [-1.448, -3.538],
+ [-1.815, -2.555],
+ [-1.097, -2.768],
+ [-0.966, -5.144],
+ [-2.441, -12.129],
+ [2.916, -2.122],
+ [2.359, 0.899]
+ ],
+ "o": [
+ [6.317, 4.184],
+ [9.941, -0.942],
+ [0.04, -4.733],
+ [-5.216, -29.383],
+ [-1.316, -4.537],
+ [-3.64, -5.316],
+ [-4.165, 0.287],
+ [-2.871, 1.858],
+ [-1.356, 4.896],
+ [1.278, 3.121],
+ [1.883, 2.652],
+ [1.876, 4.717],
+ [2.302, 12.225],
+ [0.802, 3.995],
+ [-3.564, 2.587],
+ [3.911, 11.554]
+ ],
+ "v": [
+ [220.696, 403.106],
+ [244.563, 410.271],
+ [259.537, 388.349],
+ [257.366, 373.378],
+ [238.053, 288.75],
+ [233.499, 275.943],
+ [208.759, 268.138],
+ [197.692, 272.692],
+ [190.53, 280.284],
+ [192.048, 295.039],
+ [197.475, 303.286],
+ [203.116, 311.32],
+ [206.588, 328.026],
+ [213.317, 361.661],
+ [214.617, 378.154],
+ [200.946, 375.771]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 2,
+ "ty": "sh",
+ "ix": 3,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.908, 1.924],
+ [-0.156, -19.835],
+ [-4.16, -1.048],
+ [-8.562, 9.802]
+ ],
+ "o": [
+ [-7.722, 11.947],
+ [4.614, 0.597],
+ [-3.693, -17.436],
+ [-2.637, -1.197]
+ ],
+ "v": [
+ [162.973, 262.93],
+ [150.386, 309.362],
+ [162.104, 313.268],
+ [170.785, 266.615]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 3",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 3,
+ "ty": "sh",
+ "ix": 4,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [11.314, 12.324],
+ [2.04, 1.179],
+ [7.276, 3.915],
+ [3.721, 3.726],
+ [8.473, 10.163],
+ [1.774, 1.032],
+ [2.26, 1.049],
+ [6.125, -3.21],
+ [-58.947, -27.277],
+ [-3.161, 11.491],
+ [-9.63, 6.282]
+ ],
+ "o": [
+ [-1.569, -1.711],
+ [-10.268, 3.864],
+ [-4.172, -2.243],
+ [-9.43, -9.434],
+ [-1.764, -2.122],
+ [-2.325, -1.351],
+ [-1.173, 8.164],
+ [22.164, 64.058],
+ [-3.177, -12.685],
+ [3.742, -13.585],
+ [-14.195, -9.695]
+ ],
+ "v": [
+ [129.122, 215.841],
+ [124.13, 210.846],
+ [93.102, 208.461],
+ [81.166, 198.479],
+ [55.123, 169.62],
+ [49.919, 163.757],
+ [41.891, 161.153],
+ [30.171, 177.432],
+ [145.615, 320.646],
+ [147.131, 282.451],
+ [166.661, 250.555]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 4",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 4,
+ "ty": "sh",
+ "ix": 5,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.202, 18.859],
+ [1.334, -1.588],
+ [0.229, -4.112],
+ [-5.7, -7.903],
+ [-2.981, 1.287]
+ ],
+ "o": [
+ [-2.047, 1.368],
+ [-2.256, 2.703],
+ [-0.776, 14.045],
+ [2.837, -1.432],
+ [-8.357, -10.358]
+ ],
+ "v": [
+ [14.98, 106.472],
+ [8.904, 110.158],
+ [5.649, 121.443],
+ [16.499, 159.203],
+ [25.613, 155.51]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 5",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 5,
+ "ty": "sh",
+ "ix": 6,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [3.815, 6.813],
+ [6.367, -3.186],
+ [-1.797, -9.041],
+ [-5.769, -4.102],
+ [-4.193, -1.31],
+ [-2.228, -1.302],
+ [-1.712, -2.039],
+ [-5.261, -5.51],
+ [-0.683, 0.45],
+ [-1.276, 3.97],
+ [-0.012, 2.154],
+ [0.771, 2.457],
+ [4.921, 16.665]
+ ],
+ "o": [
+ [-6.368, 3.186],
+ [-2.305, 9.05],
+ [1.745, 8.754],
+ [4.083, -0.581],
+ [3.177, 0.99],
+ [1.908, 1.131],
+ [5.216, 6.183],
+ [0.303, 0.312],
+ [-0.265, -5.398],
+ [0.758, -2.351],
+ [0.012, -1.851],
+ [-5.392, -17.149],
+ [-9.626, -1.008]
+ ],
+ "v": [
+ [41.891, 93.018],
+ [22.792, 102.567],
+ [22.575, 131.213],
+ [32.992, 152.693],
+ [44.711, 155.297],
+ [53.609, 158.115],
+ [59.247, 164.411],
+ [74.655, 182.206],
+ [75.957, 183.076],
+ [77.91, 170.703],
+ [80.297, 163.323],
+ [78.127, 155.945],
+ [62.069, 104.737]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 6",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 6,
+ "ty": "sh",
+ "ix": 7,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.79, -1.269],
+ [-1.379, -1.073],
+ [-0.797, -2.571],
+ [-5.233, -16.272],
+ [0.023, -2.04],
+ [0.884, -2.743],
+ [0.033, -3.138],
+ [-0.544, -3.889],
+ [-4.132, -2.432],
+ [-3.914, 7.222],
+ [0.779, 4.61],
+ [9.258, 26.254],
+ [2.152, 3.521],
+ [9.496, -2.129],
+ [8.972, -3.324]
+ ],
+ "o": [
+ [2.146, 0.467],
+ [1.156, 0.908],
+ [5.242, 16.911],
+ [0.909, 2.825],
+ [-0.034, 2.374],
+ [-0.901, 2.776],
+ [-0.044, 4.513],
+ [3.594, 3.382],
+ [5.388, 3.169],
+ [1.867, -3.441],
+ [-5.212, -30.8],
+ [-1.605, -4.562],
+ [-3.511, -5.766],
+ [-9.126, 2.04],
+ [2.31, 5.019]
+ ],
+ "v": [
+ [59.464, 97.578],
+ [66.408, 99.307],
+ [69.446, 106.685],
+ [84.638, 155.297],
+ [87.026, 163.544],
+ [84.421, 171.791],
+ [82.25, 180.685],
+ [84.855, 192.836],
+ [95.485, 202.385],
+ [124.13, 202.599],
+ [123.913, 186.974],
+ [101.561, 102.567],
+ [96.571, 89.766],
+ [73.786, 78.482],
+ [47.966, 89.979]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 7",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 7,
+ "ty": "sh",
+ "ix": 8,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.991, -12.006],
+ [-5.147, 3.318],
+ [0.651, 8.598]
+ ],
+ "o": [
+ [5.512, -2.948],
+ [-0.59, -8.664],
+ [-5.195, 11.8]
+ ],
+ "v": [
+ [-1.943, 107.776],
+ [14.763, 99.094],
+ [13.682, 72.406]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 8",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 8,
+ "ty": "sh",
+ "ix": 9,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [31.037, 3.768],
+ [10.552, -0.336],
+ [9.197, -1.933],
+ [20.691, -58.464],
+ [2.424, -9.05],
+ [-2.351, -10.999],
+ [-19.834, -3.562],
+ [-8.5, 3.586],
+ [-7.071, 4.316],
+ [-19.899, 13.832],
+ [1.883, 1.924],
+ [-3.342, 22.512],
+ [29.575, -15.479],
+ [0.128, 4.947],
+ [-2.536, 1.359],
+ [-3.459, 1.817],
+ [-21.844, 11.146],
+ [-14.978, 33.362],
+ [-4.111, -0.426],
+ [0.962, -2.179],
+ [6.859, -15.272],
+ [0.304, -1.926],
+ [-0.122, -3.064],
+ [-0.491, -9.139],
+ [-13.046, 6.298],
+ [-5.373, 0.452],
+ [-3.722, -2.138],
+ [-0.656, 0.311],
+ [0.233, 32.282]
+ ],
+ "o": [
+ [-10.747, -1.301],
+ [-10.343, 0.328],
+ [-21.444, 58.193],
+ [-3.058, 8.647],
+ [-2.579, 9.632],
+ [4.037, 18.876],
+ [9.106, 1.63],
+ [7.506, -3.169],
+ [21.325, -13.021],
+ [-2.33, -1.179],
+ [-11.355, -11.572],
+ [-29.26, 15.094],
+ [-2.842, 1.49],
+ [-0.084, -3.382],
+ [4.058, -2.179],
+ [22.127, -11.579],
+ [14.892, -33.298],
+ [1.319, -2.933],
+ [3.774, 0.394],
+ [-6.937, 15.641],
+ [-1.154, 2.58],
+ [-0.421, 2.687],
+ [0.388, 9.671],
+ [11.842, -5.936],
+ [4.532, -2.186],
+ [6.183, -0.516],
+ [1.073, 0.623],
+ [1.572, -31.201],
+ [-24.069, -10.376]
+ ],
+ "v": [
+ [10.426, -37.397],
+ [-22.126, -40.435],
+ [-50.334, -35.227],
+ [-115.001, 139.673],
+ [-123.03, 165.927],
+ [-124.983, 195.442],
+ [-91.129, 230.164],
+ [-60.751, 227.995],
+ [-38.832, 215.841],
+ [22.792, 174.607],
+ [16.282, 169.833],
+ [0.227, 114.065],
+ [-90.477, 159.851],
+ [-98.509, 158.982],
+ [-88.958, 151.826],
+ [-77.678, 146.396],
+ [-11.276, 112.549],
+ [33.643, 11.642],
+ [41.891, -1.159],
+ [43.193, 5.786],
+ [23.226, 50.916],
+ [19.754, 58.517],
+ [20.189, 67.632],
+ [21.056, 96.055],
+ [60.332, 77.18],
+ [74.655, 71.75],
+ [90.497, 75.656],
+ [93.319, 76.958],
+ [97.221, -17.865]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 9",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 9,
+ "ty": "sh",
+ "ix": 10,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.746, 1.368],
+ [3.112, 1.434],
+ [6.212, 2.547],
+ [2.894, 1.564],
+ [6.64, 0.713],
+ [1.089, -1.163],
+ [-0.164, -1.007],
+ [0.123, -5.567],
+ [3.805, 0.254],
+ [0.835, -4.053],
+ [1.212, -6.977],
+ [4.503, -1.533],
+ [0.282, -3.193],
+ [-1.287, 0.483],
+ [0.258, -5.584],
+ [4.414, -1.768],
+ [-0.119, -7.772],
+ [-5.868, 1.736],
+ [0.164, 3.416],
+ [-1.213, 2.416],
+ [-2.138, 0.181],
+ [-2.097, -1.302],
+ [-2.109, -1.212],
+ [-10.077, 2.17],
+ [-0.077, 1.801],
+ [-2.892, -1.268],
+ [-4.831, -2.129],
+ [-5.638, 7.869]
+ ],
+ "o": [
+ [-2.756, -0.794],
+ [-6.31, -2.89],
+ [-3.321, -1.367],
+ [-5.27, -2.858],
+ [-1.729, -0.18],
+ [-1.122, 1.196],
+ [4.794, -1.474],
+ [-0.102, 4.587],
+ [-6.293, -0.425],
+ [2.915, -1.27],
+ [-0.758, 4.374],
+ [-2.838, 0.974],
+ [0.982, -0.113],
+ [3.836, -1.425],
+ [-0.222, 4.741],
+ [-6.122, 2.456],
+ [0.082, 5.315],
+ [-0.184, -3.366],
+ [-0.139, -2.94],
+ [1.354, -2.695],
+ [2.035, -0.163],
+ [2.629, 1.629],
+ [7.425, 4.266],
+ [-0.43, -0.941],
+ [0.226, -5.234],
+ [6.015, 2.639],
+ [-1.715, -13.799],
+ [-4.303, -1.016]
+ ],
+ "v": [
+ [-187.693, -165.208],
+ [-196.808, -169.335],
+ [-215.254, -177.794],
+ [-225.015, -181.479],
+ [-241.291, -190.815],
+ [-245.849, -187.555],
+ [-248.236, -184.083],
+ [-228.488, -180.833],
+ [-237.82, -178.662],
+ [-251.491, -173.887],
+ [-233.045, -171.939],
+ [-248.236, -168.465],
+ [-254.747, -161.956],
+ [-251.057, -163.692],
+ [-235.649, -161.734],
+ [-249.104, -157.615],
+ [-258.653, -139.386],
+ [-249.972, -128.323],
+ [-253.228, -136.782],
+ [-250.189, -144.16],
+ [-245.849, -149.37],
+ [-238.47, -145.675],
+ [-231.527, -141.557],
+ [-208.309, -134.391],
+ [-210.263, -137.862],
+ [-200.931, -138.519],
+ [-182.268, -130.492],
+ [-174.025, -163.471]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 10",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 10,
+ "ty": "sh",
+ "ix": 11,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.531, 14.88],
+ [1.622, 11.015],
+ [-0.287, 3.513],
+ [-1.135, 6.2],
+ [-2.805, 18.172],
+ [2.124, 12.965],
+ [8.438, 6.543],
+ [8.004, 5.921],
+ [1.691, 1.016],
+ [3.685, 0.598],
+ [4, -1.384],
+ [1.7, -0.409],
+ [3.005, -0.148],
+ [12.484, -9.4],
+ [2.114, -2.319],
+ [6.129, -7.01],
+ [23.438, -27.23],
+ [2.687, 0.319],
+ [0.126, 1.048],
+ [0.319, 1.531],
+ [4.088, 0.524],
+ [3.125, -0.613],
+ [1.257, -4.284],
+ [-3.506, -3.923],
+ [-1.523, -0.629],
+ [-5.471, -1.63],
+ [-9.917, 1.99],
+ [-9.455, 8.689],
+ [-19.048, 17.304],
+ [-2.989, -0.155],
+ [-0.082, -1.884],
+ [1.551, -1.441],
+ [5.04, -5.396],
+ [-3.096, -27.008],
+ [0.376, -3.415],
+ [1.077, -2.882],
+ [3.165, -8.492],
+ [-24.081, -3.293],
+ [-19.77, -8.419]
+ ],
+ "o": [
+ [-1.846, -10.859],
+ [-0.582, -3.931],
+ [0.483, -5.898],
+ [3.368, -18.474],
+ [1.925, -12.464],
+ [-2.028, -12.406],
+ [-7.968, -6.182],
+ [-1.45, -1.073],
+ [-2.436, -1.465],
+ [-4.168, -0.688],
+ [-1.524, 0.524],
+ [-2.551, 0.622],
+ [-20.571, 1.008],
+ [-2.326, 1.746],
+ [-6.517, 7.123],
+ [-23.604, 26.984],
+ [-2.145, 2.49],
+ [-1.654, -0.205],
+ [-0.377, -3.111],
+ [-4.402, -0.664],
+ [-3.312, -0.427],
+ [-4.839, 0.95],
+ [-1.316, 4.454],
+ [0.962, 1.072],
+ [5.666, 2.336],
+ [7.907, 2.35],
+ [15.057, -3.013],
+ [19.007, -17.477],
+ [2.81, -2.546],
+ [1.138, 0.058],
+ [0.098, 2.251],
+ [-6.007, 5.577],
+ [3.12, 26.33],
+ [0.463, 3.996],
+ [-0.286, 2.645],
+ [-3.333, 8.919],
+ [23.294, -7.764],
+ [25.415, 3.472],
+ [-0.64, -16.117]
+ ],
+ "v": [
+ [90.063, -69.949],
+ [84.855, -103.795],
+ [83.336, -115.948],
+ [86.592, -134.391],
+ [96.14, -189.947],
+ [97.005, -229.87],
+ [81.383, -257.648],
+ [56.86, -271.971],
+ [52.74, -276.091],
+ [42.975, -279.128],
+ [27.567, -279.563],
+ [24.094, -277.18],
+ [15.197, -276.745],
+ [-39.483, -266.109],
+ [-46.211, -259.383],
+ [-65.307, -237.469],
+ [-134.745, -156.747],
+ [-142.124, -150.449],
+ [-144.727, -153.055],
+ [-141.472, -159.352],
+ [-153.192, -160.867],
+ [-165.128, -162.169],
+ [-174.454, -147.846],
+ [-174.454, -127.445],
+ [-169.246, -125.065],
+ [-152.541, -118.987],
+ [-126.72, -115.735],
+ [-90.261, -140.032],
+ [-34.714, -190.815],
+ [-26.249, -197.538],
+ [-23.211, -194.499],
+ [-27.985, -188.423],
+ [-44.908, -172.373],
+ [-35.581, -89.906],
+ [-34.496, -77.761],
+ [-37.534, -68.86],
+ [-47.512, -42.605],
+ [28.218, -41.302],
+ [97.005, -24.81]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 11",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 11,
+ "ty": "sh",
+ "ix": 12,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.827, 5.928],
+ [1.745, 5.65],
+ [1.319, 1.932],
+ [4.188, -0.328],
+ [4.648, -6.429],
+ [-2.441, -12.931],
+ [-1.421, -3.587],
+ [-3.644, -4.324],
+ [-7.963, 9.13],
+ [-2.201, 3.308]
+ ],
+ "o": [
+ [-1.805, -5.855],
+ [-0.831, -2.695],
+ [-2.355, -3.456],
+ [-10.093, 0.777],
+ [1.97, 12.816],
+ [0.833, 4.406],
+ [2.311, 5.839],
+ [7.816, -9.467],
+ [2.699, -3.088],
+ [-6.493, -1.229]
+ ],
+ "v": [
+ [-61.402, -274.141],
+ [-66.393, -290.412],
+ [-68.997, -298.659],
+ [-82.018, -302.132],
+ [-105.452, -291.937],
+ [-98.942, -251.792],
+ [-96.121, -238.984],
+ [-84.618, -225.096],
+ [-60.317, -253.093],
+ [-52.505, -262.422]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 12",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 12,
+ "ty": "sh",
+ "ix": 13,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.023, -0.467],
+ [-0.439, 3.973],
+ [0.116, 2.695],
+ [6.298, 1.073],
+ [0.191, -0.131],
+ [-0.679, -5.585],
+ [5.77, 0.295],
+ [0.957, 2.268],
+ [8.514, 4.626],
+ [-2.385, -2.392],
+ [-1.376, -2.931],
+ [-0.681, -3.882],
+ [0.476, -4.029],
+ [5.315, -0.492],
+ [0.376, 7.714],
+ [2.91, 0.047],
+ [-3.496, -4.8],
+ [-7.653, -4.169],
+ [-1.301, -2.833],
+ [-0.343, -2.203],
+ [-0.844, -6.838],
+ [-13.626, -3.047],
+ [1.572, 8.436],
+ [0.446, 4.93],
+ [-0.26, 4.471],
+ [-0.269, 3.997],
+ [2.506, 5.995],
+ [0.347, -4.43],
+ [3.795, 0],
+ [2.924, 3.75]
+ ],
+ "o": [
+ [-5.27, 0.483],
+ [0.294, -2.71],
+ [-0.319, -7.583],
+ [-0.045, -0.262],
+ [0.31, 3.881],
+ [0.556, 4.577],
+ [-2.964, -0.154],
+ [-4.189, -9.934],
+ [-0.81, 4.954],
+ [2.265, 2.26],
+ [1.466, 3.119],
+ [0.707, 4.061],
+ [-0.637, 5.405],
+ [-7.222, 0.663],
+ [-1.777, -1.195],
+ [-1.545, 8.639],
+ [5.024, 6.911],
+ [3.059, 1.663],
+ [0.82, 1.777],
+ [1.061, 6.813],
+ [8.05, -5.969],
+ [-1.433, -7.314],
+ [-0.811, -4.364],
+ [-0.434, -4.724],
+ [0.216, -3.71],
+ [0.5, -7.476],
+ [0.212, 4.661],
+ [-0.294, 3.776],
+ [-6.315, 0],
+ [-0.397, 6.15]
+ ],
+ "v": [
+ [-94.818, -369.833],
+ [-97.639, -379.169],
+ [-97.423, -387.628],
+ [-104.801, -406.292],
+ [-105.234, -406.292],
+ [-103.716, -392.624],
+ [-105.452, -377.646],
+ [-110.443, -385.68],
+ [-130.622, -406.07],
+ [-125.418, -396.742],
+ [-117.822, -389.365],
+ [-115.433, -377.867],
+ [-114.133, -365.279],
+ [-124.55, -354.429],
+ [-140.387, -366.362],
+ [-146.679, -368.964],
+ [-140.822, -350.31],
+ [-122.596, -333.161],
+ [-111.095, -326.872],
+ [-110.01, -320.361],
+ [-106.971, -300.184],
+ [-71.601, -307.773],
+ [-78.763, -331.425],
+ [-80.061, -345.749],
+ [-81.366, -360.072],
+ [-79.411, -371.57],
+ [-82.669, -392.19],
+ [-83.103, -377.211],
+ [-86.354, -369.398],
+ [-90.695, -387.849]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 13",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 13,
+ "ty": "sh",
+ "ix": 14,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.627, 2.137],
+ [-2.179, 0.95],
+ [-3.853, 2.957],
+ [-1.953, 0.819],
+ [-2.157, 2.425],
+ [0.007, 3.055],
+ [1.614, 3.186],
+ [0.114, 1.786],
+ [0.025, 3.366],
+ [1.34, 3.219],
+ [7.314, 0.476],
+ [2.33, 0.793],
+ [1.429, 2.177],
+ [1.388, 1.106],
+ [4.45, 0.426],
+ [2.505, -2.186],
+ [1.936, -0.09],
+ [1.682, 0.736],
+ [3.513, -4.881],
+ [-0.475, -3.358],
+ [-0.061, -2.53],
+ [0.462, -3.521],
+ [-1.99, -2.695],
+ [-0.296, -4.045],
+ [-0.475, -3.021],
+ [-4.603, 0.622],
+ [-1.908, -2.284],
+ [0.47, -3.538],
+ [4.82, -2.989],
+ [4.423, -10.769],
+ [-6.613, -0.116]
+ ],
+ "o": [
+ [1.077, -1.408],
+ [5.208, -2.285],
+ [1.949, -1.498],
+ [3.71, -1.556],
+ [1.833, -2.071],
+ [-0.013, -4.783],
+ [-1.023, -2.014],
+ [-0.185, -2.883],
+ [-0.024, -3.07],
+ [-2.546, -6.109],
+ [-2.649, -0.163],
+ [-2.094, -0.712],
+ [-1.266, -1.933],
+ [-2.902, -2.31],
+ [-4.316, -0.41],
+ [-1.451, 1.27],
+ [-1.79, 0.074],
+ [-4.735, -2.071],
+ [-1.278, 1.785],
+ [0.278, 1.989],
+ [0.075, 3.202],
+ [3.03, 1.9],
+ [1.474, 2.006],
+ [0.376, 5.102],
+ [1.969, -3.791],
+ [3.948, -0.54],
+ [1.675, 2.006],
+ [-0.962, 7.232],
+ [4.933, 5.405],
+ [5.437, 1.286],
+ [1.461, -2.792]
+ ],
+ "v": [
+ [51.435, -320.796],
+ [58.379, -324.047],
+ [70.966, -331.859],
+ [76.825, -336.198],
+ [86.374, -339.672],
+ [88.545, -348.573],
+ [85.289, -359.859],
+ [82.468, -365.714],
+ [84.421, -374.607],
+ [81.599, -384.812],
+ [69.881, -393.925],
+ [62.069, -393.925],
+ [57.728, -399.781],
+ [52.957, -405.424],
+ [40.154, -411.067],
+ [31.691, -406.948],
+ [26.265, -403.033],
+ [20.189, -405.424],
+ [3.912, -404.343],
+ [1.529, -395.007],
+ [3.698, -390.02],
+ [0.878, -382.641],
+ [11.512, -380.036],
+ [12.376, -367.016],
+ [13.895, -354.651],
+ [21.49, -364.625],
+ [31.256, -359.638],
+ [33.643, -351.391],
+ [20.623, -335.552],
+ [29.303, -312.982],
+ [48.613, -312.115]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 14",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 14,
+ "ty": "sh",
+ "ix": 15,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.237, 1.203],
+ [0, 0],
+ [-4.98, -8.91],
+ [-3.877, -3.293],
+ [-1.482, -3.619],
+ [3.385, -7.043],
+ [6.404, -9.393],
+ [1.994, -0.934],
+ [2.633, -1.032],
+ [1.864, -1.426],
+ [6.431, -2.498],
+ [-1.031, -8.714],
+ [-2.47, -4.085],
+ [-8.389, -9.688],
+ [0, -17.999],
+ [1.293, -8.296],
+ [3.621, -19.68],
+ [0.185, -3.711],
+ [-0.63, -4.145],
+ [-1.981, -11.031],
+ [-0.733, -16.657],
+ [0.836, -17.426],
+ [0.786, -12.938],
+ [-0.598, -3.374],
+ [-0.967, -1.972],
+ [-2.153, -6.594],
+ [-4.943, -26.305],
+ [3.824, -5.961],
+ [-14.74, -11.096],
+ [-1.896, -9.35],
+ [-3.883, -0.891],
+ [-1.457, 0.009],
+ [-1.671, 0.517],
+ [-6.062, -1.286],
+ [-3.739, -5.495],
+ [-1.338, -4.593],
+ [-5.3, -35.214],
+ [0, 0],
+ [12.251, -2.179],
+ [5.761, 2.064],
+ [6.542, 17.263],
+ [3.313, 11.235],
+ [0.102, 0.221],
+ [2.071, 2.858],
+ [1.798, 3.063],
+ [2.6, -1.522],
+ [6.306, 2.99],
+ [10.158, 7.222],
+ [17.358, 49.79],
+ [24.359, -13.978],
+ [11.768, -0.753],
+ [8.246, 17.312],
+ [-1.209, 11.62],
+ [-1.383, 5.233],
+ [-1.675, 5.061],
+ [-7.055, 19.031],
+ [-20.117, 54.648],
+ [-0.171, 1.926],
+ [0.406, 3.686],
+ [2.445, 25.034],
+ [2.349, -2.153],
+ [7.538, -6.723],
+ [11.935, -6.625],
+ [8.774, 0.04],
+ [7.489, 2.375],
+ [9.709, 4.17],
+ [3.337, 1.106],
+ [1.568, -0.362],
+ [2.117, -0.148],
+ [4.066, 1.892],
+ [3.312, 1.908],
+ [3.689, 1.27],
+ [0.856, -1.023],
+ [0.975, -4.922],
+ [4.652, 1.589],
+ [-1.322, 9.36],
+ [-0.524, 2.736],
+ [-0.5, 2.808],
+ [-1.146, 5.004],
+ [-1.067, 2.432],
+ [-4.619, 1.958],
+ [-3.751, -2.162],
+ [-3.271, -1.653],
+ [-5.916, -2.76],
+ [-2.937, -1.309],
+ [-2.836, -0.754],
+ [-4, -0.491],
+ [-12.769, -1.81],
+ [-15.862, 18.417],
+ [2.19, 8.337],
+ [1.568, 9.606],
+ [2.695, 18.384],
+ [7.046, 12.537],
+ [-2.367, 6.412],
+ [-3.289, -5.921],
+ [-1.106, -1.377],
+ [-2.51, 0.492],
+ [1.007, 5.904],
+ [0.887, 1.834],
+ [1.191, 1.081],
+ [1.445, 4.103],
+ [-7.5, -3.635],
+ [-4.152, -3.809],
+ [-0.392, 1.204],
+ [0.019, 1.448],
+ [-4.97, -0.589],
+ [-2.933, -6.159],
+ [-2.813, -0.114],
+ [-0.885, -6.478],
+ [0.345, -4.061],
+ [0.156, -3.718],
+ [-0.456, -4.554],
+ [-0.704, -3.873],
+ [-1.565, -5.159],
+ [-4.614, -15.01],
+ [-1.299, -1.458],
+ [-27.304, 1.122],
+ [3.771, 4.488],
+ [6.118, 0.974],
+ [1.667, 7.861],
+ [-5.225, -0.312],
+ [-0.147, -3.039],
+ [-5.319, -2.702],
+ [-3.824, -0.671],
+ [-2.641, -2.506],
+ [-0.646, -9.63],
+ [-6.466, -2.343],
+ [0.799, 7.445],
+ [4.579, 0.319],
+ [2.032, 2.898],
+ [0.528, 3.456],
+ [1.933, 1.933],
+ [0.364, 2.285],
+ [-3.161, 2.669],
+ [-1.036, 1.54],
+ [3.498, 2.571],
+ [-0.175, -2.489],
+ [-1.325, -0.867],
+ [3.922, 1.376],
+ [4.082, 0.491],
+ [0, 0],
+ [0.286, 2.44],
+ [0.648, -0.722],
+ [1.687, -3.186],
+ [2.719, -2.612],
+ [-0.724, 6.837],
+ [-2.403, 2.137],
+ [-5.049, 5.552],
+ [0.156, 1.008],
+ [-1.786, 5.348],
+ [0, 1.245],
+ [0.11, 1.867],
+ [-5.564, 2.645],
+ [-6.701, -4.144]
+ ],
+ "o": [
+ [0, 0],
+ [11.517, 2.365],
+ [6.502, -0.09],
+ [2.798, 2.383],
+ [2.633, 6.461],
+ [4.193, 6.805],
+ [-1.408, 2.064],
+ [-2.084, 0.975],
+ [-1.777, 0.704],
+ [-5.233, 3.996],
+ [-3.134, 6.117],
+ [0.782, 6.6],
+ [12.033, 7.232],
+ [8.648, 9.999],
+ [0, 8.459],
+ [-3.104, 19.934],
+ [-0.716, 3.873],
+ [-0.191, 3.741],
+ [1.746, 11.449],
+ [2.78, 15.462],
+ [0.77, 17.443],
+ [-0.586, 12.292],
+ [-0.266, 4.317],
+ [0.287, 1.596],
+ [2.974, 6.044],
+ [7.693, 23.543],
+ [1.416, 7.55],
+ [11.31, 13.562],
+ [6.597, 4.971],
+ [3.985, 0.574],
+ [1.346, 0.304],
+ [1.859, -0.014],
+ [5.357, -1.637],
+ [6.41, 1.358],
+ [2.228, 3.268],
+ [9.275, 31.832],
+ [0, 0],
+ [-1.405, 13.929],
+ [-6.932, 1.236],
+ [-17.239, -6.191],
+ [-4.362, -11.521],
+ [-0.091, -0.303],
+ [-1.494, -3.087],
+ [-2.237, -3.079],
+ [-2.37, 2.105],
+ [-6.863, 4.029],
+ [-12.369, -5.855],
+ [-41.074, -29.236],
+ [-22.627, 14.781],
+ [-8.378, 4.807],
+ [-26.579, 1.703],
+ [-4.324, -9.09],
+ [0.584, -5.667],
+ [1.34, -5.053],
+ [6.302, -19.04],
+ [20.183, -54.46],
+ [0.987, -2.686],
+ [0.275, -3.144],
+ [-2.825, -25.617],
+ [-2.899, 1.506],
+ [-7.51, 6.895],
+ [-10.003, 8.926],
+ [-6.794, 3.767],
+ [-8.199, -0.049],
+ [-10.618, -3.365],
+ [-3.272, -1.399],
+ [-1.772, -0.59],
+ [-2.195, 0.507],
+ [-5.58, 0.359],
+ [-3.644, -1.695],
+ [-3.198, -1.851],
+ [-0.513, 1.369],
+ [0.549, 3.964],
+ [-0.802, 4.036],
+ [-6.882, -2.35],
+ [0.381, -2.703],
+ [0.467, -2.424],
+ [0.983, -5.487],
+ [0.668, -2.892],
+ [2.286, -5.175],
+ [4.786, -2.03],
+ [3.689, 2.121],
+ [5.185, 2.614],
+ [2.813, 1.311],
+ [3.1, 1.392],
+ [3.776, 1.007],
+ [12.742, 1.564],
+ [16.099, -18.18],
+ [-5.519, -5.185],
+ [-2.2, -8.362],
+ [-3.058, -18.721],
+ [-13.27, -4.489],
+ [-2.752, -4.889],
+ [2.788, -7.55],
+ [0.999, 1.793],
+ [1.552, 1.948],
+ [5.712, -1.114],
+ [-0.619, -3.628],
+ [-0.524, -1.09],
+ [-3.227, -2.931],
+ [-2.862, -8.1],
+ [5.025, 2.433],
+ [0.29, 0.269],
+ [0.362, -1.097],
+ [-0.079, -5.488],
+ [8.082, 0.975],
+ [1.56, -0.696],
+ [5.749, 0.229],
+ [0.597, 4.364],
+ [-0.323, 3.857],
+ [-0.171, 4.193],
+ [0.462, 4.617],
+ [0.925, 5.085],
+ [4.767, 15.724],
+ [1.531, 1.221],
+ [13.586, -14.847],
+ [-0.561, -7.665],
+ [-3.218, -3.824],
+ [-8.784, -1.392],
+ [-0.762, -3.587],
+ [2.571, 0.148],
+ [0.397, 8.164],
+ [3.566, 1.81],
+ [4.284, 0.761],
+ [5.09, 4.832],
+ [8.448, -0.974],
+ [-1.241, -7.002],
+ [-4.766, -0.006],
+ [-3.931, -0.262],
+ [-2.604, -3.711],
+ [-0.381, -2.497],
+ [-1.523, -1.524],
+ [-0.786, -4.979],
+ [1.123, -0.942],
+ [2.342, -3.479],
+ [-1.085, -0.803],
+ [0.119, 1.655],
+ [3.379, 2.212],
+ [-1.466, 3.047],
+ [-6.016, -0.722],
+ [0, 0],
+ [-1.036, -0.27],
+ [-2.263, 2.488],
+ [-2.379, 4.489],
+ [-2.182, 2.105],
+ [0.394, -3.702],
+ [3.488, -7.437],
+ [0.622, -0.688],
+ [-4.955, -0.671],
+ [0.421, -1.261],
+ [0, -1.663],
+ [-0.458, -7.747],
+ [5.905, -2.801],
+ [3.678, -2.76]
+ ],
+ "v": [
+ [37.115, -417.576],
+ [40.805, -417.576],
+ [65.107, -400.216],
+ [81.599, -396.964],
+ [87.459, -386.982],
+ [89.196, -366.581],
+ [92.016, -336.422],
+ [86.808, -332.515],
+ [79.863, -330.344],
+ [74.655, -326.216],
+ [56.648, -316.456],
+ [56.209, -294.753],
+ [59.899, -277.828],
+ [92.884, -255.265],
+ [104.817, -211.861],
+ [102.212, -186.688],
+ [92.016, -127.445],
+ [89.845, -115.948],
+ [91.365, -103.795],
+ [96.787, -68.647],
+ [103.731, -21.558],
+ [102.212, 31.171],
+ [100.263, 69.801],
+ [99.608, 82.601],
+ [103.08, 88.464],
+ [110.676, 108.857],
+ [129.774, 182.854],
+ [129.339, 206.07],
+ [167.964, 243.611],
+ [184.24, 261.839],
+ [195.522, 263.797],
+ [199.427, 264.664],
+ [204.418, 263.141],
+ [221.564, 262.93],
+ [238.92, 272.257],
+ [243.694, 285.491],
+ [266.048, 388.135],
+ [266.048, 389.003],
+ [247.167, 416.339],
+ [227.64, 413.743],
+ [194.654, 377.719],
+ [183.372, 342.784],
+ [183.155, 342.128],
+ [176.863, 333.234],
+ [170.351, 324.333],
+ [163.841, 329.974],
+ [143.879, 326.935],
+ [110.459, 307.414],
+ [24.745, 181.552],
+ [-45.559, 227.339],
+ [-74.423, 237.322],
+ [-126.285, 211.935],
+ [-132.574, 179.817],
+ [-129.324, 163.544],
+ [-124.983, 148.352],
+ [-104.367, 91.283],
+ [-43.606, -71.685],
+ [-41.003, -78.844],
+ [-42.088, -89.906],
+ [-50.551, -166.942],
+ [-57.928, -160.654],
+ [-80.282, -140.255],
+ [-111.745, -114.646],
+ [-134.093, -108.57],
+ [-157.531, -113.565],
+ [-187.91, -125.932],
+ [-197.893, -130.271],
+ [-204.62, -128.534],
+ [-211.348, -127.445],
+ [-224.365, -130.271],
+ [-234.781, -135.693],
+ [-244.547, -141.336],
+ [-246.5, -137.651],
+ [-243.462, -126.578],
+ [-255.616, -122.026],
+ [-264.726, -144.373],
+ [-262.559, -152.186],
+ [-261.474, -160.219],
+ [-258.002, -175.844],
+ [-256.267, -183.87],
+ [-244.981, -196.458],
+ [-231.309, -193.631],
+ [-221.331, -187.122],
+ [-203.318, -179.531],
+ [-194.637, -175.411],
+ [-185.524, -171.504],
+ [-173.374, -169.768],
+ [-136.263, -165.208],
+ [-88.746, -220.541],
+ [-102.847, -239.205],
+ [-108.056, -266.763],
+ [-116.954, -323.612],
+ [-149.502, -351.825],
+ [-152.974, -370.922],
+ [-134.745, -369.398],
+ [-132.574, -363.33],
+ [-124.766, -360.94],
+ [-121.727, -376.13],
+ [-123.68, -386.112],
+ [-126.936, -389.586],
+ [-136.698, -400.216],
+ [-126.72, -411.5],
+ [-112.613, -400.87],
+ [-111.095, -400.003],
+ [-111.527, -404.989],
+ [-104.801, -413.023],
+ [-87.656, -397.611],
+ [-82.448, -400.649],
+ [-73.554, -383.287],
+ [-73.121, -370.922],
+ [-74.857, -359.424],
+ [-73.554, -345.969],
+ [-72.47, -332.727],
+ [-67.695, -317.111],
+ [-53.373, -270.023],
+ [-48.164, -266.976],
+ [20.623, -283.469],
+ [16.933, -304.089],
+ [0.661, -308.43],
+ [-16.266, -326.216],
+ [-13.662, -339.237],
+ [-10.624, -333.594],
+ [-1.943, -315.8],
+ [10.426, -313.638],
+ [20.839, -309.297],
+ [27.132, -286.073],
+ [51.222, -283.69],
+ [48.4, -305.606],
+ [34.728, -305.826],
+ [23.66, -308.862],
+ [24.094, -320.796],
+ [18.886, -327.74],
+ [13.244, -334.464],
+ [21.49, -343.799],
+ [24.962, -347.919],
+ [24.745, -356.812],
+ [21.49, -355.953],
+ [23.66, -354.651],
+ [19.321, -349.877],
+ [12.81, -342.93],
+ [6.087, -363.544],
+ [5.649, -370.701],
+ [3.698, -368.964],
+ [-2.594, -360.94],
+ [-9.105, -348.573],
+ [-21.909, -348.352],
+ [-13.662, -353.127],
+ [-1.075, -373.74],
+ [0.661, -375.909],
+ [-4.981, -385.68],
+ [-3.245, -389.799],
+ [-4.981, -395.007],
+ [4.129, -412.369],
+ [25.179, -410.198]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 15",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [266.298, 419.219], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 17,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [1.982, 6.666],
+ [0, 0],
+ [14.14, 7.608],
+ [0, 0],
+ [12.383, -0.148],
+ [0, 0],
+ [6.875, -10.015],
+ [0, 0],
+ [-3.497, -3.079],
+ [0, 0],
+ [-4.492, 2.055],
+ [0, 0],
+ [-0.254, -8.393]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.986, -6.667],
+ [0, 0],
+ [-14.142, -7.608],
+ [0, 0],
+ [-12.382, 0.156],
+ [0, 0],
+ [-6.878, 10.024],
+ [0, 0],
+ [3.496, 3.087],
+ [0, 0],
+ [4.491, -2.057],
+ [0, 0],
+ [0.254, 8.403]
+ ],
+ "v": [
+ [-27.784, 29.317],
+ [-15.414, 42.553],
+ [-18.236, 53.189],
+ [7.372, 54.491],
+ [8.457, 43.641],
+ [25.168, 35.819],
+ [34.503, 30.611],
+ [47.091, 26.493],
+ [47.741, 11.301],
+ [41.665, -3.243],
+ [36.239, -29.931],
+ [19.526, -32.535],
+ [-1.525, -50.553],
+ [-18.236, -41.217],
+ [-43.193, -44.476],
+ [-45.144, -28.629],
+ [-46.882, -17.999],
+ [-35.814, -15.829],
+ [-31.039, 17.813],
+ [-26.265, 3.923],
+ [-13.895, 8.91]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [311.453, 54.742], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-7.449, 110.465],
+ [14.468, 62.722],
+ [16.638, 99.614]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.183, 22.235],
+ [5.622, 7.027],
+ [4.947, -0.663],
+ [0, 0],
+ [0, 0],
+ [4.106, 3.661],
+ [9.651, 10.13],
+ [0, 0],
+ [7.207, 26.37],
+ [0, 0],
+ [-0.708, 15.953],
+ [3.607, 24.249],
+ [0, 0],
+ [4.839, 16.838],
+ [12.522, 6.454],
+ [3.009, 11.768],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-0.343, 6.961],
+ [0, 0],
+ [4.23, 8.377],
+ [5.487, -0.548],
+ [0, 0],
+ [12.183, -4.659],
+ [0, 0],
+ [5.615, -7.559],
+ [0, 0],
+ [-2.076, -3.619],
+ [0, 0],
+ [5.691, -9.467],
+ [4.427, -0.148],
+ [-1.125, -4.831],
+ [0, 0],
+ [-9.565, -5.011],
+ [-2.669, -10.835],
+ [0, 0],
+ [14.274, -4.004],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [1.785, 9.115],
+ [1.9, -1.409],
+ [0, 0],
+ [4.746, 5.02],
+ [2.629, -3.062],
+ [0, 0],
+ [6.478, 5.364],
+ [3.197, -3.284],
+ [-4.427, -4.962],
+ [0, 0],
+ [5.961, -2.85],
+ [2.604, 3.931],
+ [5.012, 0.492],
+ [-5.015, -9.656],
+ [-8.627, -7.706],
+ [0, 0],
+ [-2.53, -14.373],
+ [-2.772, -3.423],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [4.619, -1.925],
+ [3.046, -14.552],
+ [-2.87, -5.266],
+ [-0.627, 6.117],
+ [0, 0],
+ [0, 0],
+ [-8.551, 0.107],
+ [0, 0],
+ [-22.111, 3.825],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-33.436, -7.74],
+ [-11.867, 6.157],
+ [0, 0],
+ [-30.678, -30.718],
+ [-7.518, -0.868],
+ [0, 0],
+ [0, 0],
+ [-10.535, -15.519],
+ [-10.506, 5.954]
+ ],
+ "o": [
+ [-5.18, -22.234],
+ [-5.626, -7.025],
+ [-4.95, 0.664],
+ [0, 0],
+ [0, 0],
+ [-4.103, -3.66],
+ [-9.652, -10.123],
+ [0, 0],
+ [-7.209, -26.369],
+ [0, 0],
+ [0.708, -15.953],
+ [-3.613, -24.256],
+ [0, 0],
+ [-4.845, -16.845],
+ [-12.53, -6.46],
+ [-3.011, -11.777],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0.738, -14.978],
+ [0, 0],
+ [-4.225, -8.378],
+ [-5.482, 0.548],
+ [0, 0],
+ [-12.181, 4.661],
+ [0, 0],
+ [-5.613, 7.557],
+ [0, 0],
+ [2.072, 3.62],
+ [0, 0],
+ [-5.697, 9.458],
+ [-4.426, 0.147],
+ [1.123, 4.831],
+ [0, 0],
+ [9.56, 5.02],
+ [2.67, 10.825],
+ [0, 0],
+ [-14.277, 4.005],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-1.781, -9.106],
+ [-1.9, 1.409],
+ [0, 0],
+ [-4.747, -5.02],
+ [-2.629, 3.063],
+ [0, 0],
+ [-6.478, -5.355],
+ [-3.198, 3.292],
+ [4.423, 4.964],
+ [0, 0],
+ [-5.966, 2.842],
+ [-2.608, -3.931],
+ [-5.017, -0.491],
+ [5.007, 9.647],
+ [8.627, 7.706],
+ [0, 0],
+ [2.53, 14.372],
+ [2.773, 3.423],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [-4.62, 1.934],
+ [-3.051, 14.544],
+ [2.866, 5.256],
+ [0.626, -6.11],
+ [0, 0],
+ [0, 0],
+ [8.545, -0.106],
+ [0, 0],
+ [22.106, -3.823],
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [33.437, 7.73],
+ [11.862, -6.167],
+ [0, 0],
+ [30.677, 30.726],
+ [7.518, 0.86],
+ [0, 0],
+ [0, 0],
+ [10.544, 15.51],
+ [10.507, -5.962]
+ ],
+ "v": [
+ [260.14, 371.982],
+ [232.143, 271.065],
+ [209.139, 264.768],
+ [191.124, 273.016],
+ [179.405, 266.725],
+ [175.499, 253.049],
+ [146.853, 230.914],
+ [123.197, 203.569],
+ [120.809, 166.242],
+ [94.986, 83.342],
+ [96.721, 9.336],
+ [93.033, -63.582],
+ [85.215, -119.359],
+ [99.76, -230.259],
+ [70.462, -267.152],
+ [53.965, -286.248],
+ [50.059, -307.958],
+ [53.314, -318.809],
+ [73.93, -330.742],
+ [89.776, -341.379],
+ [82.616, -365.464],
+ [82.395, -385.216],
+ [74.581, -396.935],
+ [60.693, -397.368],
+ [33.13, -414.297],
+ [20.762, -406.263],
+ [1.447, -409.521],
+ [-2.46, -391.727],
+ [-4.847, -383.259],
+ [-0.072, -378.485],
+ [-6.148, -363.293],
+ [-15.698, -348.536],
+ [-21.557, -343.549],
+ [-17.217, -335.949],
+ [-7.449, -314.903],
+ [19.676, -301.873],
+ [19.46, -279.526],
+ [-21.991, -276.921],
+ [-46.734, -263.9],
+ [-57.368, -269.321],
+ [-76.9, -331.609],
+ [-79.07, -360.042],
+ [-79.07, -382.178],
+ [-84.496, -398.237],
+ [-87.534, -382.178],
+ [-96.431, -404.748],
+ [-109.018, -410.824],
+ [-108.801, -388.254],
+ [-118.566, -399.327],
+ [-134.626, -408.441],
+ [-132.238, -395.634],
+ [-122.908, -387.599],
+ [-122.257, -359.821],
+ [-135.928, -359.821],
+ [-144.608, -372.196],
+ [-151.553, -359.387],
+ [-131.587, -334.213],
+ [-116.615, -325.753],
+ [-104.027, -255.219],
+ [-99.035, -233.952],
+ [-88.185, -222.012],
+ [-138.967, -161.46],
+ [-188.668, -168.191],
+ [-226.428, -184.472],
+ [-245.092, -194.889],
+ [-258.98, -171.009],
+ [-262.453, -132.379],
+ [-249.431, -126.09],
+ [-251.168, -137.154],
+ [-246.828, -144.32],
+ [-213.624, -130.865],
+ [-200.604, -133.035],
+ [-126.814, -113.283],
+ [-49.118, -172.745],
+ [-39.355, -78.347],
+ [-131.154, 177.316],
+ [-98.386, 232.437],
+ [-43.691, 222.454],
+ [24.234, 178.829],
+ [80.012, 278.657],
+ [152.711, 329.447],
+ [169.421, 321.635],
+ [182.008, 337.26],
+ [201.322, 388.042],
+ [249.505, 413.002]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [268.329, 420.262], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 5,
+ "ty": 4,
+ "nm": "LAPTOP Outlines",
+ "parent": 2,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [-31.319, 232.136, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [164.275, 113.606, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-4.91, 1.326],
+ [0, 0],
+ [-2.457, -0.704],
+ [0, 0],
+ [4.906, -1.327],
+ [0, 0],
+ [2.456, 0.705],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [4.909, -1.326],
+ [0, 0],
+ [2.457, 0.704],
+ [0, 0],
+ [-4.904, 1.327],
+ [0, 0],
+ [-2.458, -0.704]
+ ],
+ "v": [
+ [-106.343, 12.763],
+ [49.003, -29.118],
+ [62.339, -30.247],
+ [110.783, -16.432],
+ [106.349, -12.763],
+ [-49.002, 29.117],
+ [-62.338, 30.246],
+ [-110.781, 16.431]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [188.713, 174.107], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.66, 0],
+ [3.697, -0.987],
+ [0, 0],
+ [0.23, -0.208],
+ [-0.33, -1.645],
+ [-0.739, -0.465],
+ [0, 0],
+ [-5.672, 1.517],
+ [0, 0],
+ [-0.384, 1.156],
+ [0.676, 0.865],
+ [0, 0]
+ ],
+ "o": [
+ [-3.097, 0],
+ [0, 0],
+ [-2.744, 0.734],
+ [-0.085, 0.138],
+ [0.607, 2.981],
+ [0, 0],
+ [2.443, 0.719],
+ [0, 0],
+ [0.515, -0.137],
+ [1.038, -3.105],
+ [-0.131, -0.146],
+ [-0.846, -0.249]
+ ],
+ "v": [
+ [63.935, -39.9],
+ [53.03, -38.46],
+ [-130.172, 10.632],
+ [-134.337, 12.273],
+ [-134.315, 14.851],
+ [-131.171, 21.091],
+ [-65.61, 40.192],
+ [-50.824, 39.136],
+ [132.454, -9.98],
+ [133.914, -12.077],
+ [133.723, -20.131],
+ [67.809, -39.521]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.142, 0],
+ [1.553, 0.453],
+ [0, 0],
+ [0.899, 2.97],
+ [-1.845, 2.213],
+ [-5.786, 1.548],
+ [0, 0],
+ [-4.488, -1.322],
+ [0, 0],
+ [-0.515, -0.884],
+ [1.168, -4.215],
+ [2.936, -0.788],
+ [0, 0]
+ ],
+ "o": [
+ [-2.183, 0],
+ [0, 0],
+ [-3.612, -1.053],
+ [-1.26, -4.116],
+ [0.353, -0.465],
+ [0, 0],
+ [5.534, -1.483],
+ [0, 0],
+ [1.898, 0.539],
+ [2.391, 3.04],
+ [-1.054, 3.801],
+ [0, 0],
+ [-3.612, 0.965]
+ ],
+ "v": [
+ [-61.699, 47.09],
+ [-67.44, 46.441],
+ [-133.231, 27.247],
+ [-140.24, 17.918],
+ [-139.333, 8.1],
+ [-131.863, 4.346],
+ [51.347, -44.75],
+ [69.645, -45.768],
+ [135.413, -26.541],
+ [138.825, -24.177],
+ [140.332, -10.805],
+ [134.145, -3.692],
+ [-49.142, 45.422]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [186.8, 179.872], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.583, 2.67],
+ [0.942, 0.27],
+ [0, 0],
+ [5.79, -1.548],
+ [0, 0],
+ [0.667, -0.875],
+ [-2.923, -0.851],
+ [0, 0],
+ [-5.791, 1.549],
+ [0, 0]
+ ],
+ "o": [
+ [-0.132, -0.409],
+ [0, 0],
+ [-3.341, -0.982],
+ [0, 0],
+ [-3.125, 0.834],
+ [-2.851, 3.423],
+ [0, 0],
+ [3.34, 0.975],
+ [0, 0],
+ [5.302, -1.426]
+ ],
+ "v": [
+ [136.593, -22.701],
+ [135.003, -23.749],
+ [69.227, -42.978],
+ [52.696, -41.937],
+ [-130.517, 7.158],
+ [-136.324, 9.851],
+ [-131.812, 23.79],
+ [-66.018, 42.985],
+ [-49.484, 41.945],
+ [133.8, -7.166]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [186.297, 180.204], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.277, 0],
+ [0.384, 1.46],
+ [-1.737, 0.462],
+ [0, 0],
+ [-0.46, -1.74],
+ [1.737, -0.462],
+ [0, 0]
+ ],
+ "o": [
+ [-1.445, 0],
+ [-0.46, -1.737],
+ [0, 0],
+ [1.753, -0.469],
+ [0.461, 1.736],
+ [0, 0],
+ [-0.285, 0.073]
+ ],
+ "v": [
+ [-39.846, 14.008],
+ [-42.991, 11.587],
+ [-40.685, 7.606],
+ [39.008, -13.539],
+ [42.99, -11.226],
+ [40.684, -7.245],
+ [-39.009, 13.9]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [100.939, 126.882], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.276, 0],
+ [0.384, 1.46],
+ [-1.737, 0.461],
+ [0, 0],
+ [-0.46, -1.74],
+ [1.737, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [-1.444, 0],
+ [-0.461, -1.737],
+ [0, 0],
+ [1.775, -0.454],
+ [0.461, 1.737],
+ [0, 0],
+ [-0.284, 0.073]
+ ],
+ "v": [
+ [-39.846, 14],
+ [-42.99, 11.579],
+ [-40.685, 7.599],
+ [39.009, -13.546],
+ [42.99, -11.234],
+ [40.685, -7.252],
+ [-39.01, 13.893]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [96.497, 109.421], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.277, 0],
+ [0.386, 1.46],
+ [-1.737, 0.461],
+ [0, 0],
+ [-0.461, -1.739],
+ [1.737, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [-1.445, 0],
+ [-0.46, -1.737],
+ [0, 0],
+ [1.753, -0.457],
+ [0.461, 1.737],
+ [0, 0],
+ [-0.284, 0.073]
+ ],
+ "v": [
+ [-19.574, 8.622],
+ [-22.718, 6.202],
+ [-20.411, 2.221],
+ [18.736, -8.165],
+ [22.717, -5.853],
+ [20.411, -1.871],
+ [-18.736, 8.515]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [112.797, 87.571], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.276, 0],
+ [0.384, 1.461],
+ [-1.737, 0.461],
+ [0, 0],
+ [-0.461, -1.741],
+ [1.737, -0.461],
+ [0, 0]
+ ],
+ "o": [
+ [-1.445, 0],
+ [-0.46, -1.736],
+ [0, 0],
+ [1.776, -0.462],
+ [0.461, 1.736],
+ [0, 0],
+ [-0.284, 0.073]
+ ],
+ "v": [
+ [-13.971, 7.137],
+ [-17.116, 4.717],
+ [-14.81, 0.737],
+ [13.132, -6.676],
+ [17.115, -4.363],
+ [14.809, -0.382],
+ [-13.135, 7.03]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [66.857, 99.761], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.277, 0],
+ [0.384, 1.46],
+ [-1.737, 0.46],
+ [0, 0],
+ [-0.461, -1.737],
+ [1.737, -0.462],
+ [0, 0]
+ ],
+ "o": [
+ [-1.445, 0],
+ [-0.461, -1.736],
+ [0, 0],
+ [1.759, -0.449],
+ [0.461, 1.736],
+ [0, 0],
+ [-0.285, 0.073]
+ ],
+ "v": [
+ [-39.843, 13.998],
+ [-42.986, 11.577],
+ [-40.68, 7.597],
+ [39.006, -13.549],
+ [42.986, -11.236],
+ [40.68, -7.254],
+ [-39.005, 13.89]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [88.147, 76.593], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.786, -1.548],
+ [0, 0],
+ [-1.553, -5.79],
+ [0, 0],
+ [-5.79, 1.555],
+ [0, 0],
+ [1.547, 5.791],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-5.79, 1.556],
+ [0, 0],
+ [1.551, 5.79],
+ [0, 0],
+ [5.786, -1.548],
+ [0, 0],
+ [-1.549, -5.79]
+ ],
+ "v": [
+ [11.287, -43.768],
+ [-31.653, -32.261],
+ [-39.326, -18.97],
+ [-24.573, 36.086],
+ [-11.282, 43.76],
+ [31.658, 32.254],
+ [39.332, 18.961],
+ [24.575, -36.094]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [178.12, 78.259], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [1.015, -1.756],
+ [-0.523, -1.963],
+ [0, 0],
+ [-1.752, -1.013],
+ [-1.943, 0.522],
+ [0, 0],
+ [1.076, 4.054],
+ [0, 0],
+ [4.073, -1.084]
+ ],
+ "o": [
+ [0, 0],
+ [-1.959, 0.526],
+ [-1.014, 1.756],
+ [0, 0],
+ [0.522, 1.959],
+ [1.768, 1.016],
+ [0, 0],
+ [4.05, -1.079],
+ [0, 0],
+ [-1.076, -4.031],
+ [0, 0]
+ ],
+ "v": [
+ [66.114, -70.915],
+ [-94.057, -27.994],
+ [-98.668, -24.456],
+ [-99.428, -18.688],
+ [-76.45, 67.062],
+ [-72.915, 71.671],
+ [-67.152, 72.433],
+ [93.018, 29.512],
+ [98.398, 20.202],
+ [75.421, -65.543],
+ [66.105, -70.911]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.222, 0],
+ [2.175, 1.252],
+ [0.968, 3.642],
+ [0, 0],
+ [-1.883, 3.263],
+ [-3.635, 0.973],
+ [0, 0],
+ [-2.014, -7.504],
+ [0, 0],
+ [7.515, -2.006],
+ [0, 0]
+ ],
+ "o": [
+ [-2.444, 0],
+ [-3.266, -1.886],
+ [0, 0],
+ [-0.975, -3.639],
+ [1.882, -3.262],
+ [0, 0],
+ [7.532, -2.005],
+ [0, 0],
+ [2.006, 7.523],
+ [0, 0],
+ [-1.214, 0.326]
+ ],
+ "v": [
+ [-69.134, 79.207],
+ [-76.166, 77.313],
+ [-82.737, 68.74],
+ [-105.715, -17.005],
+ [-104.308, -27.711],
+ [-95.747, -34.282],
+ [64.423, -77.202],
+ [81.706, -67.227],
+ [104.685, 18.523],
+ [94.703, 35.802],
+ [-65.461, 78.719]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [130.757, 93.014], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [5.79, -1.547],
+ [0, 0],
+ [-1.551, -5.789],
+ [0, 0],
+ [-5.785, 1.547],
+ [0, 0],
+ [1.552, 5.79],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-5.791, 1.548],
+ [0, 0],
+ [1.552, 5.791],
+ [0, 0],
+ [5.79, -1.548],
+ [0, 0],
+ [-1.551, -5.791]
+ ],
+ "v": [
+ [65.789, -74.818],
+ [-94.38, -31.898],
+ [-102.055, -18.607],
+ [-79.08, 67.143],
+ [-65.789, 74.818],
+ [94.382, 31.897],
+ [102.054, 18.605],
+ [79.08, -67.144]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 2",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.7490196078431373, 0.7490196078431373, 0.8392156862745098, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [130.24, 93.774], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.314, 0],
+ [0.653, -0.177],
+ [0, 0],
+ [0.037, -0.011],
+ [0, 0],
+ [-1.536, -8.622],
+ [0, 0],
+ [-3.996, 1.076],
+ [0, 0],
+ [-0.669, 2.697],
+ [-0.861, 0.426],
+ [0.929, 3.486],
+ [0, 0],
+ [1.759, 1.018]
+ ],
+ "o": [
+ [-0.661, 0],
+ [0, 0],
+ [-0.038, 0.011],
+ [0, 0],
+ [-3.974, 1.067],
+ [0, 0],
+ [1.084, 4.053],
+ [0, 0],
+ [2.674, -0.722],
+ [0.222, -0.933],
+ [3.235, -1.595],
+ [0, 0],
+ [-0.53, -1.96],
+ [-1.169, -0.673]
+ ],
+ "v": [
+ [79.529, -92.498],
+ [77.546, -92.237],
+ [-105.664, -43.149],
+ [-106.501, -42.888],
+ [-107.454, -42.669],
+ [-116.707, -26.423],
+ [-86.205, 87.35],
+ [-76.907, 92.721],
+ [106.312, 43.629],
+ [111.729, 38.085],
+ [113.442, 35.941],
+ [117.408, 27.172],
+ [86.852, -86.865],
+ [83.31, -91.48]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.198, -0.004],
+ [1.683, 6.295],
+ [0, 0],
+ [-7.139, 1.917],
+ [0, 0],
+ [0, 0],
+ [-3.266, -1.887],
+ [-0.976, -3.638],
+ [0, 0],
+ [5.142, -3.259],
+ [4.487, -1.211],
+ [0, 0]
+ ],
+ "o": [
+ [-6.233, 0],
+ [0, 0],
+ [-2.244, -12.515],
+ [0, 0],
+ [0, 0],
+ [3.658, -0.968],
+ [3.258, 1.887],
+ [0, 0],
+ [1.605, 5.992],
+ [-1.552, 4.32],
+ [0, 0],
+ [-1.221, 0.327]
+ ],
+ "v": [
+ [-78.858, 99.492],
+ [-92.492, 89.032],
+ [-123.055, -25.009],
+ [-109.031, -48.986],
+ [-107.962, -49.236],
+ [75.856, -98.524],
+ [86.568, -97.117],
+ [93.138, -88.553],
+ [123.695, 25.488],
+ [117.622, 41.055],
+ [108.002, 49.916],
+ [-75.216, 99.007]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [125.549, 99.742], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 12,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.359, 5.077],
+ [0, 0],
+ [5.79, -1.557],
+ [0, 0],
+ [0.238, -0.082],
+ [0, 0],
+ [-1.818, -10.179],
+ [0, 0],
+ [-5.791, 1.548],
+ [0, 0],
+ [-0.914, 3.726]
+ ],
+ "o": [
+ [0, 0],
+ [-1.55, -5.79],
+ [0, 0],
+ [-0.246, 0.065],
+ [0, 0],
+ [-5.79, 1.557],
+ [0, 0],
+ [1.553, 5.789],
+ [0, 0],
+ [3.965, -1.064],
+ [4.54, -2.244]
+ ],
+ "v": [
+ [120.461, 26.091],
+ [89.9, -87.944],
+ [76.611, -95.617],
+ [-106.604, -46.531],
+ [-107.325, -46.302],
+ [-108.279, -46.081],
+ [-120.001, -26.091],
+ [-89.444, 87.953],
+ [-76.152, 95.627],
+ [107.061, 46.531],
+ [114.798, 38.621]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [125.642, 99.981], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 13",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 13,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 6,
+ "ty": 4,
+ "nm": "fLOWR POT Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [376.158, 1009.77, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [75.886, 52.39, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -0.588],
+ [0, 0],
+ [-0.599, 0],
+ [0, 0],
+ [0, 0.596],
+ [0, 0],
+ [0.469, 0]
+ ],
+ "o": [
+ [-0.47, 0],
+ [0, 0],
+ [0.038, 0.135],
+ [0, 0],
+ [0.599, 0],
+ [0, 0],
+ [-0.038, -1.049],
+ [0, 0]
+ ],
+ "v": [
+ [-64.669, -13.566],
+ [-65.538, -12.479],
+ [-69.157, 12.943],
+ [-68.036, 13.566],
+ [68.035, 13.566],
+ [69.119, 12.482],
+ [65.576, -12.018],
+ [64.669, -13.566]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.189, 0],
+ [0, 0],
+ [0, 4.188],
+ [0, 0],
+ [-4.073, 0],
+ [0, 0],
+ [0, -4.189],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-4.188, 0],
+ [0, 0],
+ [-0.039, -3.728],
+ [0, 0],
+ [4.073, 0],
+ [0, 0],
+ [0.039, 4.649]
+ ],
+ "v": [
+ [68.035, 20.075],
+ [-68.036, 20.075],
+ [-75.636, 12.482],
+ [-72.016, -12.94],
+ [-64.669, -20.075],
+ [64.669, -20.075],
+ [72.055, -12.479],
+ [75.597, 12.021]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [75.886, 20.325], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.281, 0],
+ [0, 0],
+ [0, -2.392],
+ [0, 0],
+ [2.396, 0],
+ [0, 0],
+ [0, 2.391],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [2.276, 0],
+ [0, 0],
+ [0, 2.391],
+ [0, 0],
+ [-2.399, 0],
+ [0, 0],
+ [0, -2.392]
+ ],
+ "v": [
+ [-64.669, -16.822],
+ [64.669, -16.822],
+ [68.796, -12.479],
+ [72.375, 12.48],
+ [68.034, 16.822],
+ [-68.036, 16.822],
+ [-72.375, 12.48],
+ [-68.797, -12.479]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [75.886, 20.325], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -4.119],
+ [0, 0],
+ [-4.188, 0],
+ [0, 0],
+ [0, 4.188],
+ [0, 0],
+ [5.879, 0]
+ ],
+ "o": [
+ [-5.878, 0],
+ [0, 0],
+ [0.093, 4.931],
+ [0, 0],
+ [4.189, 0],
+ [0, 0],
+ [-0.084, -3.389],
+ [0, 0]
+ ],
+ "v": [
+ [-45.687, -37.222],
+ [-56.531, -29.626],
+ [-42.736, 28.883],
+ [-35.051, 37.222],
+ [35.266, 37.222],
+ [42.86, 29.626],
+ [56.615, -30.356],
+ [45.688, -37.222]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [7.777, 0],
+ [0, 0],
+ [0, 7.777],
+ [0, 0],
+ [-9.568, 0],
+ [0, 0],
+ [0, -7.777],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-7.777, 0],
+ [0, 0],
+ [-0.092, -8.519],
+ [0, 0],
+ [9.567, 0],
+ [0, 0],
+ [0.084, 7.048]
+ ],
+ "v": [
+ [35.266, 43.731],
+ [-35.051, 43.731],
+ [-49.162, 29.626],
+ [-62.955, -28.884],
+ [-45.687, -43.731],
+ [45.688, -43.731],
+ [63.048, -29.626],
+ [49.291, 30.355]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [74.587, 60.799], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-7.789, 0],
+ [0, 0],
+ [0, -5.996],
+ [0, 0],
+ [5.991, 0],
+ [0, 0],
+ [0, 5.995],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [7.788, 0],
+ [0, 0],
+ [0, 5.995],
+ [0, 0],
+ [-5.995, 0],
+ [0, 0],
+ [0, -5.996]
+ ],
+ "v": [
+ [-45.687, -40.476],
+ [45.688, -40.476],
+ [59.79, -29.624],
+ [46.119, 29.625],
+ [35.268, 40.476],
+ [-35.05, 40.476],
+ [-45.9, 29.625],
+ [-59.79, -29.624]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [74.585, 60.8], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 7,
+ "ty": 4,
+ "nm": "l1 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 59.5,
+ "s": [4]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 119,
+ "s": [-4]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 172,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 231.5,
+ "s": [4]
+ },
+ { "t": 291, "s": [-4] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [371.835, 1037.71, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [60.523, 337.775, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [6.257, -3.85],
+ [0.746, -11.064],
+ [4.201, -8.353],
+ [1.454, -11.85],
+ [0.319, -5.2],
+ [5.049, 0.196],
+ [-0.246, 5.29],
+ [-3.104, 10.286],
+ [-3.022, 6.28],
+ [0.183, 9.156],
+ [2.031, 7.051],
+ [4.373, 15.225],
+ [-0.532, 8.099],
+ [-5.847, 7.803],
+ [0, 10.482],
+ [0.953, 2.268],
+ [4.156, 6.756],
+ [1.362, 4.225],
+ [-0.86, 5.356],
+ [-1.814, 3.251],
+ [-3.566, -1.907],
+ [1.155, -1.949],
+ [-2.547, -8.418],
+ [-1.266, -2.465],
+ [-2.478, -10.219],
+ [3.202, -5.863],
+ [1.126, -13.71],
+ [-1.201, -4.75],
+ [-3.837, -12.981],
+ [-4.893, 4.21],
+ [-0.31, 6.184],
+ [2.404, 4.315],
+ [-1.02, 8.041],
+ [-4.906, 8.689],
+ [3.193, 8.812],
+ [3.326, 4.472],
+ [-2.469, 16.87],
+ [-0.632, 3.243],
+ [0.584, 3.873],
+ [2.182, 2.71],
+ [5.745, 0.753],
+ [5.061, -2.693],
+ [5.425, -11.244],
+ [-1.271, -6.985],
+ [-2.408, -3.488],
+ [-2.243, -3.128],
+ [-0.679, -8.836],
+ [4.889, -7.239],
+ [3.5, -7.091],
+ [-3.94, -7.092],
+ [-5.708, -4.48],
+ [-3.517, -2.62],
+ [1.342, -3.677],
+ [1.952, 1.449],
+ [3.006, 2.416],
+ [3.731, 6.937],
+ [-3.898, 9.648],
+ [-4.794, 6.625],
+ [0.053, 9.203],
+ [5.147, 7.034],
+ [0.938, 9.623],
+ [-2.76, 6.02],
+ [-20.764, 2.482],
+ [-4.942, -4.406],
+ [-0.331, -8.223],
+ [-0.97, -12.603],
+ [-4.777, -13.005],
+ [6.105, -8.458],
+ [3.538, -2.906],
+ [0.441, -4.725],
+ [-2.195, -3.858],
+ [2.186, -8.575],
+ [5.04, -4.357]
+ ],
+ "o": [
+ [2.367, 9.695],
+ [-0.757, 11.227],
+ [-4.013, 7.985],
+ [-0.655, 5.339],
+ [-0.25, 4.144],
+ [-3.881, -0.148],
+ [0.605, -13.046],
+ [2.182, -7.215],
+ [3.193, -6.642],
+ [-0.16, -7.886],
+ [-4.332, -15.053],
+ [-2.056, -7.141],
+ [0.771, -11.759],
+ [4.581, -6.118],
+ [0, -2.637],
+ [-3.076, -7.288],
+ [-2.068, -3.356],
+ [-1.492, -4.643],
+ [0.528, -3.293],
+ [1.007, -1.8],
+ [3.059, 1.638],
+ [-3.451, 5.831],
+ [0.913, 3.015],
+ [4.918, 9.582],
+ [2.223, 9.164],
+ [-5.716, 10.466],
+ [-0.439, 5.371],
+ [3.455, 13.733],
+ [5.016, -2.359],
+ [4.193, -3.612],
+ [0.304, -6.124],
+ [-2.899, -5.209],
+ [1.515, -11.941],
+ [4.118, -7.297],
+ [-2.035, -5.601],
+ [-6.767, -9.098],
+ [0.512, -3.496],
+ [0.605, -3.128],
+ [-0.685, -4.522],
+ [-3.084, -3.833],
+ [-7.923, -1.049],
+ [-10.932, 5.815],
+ [-2.764, 5.733],
+ [0.801, 4.423],
+ [2.432, 3.531],
+ [4.734, 6.609],
+ [0.898, 11.661],
+ [-4.95, 7.33],
+ [-3.776, 7.65],
+ [3.123, 5.618],
+ [2.425, 1.908],
+ [2.457, 1.828],
+ [-1.839, 5.019],
+ [-3.722, -2.768],
+ [-6.326, -5.085],
+ [-4.445, -8.271],
+ [3.001, -7.435],
+ [4.623, -6.389],
+ [-0.054, -9.468],
+ [-5.36, -7.331],
+ [-0.819, -8.377],
+ [7.8, -16.967],
+ [8.057, -0.958],
+ [5.02, 4.479],
+ [0.459, 11.391],
+ [1.209, 15.674],
+ [4.525, 12.315],
+ [-2.456, 3.416],
+ [-3.115, 2.564],
+ [-0.443, 4.684],
+ [3.125, 5.494],
+ [-1.818, 7.157],
+ [-5.454, 4.725]
+ ],
+ "v": [
+ [8.151, 50.402],
+ [14.227, 80.776],
+ [5.112, 108.553],
+ [-3.569, 136.766],
+ [-5.087, 153.693],
+ [-8.99, 168.663],
+ [-11.811, 157.599],
+ [-6.824, 120.272],
+ [1.857, 100.528],
+ [7.935, 78.392],
+ [2.941, 54.955],
+ [-10.509, 11.772],
+ [-15.066, -11.879],
+ [-0.526, -41.392],
+ [9.452, -65.477],
+ [7.935, -72.856],
+ [-4.871, -92.822],
+ [-9.861, -104.319],
+ [-12.027, -119.944],
+ [-8.339, -129.494],
+ [-1.181, -134.702],
+ [-2.049, -127.102],
+ [-4.22, -107.571],
+ [-0.746, -98.463],
+ [15.095, -71.988],
+ [10.754, -45.946],
+ [-8.56, -12.099],
+ [-6.168, 3.092],
+ [5.98, 43.67],
+ [21.172, 33.04],
+ [31.805, 17.635],
+ [26.164, 2.658],
+ [20.086, -16.218],
+ [39.832, -39.869],
+ [41.789, -70.252],
+ [32.238, -84.575],
+ [22.257, -121.026],
+ [24.211, -131.008],
+ [25.296, -142.292],
+ [19.87, -152.922],
+ [6.632, -161.603],
+ [-13.548, -156.617],
+ [-38.069, -131.008],
+ [-42.193, -109.528],
+ [-36.333, -98.03],
+ [-29.173, -87.826],
+ [-17.888, -64.388],
+ [-27.003, -37.7],
+ [-41.975, -16.866],
+ [-41.759, 12.861],
+ [-24.616, 29.568],
+ [-15.717, 36.298],
+ [-8.772, 44.325],
+ [-19.841, 41.287],
+ [-29.823, 33.473],
+ [-47.62, 15.678],
+ [-48.487, -17.734],
+ [-34.598, -38.133],
+ [-24.181, -62.004],
+ [-35.466, -85.655],
+ [-48.917, -110.175],
+ [-44.362, -132.532],
+ [0.556, -167.901],
+ [20.954, -161.39],
+ [32.022, -141.211],
+ [28.116, -108.872],
+ [47.859, -72.421],
+ [43.954, -34.883],
+ [34.409, -25.768],
+ [26.38, -14.482],
+ [32.022, -0.38],
+ [37.66, 21.321],
+ [25.078, 38.028]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [61.344, 169.109], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-13.185, -0.401],
+ [0.204, -10.311],
+ [-6.633, -13.136],
+ [5.205, -19.754],
+ [-1.859, -13.619],
+ [2.76, -8.656],
+ [15.019, 0.196],
+ [10.445, 11.048],
+ [-15.928, 14.888],
+ [12.739, 15.815],
+ [-17.944, 17.436]
+ ],
+ "o": [
+ [13.185, 0.394],
+ [-0.205, 10.303],
+ [6.637, 13.127],
+ [-5.2, 19.744],
+ [1.864, 13.626],
+ [-2.76, 8.658],
+ [-15.019, -0.197],
+ [-10.45, -11.056],
+ [15.924, -14.895],
+ [-12.738, -15.804],
+ [17.942, -17.434]
+ ],
+ "v": [
+ [2.974, -106.346],
+ [32.706, -85.079],
+ [30.101, -43.411],
+ [51.369, 7.158],
+ [30.318, 43.395],
+ [40.084, 75.3],
+ [12.089, 106.551],
+ [-30.012, 84.415],
+ [-40.646, 37.105],
+ [-18.945, -15.855],
+ [-36.305, -77.488]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [56.824, 109.839], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 8,
+ "ty": 4,
+ "nm": "Layer 6 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 59.5,
+ "s": [4]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 119,
+ "s": [-4]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 172,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 231.5,
+ "s": [4]
+ },
+ { "t": 291, "s": [-4] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [324.475, 1022.582, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [40.769, 225.154, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.491, -0.304],
+ [0.664, 9.115],
+ [-1.057, 5.816],
+ [0.904, 4.938],
+ [2.285, 2.193],
+ [1.293, 2.891],
+ [-6.211, -0.36],
+ [-1.495, -4.02],
+ [-2.53, -2.718],
+ [-0.646, -4.644],
+ [1.072, -5.659],
+ [-2.784, -6.151],
+ [-1.355, -15.396],
+ [2.559, -7.346],
+ [1.093, -8.263],
+ [-0.123, -11.546],
+ [4.206, -0.082],
+ [0, 5.389],
+ [-1.478, 12.432],
+ [-2.445, 6.895],
+ [-0.68, 7.779],
+ [3.688, 3.096],
+ [2.309, -0.026],
+ [6.982, 4.192],
+ [0.196, 5.223],
+ [-0.872, 11.522],
+ [4.148, 9.632],
+ [-5.7, 6.692],
+ [-5.551, -0.099],
+ [-4.648, -3.07],
+ [-2.371, -4.257],
+ [-3.972, -8.441],
+ [-4.544, -8.319],
+ [5.417, -9.083],
+ [3.013, 0.344],
+ [-1.915, 3.152],
+ [-1.036, 2.064],
+ [1.203, 6.199],
+ [3.199, 3.382],
+ [1.761, 11.604],
+ [2.924, 5.085],
+ [4.448, 2.775],
+ [5.14, -1.547],
+ [0, -9.033],
+ [-4.865, -8.567],
+ [0.394, -5.602],
+ [1.957, -5.134],
+ [-1.854, -5.388],
+ [-4.736, -0.852]
+ ],
+ "o": [
+ [-4.943, -4.226],
+ [-0.409, -5.643],
+ [0.937, -5.158],
+ [-0.651, -3.562],
+ [-2.167, -2.09],
+ [-1.553, -3.463],
+ [4.582, 0.261],
+ [1.118, 3.014],
+ [2.502, 2.695],
+ [0.77, 5.527],
+ [-1.393, 7.338],
+ [5.029, 11.112],
+ [0.844, 9.565],
+ [-2.535, 7.254],
+ [-1.543, 11.637],
+ [0.045, 4.284],
+ [-3.8, 0.074],
+ [0, -14.379],
+ [0.971, -8.156],
+ [2.546, -7.19],
+ [0.569, -6.567],
+ [-1.933, 0.778],
+ [-10.561, 0.106],
+ [-3.439, -2.065],
+ [-0.413, -10.802],
+ [1.032, -13.57],
+ [-4.853, -11.251],
+ [3.031, -3.561],
+ [6.09, 0.106],
+ [4.528, 2.998],
+ [4.566, 8.214],
+ [3.923, 8.345],
+ [6.425, 11.761],
+ [-1.277, 2.137],
+ [-4.873, -0.547],
+ [1.094, -1.794],
+ [2.428, -4.831],
+ [-0.862, -4.431],
+ [-6.367, -6.739],
+ [-1.027, -6.781],
+ [-2.272, -3.948],
+ [-3.757, -2.342],
+ [-6.83, 2.064],
+ [0, 11.719],
+ [1.921, 3.374],
+ [-0.401, 5.748],
+ [-1.539, 4.046],
+ [1.335, 3.873],
+ [5.694, 1.024]
+ ],
+ "v": [
+ [7.678, -1.941],
+ [-3.174, -20.169],
+ [-1.436, -37.533],
+ [0.734, -54.451],
+ [-5.343, -62.697],
+ [-11.853, -70.51],
+ [-9.901, -89.173],
+ [-6.211, -73.77],
+ [0.95, -65.523],
+ [7.243, -54.67],
+ [5.074, -37.311],
+ [4.639, -14.962],
+ [28.073, 12.161],
+ [22.435, 36.255],
+ [15.924, 59.471],
+ [14.405, 100.695],
+ [11.367, 112.415],
+ [7.895, 101.997],
+ [9.197, 60.986],
+ [14.84, 38.204],
+ [21.567, 16.723],
+ [16.138, 3.702],
+ [9.414, 4.57],
+ [-22.271, -0.638],
+ [-28.777, -11.268],
+ [-19.884, -42.953],
+ [-36.155, -71.813],
+ [-29.645, -106.749],
+ [-17.28, -112.389],
+ [-0.351, -106.536],
+ [11.15, -95.251],
+ [16.793, -65.958],
+ [34.583, -43.822],
+ [27.856, -8.229],
+ [21.78, -2.376],
+ [21.996, -11.268],
+ [25.903, -18.214],
+ [30.461, -36.443],
+ [22.864, -48.375],
+ [8.329, -72.681],
+ [5.29, -92.212],
+ [-5.127, -101.76],
+ [-20.318, -105.667],
+ [-31.38, -81.148],
+ [-16.411, -56.186],
+ [-13.373, -42.953],
+ [-18.147, -26.247],
+ [-21.837, -9.533],
+ [-9.468, -3.242]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [41.258, 112.739], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [4.999, 0.098],
+ [4.717, 12.193],
+ [6.912, 9.261],
+ [0.062, 13.316],
+ [-8.115, 2.564],
+ [-3.714, -9.711],
+ [-7.449, -9.155],
+ [0.098, -13.242],
+ [2.743, -2.963]
+ ],
+ "o": [
+ [-4.999, -0.091],
+ [-4.718, -12.203],
+ [-6.908, -9.271],
+ [-0.061, -13.316],
+ [8.116, -2.561],
+ [3.717, 9.713],
+ [7.451, 9.147],
+ [-0.102, 13.242],
+ [-2.743, 2.958]
+ ],
+ "v": [
+ [13.977, 56.6],
+ [-25.953, 45.103],
+ [-17.707, 1.913],
+ [-33.333, -25.219],
+ [-23.35, -54.734],
+ [7.685, -42.794],
+ [14.846, -8.939],
+ [33.296, 17.538],
+ [23.526, 49.008]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [41.223, 58.947], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 9,
+ "ty": 4,
+ "nm": "Layer 7 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 59.5,
+ "s": [4]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 119,
+ "s": [-4]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 172,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 231.5,
+ "s": [4]
+ },
+ { "t": 291, "s": [-4] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [405.941, 1023.837, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [38.938, 228.742, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.102, 9.114],
+ [0, 0],
+ [-2.604, 6.117],
+ [-5.572, 2.646],
+ [-5.367, -3.496],
+ [-4.676, -4.062],
+ [-1.092, -12.709],
+ [1.76, -5.732],
+ [0.593, -6.354],
+ [0.217, -5.847],
+ [5.037, -4.021],
+ [0.995, 6.158],
+ [-1.29, 0.852],
+ [-1.814, 5.545],
+ [0.082, 5.502],
+ [-1.408, 4.595],
+ [-1.29, 4.595],
+ [0.16, 4.438],
+ [6.731, 5.937],
+ [4.942, 3.316],
+ [5.629, -1.122],
+ [1.978, -5.471],
+ [-1.392, -6.971],
+ [-3.229, -3.932],
+ [-0.513, -5.257],
+ [3.67, -3.809],
+ [0.905, -2.842],
+ [-2.609, -3.341],
+ [-5.922, -3.972],
+ [0.341, 4.423],
+ [-3.424, 10.858],
+ [3.231, 6.577],
+ [3.389, 3.529],
+ [-0.613, 3.21],
+ [-1.487, 0.303],
+ [-1.935, -2.055],
+ [-1.707, -3.39],
+ [2.615, -8.903],
+ [1.675, -11.58],
+ [-4.198, -9.787],
+ [3.4, -6.823],
+ [3.685, -12.341],
+ [0.548, -11.735],
+ [2.96, 0.115],
+ [-0.279, 4.848],
+ [-2.697, 8.952],
+ [-3.771, 4.767],
+ [-2.694, 5.667],
+ [4.59, 5.797],
+ [2.138, 0.336],
+ [1.897, 1.015],
+ [0, 15.231],
+ [-4.558, 4.659],
+ [-0.032, 4.07],
+ [1.822, 2.424]
+ ],
+ "o": [
+ [0, 0],
+ [0.881, -8.27],
+ [2.349, -5.529],
+ [8.21, -3.898],
+ [4.976, 3.235],
+ [8.353, 7.256],
+ [0.648, 7.511],
+ [-1.752, 5.733],
+ [-0.561, 6.035],
+ [-0.316, 8.673],
+ [-1.593, 1.269],
+ [-0.409, -2.539],
+ [4.873, -3.225],
+ [1.612, -4.946],
+ [-0.082, -5.218],
+ [1.221, -3.979],
+ [1.175, -4.177],
+ [-0.414, -11.745],
+ [-3.805, -3.349],
+ [-3.484, -2.343],
+ [-5.405, 1.081],
+ [-2.309, 6.37],
+ [1.111, 5.585],
+ [2.956, 3.594],
+ [0.771, 7.886],
+ [-2.403, 2.497],
+ [-1.953, 6.134],
+ [4.218, 5.405],
+ [-1.896, -4.454],
+ [-1.216, -15.83],
+ [2.4, -7.609],
+ [-1.654, -3.358],
+ [-1.962, -2.048],
+ [0.234, -1.196],
+ [3.255, -0.664],
+ [2.789, 2.947],
+ [3.792, 7.55],
+ [-2.883, 9.81],
+ [-2.044, 14.143],
+ [2.909, 6.788],
+ [-5.695, 11.432],
+ [-2.875, 9.637],
+ [-0.237, 5.193],
+ [-3.365, -0.139],
+ [0.683, -11.973],
+ [2.068, -6.871],
+ [3.714, -4.692],
+ [4.246, -8.936],
+ [-1.597, 0.147],
+ [-1.276, -0.204],
+ [-10.15, -5.454],
+ [0, -8.763],
+ [2.596, -2.655],
+ [0.025, -3.366],
+ [-5.021, -6.666]
+ ],
+ "v": [
+ [-35.91, -70.481],
+ [-35.91, -75.69],
+ [-30.919, -96.302],
+ [-19.635, -110.404],
+ [2.93, -105.196],
+ [16.387, -95],
+ [35.262, -66.576],
+ [31.79, -46.397],
+ [26.582, -27.733],
+ [27.884, -10.806],
+ [17.038, 6.556],
+ [4.884, 9.594],
+ [8.357, 4.819],
+ [20.728, -7.768],
+ [20.076, -24.694],
+ [22.68, -38.363],
+ [26.366, -50.95],
+ [28.969, -64.838],
+ [12.047, -90.226],
+ [0.111, -99.553],
+ [-15.298, -104.982],
+ [-26.145, -90.659],
+ [-29.184, -69.178],
+ [-20.503, -55.502],
+ [-12.91, -41.835],
+ [-20.938, -25.562],
+ [-27.664, -17.316],
+ [-24.195, -1.044],
+ [-6.833, 10.241],
+ [-10.525, -1.257],
+ [2.064, -39.017],
+ [0.978, -63.971],
+ [-6.182, -73.298],
+ [-13.346, -82.2],
+ [-10.958, -84.583],
+ [-0.975, -77.204],
+ [6.62, -67.009],
+ [8.357, -37.715],
+ [-3.796, -7.988],
+ [7.706, 22.181],
+ [7.271, 44.53],
+ [-11.609, 73.823],
+ [-15.949, 105.719],
+ [-19.635, 114.187],
+ [-22.454, 105.073],
+ [-17.682, 72.086],
+ [-9.005, 55.814],
+ [1.629, 41.279],
+ [-2.927, 16.539],
+ [-7.052, 17.406],
+ [-13.129, 14.369],
+ [-34.608, -12.754],
+ [-25.928, -29.468],
+ [-19.418, -40.32],
+ [-23.324, -48.345]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [39.485, 114.552], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.143, -1.637],
+ [-9.401, 7.936],
+ [-0.659, 7.428],
+ [5.471, 10.188],
+ [17.554, -5.617],
+ [-4.803, -8.271],
+ [2.715, -8.886],
+ [-1.036, -12.889]
+ ],
+ "o": [
+ [5.143, 1.64],
+ [9.402, -7.927],
+ [0.66, -7.419],
+ [-5.47, -10.179],
+ [-17.553, 5.618],
+ [4.799, 8.271],
+ [-2.715, 8.893],
+ [1.032, 12.889]
+ ],
+ "v": [
+ [-6.193, 62.974],
+ [17.896, 51.469],
+ [25.491, 27.597],
+ [32.001, -25.576],
+ [-16.827, -58.997],
+ [-32.669, -17.976],
+ [-15.96, 9.369],
+ [-31.585, 35.631]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [37.722, 65.577], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 10,
+ "ty": 4,
+ "nm": "MSG BLACK Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [636.438, 982.509, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [129.704, 59.601, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [86.521, 86.521, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [-2.544, -11.49],
+ [0, 0],
+ [7.038, 11.865],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [2.034, 9.178],
+ [0, 0],
+ [-7.965, -13.424],
+ [0, 0]
+ ],
+ "v": [
+ [11.15, -16.176],
+ [12.215, 2.717],
+ [20.568, 20.65],
+ [-12.603, 2.717],
+ [-14.933, -20.65]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [205.342, 98.303], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.994, 0],
+ [0, 0],
+ [0, -5.995],
+ [0, 0],
+ [5.991, 0],
+ [0, 0],
+ [0, 5.996],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [5.991, 0],
+ [0, 0],
+ [0, 5.996],
+ [0, 0],
+ [-5.994, 0],
+ [0, 0],
+ [0, -5.995]
+ ],
+ "v": [
+ [-118.604, -52.027],
+ [118.603, -52.027],
+ [129.454, -41.176],
+ [129.454, 41.174],
+ [118.603, 52.027],
+ [-118.604, 52.027],
+ [-129.454, 41.174],
+ [-129.454, -41.176]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [129.704, 52.277], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 48,
+ "op": 349,
+ "st": 48,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 11,
+ "ty": 4,
+ "nm": "MSG BLUE Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [554.438, 872.509, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [107.569, 47.022, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [2.109, -9.065],
+ [0, 0],
+ [-5.836, 9.353],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-1.682, 7.241],
+ [0, 0],
+ [6.6, -10.588],
+ [0, 0]
+ ],
+ "v": [
+ [-9.24, -12.755],
+ [-10.125, 2.141],
+ [-17.052, 16.276],
+ [10.452, 2.141],
+ [12.38, -16.276]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [44.861, 77.519], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.996, 0],
+ [0, 0],
+ [0, -5.995],
+ [0, 0],
+ [5.992, 0],
+ [0, 0],
+ [0, 5.994],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [5.992, 0],
+ [0, 0],
+ [0, 5.994],
+ [0, 0],
+ [-5.996, 0],
+ [0, 0],
+ [0, -5.995]
+ ],
+ "v": [
+ [-96.467, -40.991],
+ [96.468, -40.991],
+ [107.319, -30.141],
+ [107.319, 30.133],
+ [96.468, 40.991],
+ [-96.467, 40.991],
+ [-107.319, 30.133],
+ [-107.319, -30.141]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.569, 41.241], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 48,
+ "op": 349,
+ "st": 48,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 12,
+ "ty": 4,
+ "nm": "S3 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 150.5,
+ "s": [0]
+ },
+ { "t": 301, "s": [42] }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 0,
+ "s": [98.537, 447.939, 0],
+ "to": [-1, 10.167, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 74.017,
+ "s": [92.537, 508.939, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 150.5,
+ "s": [98.537, 447.939, 0],
+ "to": [0, 0, 0],
+ "ti": [-0.667, 4.833, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 224.517,
+ "s": [92.537, 508.939, 0],
+ "to": [0.667, -4.833, 0],
+ "ti": [-1.667, 15, 0]
+ },
+ { "t": 301, "s": [102.537, 418.939, 0] }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": { "a": 0, "k": [28.623, 28.625, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [16.83, 28.375],
+ [-28.373, -16.833],
+ [-16.831, -28.375],
+ [28.373, 16.832]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [28.623, 28.625], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-16.831, 28.375],
+ [-28.373, 16.832],
+ [16.83, -28.375],
+ [28.373, -16.833]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [28.623, 28.625], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 13,
+ "ty": 4,
+ "nm": "S2 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 150.5,
+ "s": [0]
+ },
+ { "t": 301, "s": [72] }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 0,
+ "s": [721.22, 114.898, 0],
+ "to": [-12.333, -4.333, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 74.617,
+ "s": [647.22, 88.898, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 150.5,
+ "s": [721.22, 114.898, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 225.117,
+ "s": [647.22, 88.898, 0],
+ "to": [0, 0, 0],
+ "ti": [-12.333, -4.333, 0]
+ },
+ { "t": 301, "s": [721.22, 114.898, 0] }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": { "a": 0, "k": [30.198, 30.199, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [29.948, 29.948],
+ [-29.948, 13.898],
+ [13.901, -29.948]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [30.198, 30.199], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 14,
+ "ty": 4,
+ "nm": "SHAP1 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 0,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 150,
+ "s": [0]
+ },
+ { "t": 300, "s": [72] }
+ ],
+ "ix": 10
+ },
+ "p": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 0,
+ "s": [145.598, 568.629, 0],
+ "to": [-6, 5.667, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 74.37,
+ "s": [109.598, 602.629, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 150,
+ "s": [145.598, 568.629, 0],
+ "to": [0, 0, 0],
+ "ti": [0, 0, 0]
+ },
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 224.37,
+ "s": [109.598, 602.629, 0],
+ "to": [0, 0, 0],
+ "ti": [-6, 5.667, 0]
+ },
+ { "t": 300, "s": [145.598, 568.629, 0] }
+ ],
+ "ix": 2,
+ "l": 2
+ },
+ "a": { "a": 0, "k": [13.347, 13.344, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [13.097, -13.095],
+ [6.079, 13.095],
+ [-13.097, -6.077]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [13.347, 13.345], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 15,
+ "ty": 4,
+ "nm": "Layer 16 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [510.273, 404.457, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [107.029, 75.411, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.797],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.798]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.798],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.797]
+ ],
+ "v": [
+ [103.52, 3.254],
+ [-103.522, 3.254],
+ [-106.779, 0.001],
+ [-103.522, -3.254],
+ [103.52, -3.254],
+ [106.779, 0.001]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 147.318], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.798],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.798]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.798],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.798]
+ ],
+ "v": [
+ [103.52, 3.254],
+ [-103.522, 3.254],
+ [-106.779, 0.001],
+ [-103.522, -3.254],
+ [103.52, -3.254],
+ [106.779, 0.001]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 128.444], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.798],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.799]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.799],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.798]
+ ],
+ "v": [
+ [103.52, 3.254],
+ [-103.522, 3.254],
+ [-106.779, 0.001],
+ [-103.522, -3.254],
+ [103.52, -3.254],
+ [106.779, 0.001]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 110.057], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.798],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.798]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.798],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.798]
+ ],
+ "v": [
+ [103.52, 3.254],
+ [-103.522, 3.254],
+ [-106.779, 0],
+ [-103.522, -3.254],
+ [103.52, -3.254],
+ [106.779, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 91.179], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.798],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.798]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.798],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.798]
+ ],
+ "v": [
+ [103.52, 3.255],
+ [-103.522, 3.255],
+ [-106.779, 0],
+ [-103.522, -3.255],
+ [103.52, -3.255],
+ [106.779, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 59.636], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.798],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.798]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.798],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.798]
+ ],
+ "v": [
+ [103.52, 3.255],
+ [-103.522, 3.255],
+ [-106.779, 0],
+ [-103.522, -3.255],
+ [103.52, -3.255],
+ [106.779, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 40.758], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.798],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.799]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.799],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.798]
+ ],
+ "v": [
+ [103.52, 3.254],
+ [-103.522, 3.254],
+ [-106.779, 0],
+ [-103.522, -3.254],
+ [103.52, -3.254],
+ [106.779, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 22.383], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.798, 0],
+ [0, 0],
+ [0, 1.797],
+ [-1.797, 0],
+ [0, 0],
+ [0, -1.798]
+ ],
+ "o": [
+ [0, 0],
+ [-1.797, 0],
+ [0, -1.798],
+ [0, 0],
+ [1.798, 0],
+ [0, 1.797]
+ ],
+ "v": [
+ [103.52, 3.255],
+ [-103.522, 3.255],
+ [-106.779, 0],
+ [-103.522, -3.255],
+ [103.52, -3.255],
+ [106.779, 0]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [107.029, 3.505], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 16,
+ "ty": 4,
+ "nm": "MINI WEB CONTENT Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [316.371, 402.508, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [69.046, 81.091, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.995, 0],
+ [0, 0],
+ [0, -5.996],
+ [0, 0],
+ [5.991, 0],
+ [0, 0],
+ [0, 5.995],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [5.991, 0],
+ [0, 0],
+ [0, 5.995],
+ [0, 0],
+ [-5.995, 0],
+ [0, 0],
+ [0, -5.996]
+ ],
+ "v": [
+ [-57.945, -80.841],
+ [57.946, -80.841],
+ [68.796, -69.989],
+ [68.796, 69.99],
+ [57.946, 80.841],
+ [-57.945, 80.841],
+ [-68.796, 69.99],
+ [-68.796, -69.989]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [69.046, 81.091], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 17,
+ "ty": 4,
+ "nm": "Shape Layer 1",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [432, 455, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [-168, -145, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": { "a": 0, "k": [410, 359], "ix": 2 },
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 4 },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 3
+ },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 4, "ix": 5 },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [-168, -145], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 19,
+ "ty": 4,
+ "nm": "SHAPE ONE Outlines",
+ "parent": 20,
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [-46.977, 148.019, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [310.527, 39.684, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "hasMask": true,
+ "masksProperties": [
+ {
+ "inv": false,
+ "mode": "a",
+ "pt": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 49,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-4.496, -4.835],
+ [-4.996, -4.835],
+ [-4.996, 89.165],
+ [-4.496, 89.165]
+ ],
+ "c": true
+ }
+ ]
+ },
+ {
+ "t": 108,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [644.004, -4.835],
+ [-4.996, -4.835],
+ [-4.996, 89.165],
+ [644.004, 89.165]
+ ],
+ "c": true
+ }
+ ]
+ }
+ ],
+ "ix": 1
+ },
+ "o": { "a": 0, "k": 100, "ix": 3 },
+ "x": { "a": 0, "k": 0, "ix": 4 },
+ "nm": "Mask 1"
+ }
+ ],
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.989, 0],
+ [0, 0],
+ [0, -5.996],
+ [0, 0],
+ [5.994, 0],
+ [0, 0],
+ [0, 5.994],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [5.994, 0],
+ [0, 0],
+ [0, 5.994],
+ [0, 0],
+ [-5.989, 0],
+ [0, 0],
+ [0, -5.996]
+ ],
+ "v": [
+ [-26.475, -35.591],
+ [26.473, -35.591],
+ [37.325, -24.739],
+ [37.325, 24.74],
+ [26.473, 35.591],
+ [-26.475, 35.591],
+ [-37.325, 24.74],
+ [-37.325, -24.739]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.7490196078431373, 0.7490196078431373, 0.8392156862745098, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [583.479, 39.684], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.994, 0],
+ [0, 0],
+ [0, -5.996],
+ [0, 0],
+ [5.994, 0],
+ [0, 0],
+ [0, 5.994],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [5.994, 0],
+ [0, 0],
+ [0, 5.994],
+ [0, 0],
+ [-5.994, 0],
+ [0, 0],
+ [0, -5.996]
+ ],
+ "v": [
+ [-26.474, -35.591],
+ [26.47, -35.591],
+ [37.325, -24.739],
+ [37.325, 24.74],
+ [26.47, 35.591],
+ [-26.474, 35.591],
+ [-37.325, 24.74],
+ [-37.325, -24.739]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.7490196078431373, 0.7490196078431373, 0.8392156862745098, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [473.247, 39.684], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -3.865],
+ [0, 0],
+ [-3.866, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.865, 0]
+ ],
+ "o": [
+ [-3.866, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.865, 0],
+ [0, 0],
+ [0, -3.865],
+ [0, 0]
+ ],
+ "v": [
+ [-26.475, -31.75],
+ [-33.484, -24.74],
+ [-33.484, 24.74],
+ [-26.475, 31.749],
+ [26.474, 31.749],
+ [33.483, 24.74],
+ [33.483, -24.74],
+ [26.474, -31.75]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [8.101, 0],
+ [0, 0],
+ [0, 8.104],
+ [0, 0],
+ [-8.1, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-8.1, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0],
+ [8.101, 0],
+ [0, 0],
+ [0, 8.104]
+ ],
+ "v": [
+ [26.474, 39.435],
+ [-26.475, 39.435],
+ [-41.169, 24.74],
+ [-41.169, -24.74],
+ [-26.475, -39.435],
+ [26.474, -39.435],
+ [41.169, -24.74],
+ [41.169, 24.74]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [368.001, 39.685], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -3.865],
+ [0, 0],
+ [-3.866, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.865, 0]
+ ],
+ "o": [
+ [-3.866, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.865, 0],
+ [0, 0],
+ [0, -3.865],
+ [0, 0]
+ ],
+ "v": [
+ [-26.467, -31.75],
+ [-33.483, -24.74],
+ [-33.483, 24.74],
+ [-26.467, 31.749],
+ [26.475, 31.749],
+ [33.483, 24.74],
+ [33.483, -24.74],
+ [26.475, -31.75]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [8.099, 0],
+ [0, 0],
+ [0, 8.104],
+ [0, 0],
+ [-8.108, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-8.108, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0],
+ [8.099, 0],
+ [0, 0],
+ [0, 8.104]
+ ],
+ "v": [
+ [26.475, 39.435],
+ [-26.467, 39.435],
+ [-41.168, 24.74],
+ [-41.168, -24.74],
+ [-26.467, -39.435],
+ [26.475, -39.435],
+ [41.168, -24.74],
+ [41.168, 24.74]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [256.898, 39.685], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -3.865],
+ [0, 0],
+ [-3.865, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.866, 0]
+ ],
+ "o": [
+ [-3.865, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.866, 0],
+ [0, 0],
+ [0, -3.865],
+ [0, 0]
+ ],
+ "v": [
+ [-26.475, -31.75],
+ [-33.484, -24.74],
+ [-33.484, 24.74],
+ [-26.475, 31.749],
+ [26.475, 31.749],
+ [33.484, 24.74],
+ [33.484, -24.74],
+ [26.475, -31.75]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [8.1, 0],
+ [0, 0],
+ [0, 8.104],
+ [0, 0],
+ [-8.1, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-8.1, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0],
+ [8.1, 0],
+ [0, 0],
+ [0, 8.104]
+ ],
+ "v": [
+ [26.475, 39.435],
+ [-26.475, 39.435],
+ [-41.169, 24.74],
+ [-41.169, -24.74],
+ [-26.475, -39.435],
+ [26.475, -39.435],
+ [41.169, -24.74],
+ [41.169, 24.74]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [146.665, 39.685], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -3.865],
+ [0, 0],
+ [-3.865, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.865, 0]
+ ],
+ "o": [
+ [-3.865, 0],
+ [0, 0],
+ [0, 3.865],
+ [0, 0],
+ [3.865, 0],
+ [0, 0],
+ [0, -3.865],
+ [0, 0]
+ ],
+ "v": [
+ [-26.475, -31.75],
+ [-33.484, -24.74],
+ [-33.484, 24.74],
+ [-26.475, 31.749],
+ [26.474, 31.749],
+ [33.483, 24.74],
+ [33.483, -24.74],
+ [26.474, -31.75]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [8.1, 0],
+ [0, 0],
+ [0, 8.104],
+ [0, 0],
+ [-8.101, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-8.101, 0],
+ [0, 0],
+ [0, -8.105],
+ [0, 0],
+ [8.1, 0],
+ [0, 0],
+ [0, 8.104]
+ ],
+ "v": [
+ [26.474, 39.435],
+ [-26.475, 39.435],
+ [-41.169, 24.74],
+ [-41.169, -24.74],
+ [-26.475, -39.435],
+ [26.474, -39.435],
+ [41.169, -24.74],
+ [41.169, 24.74]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [41.419, 39.685], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 49,
+ "op": 350,
+ "st": 49,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 20,
+ "ty": 4,
+ "nm": "Shape Layer 2",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 49,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 99,
+ "s": [4]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 149,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 194,
+ "s": [0]
+ },
+ {
+ "i": { "x": [0.833], "y": [0.833] },
+ "o": { "x": [0.167], "y": [0.167] },
+ "t": 244,
+ "s": [4]
+ },
+ { "t": 294, "s": [0] }
+ ],
+ "ix": 10
+ },
+ "p": { "a": 0, "k": [600, 600, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [0, 0, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ty": "rc",
+ "d": 1,
+ "s": { "a": 0, "k": [684, 154.5], "ix": 2 },
+ "p": { "a": 0, "k": [0, 0], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 4 },
+ "nm": "Rectangle Path 1",
+ "mn": "ADBE Vector Shape - Rect",
+ "hd": false
+ },
+ {
+ "ty": "st",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 3
+ },
+ "o": { "a": 0, "k": 100, "ix": 4 },
+ "w": { "a": 0, "k": 4, "ix": 5 },
+ "lc": 1,
+ "lj": 1,
+ "ml": 4,
+ "bm": 0,
+ "nm": "Stroke 1",
+ "mn": "ADBE Vector Graphic - Stroke",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [-31, 132.75], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Rectangle 1",
+ "np": 3,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 49,
+ "op": 350,
+ "st": 49,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 21,
+ "ty": 4,
+ "nm": "Layer 10 Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [538.833, 607.074, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [285.959, 470.323, 0], "ix": 1, "l": 2 },
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
+ },
+ "ao": 0,
+ "hasMask": true,
+ "masksProperties": [
+ {
+ "inv": false,
+ "mode": "a",
+ "pt": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": 0.833, "y": 0.833 },
+ "o": { "x": 0.167, "y": 0.167 },
+ "t": 0,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [19.126, 1.25],
+ [2.126, 1.25],
+ [2.126, 5.25],
+ [19.126, 5.25]
+ ],
+ "c": true
+ }
+ ]
+ },
+ {
+ "t": 48,
+ "s": [
+ {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [567.126, 1.25],
+ [2.126, 1.25],
+ [2.126, 951.25],
+ [567.126, 951.25]
+ ],
+ "c": true
+ }
+ ]
+ }
+ ],
+ "ix": 1
+ },
+ "o": { "a": 0, "k": 100, "ix": 3 },
+ "x": { "a": 0, "k": 0, "ix": 4 },
+ "nm": "Mask 1"
+ }
+ ],
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-8.209, 0],
+ [0, 0],
+ [0, -8.205],
+ [8.21, 0],
+ [0, 0],
+ [0, 8.214]
+ ],
+ "o": [
+ [0, 0],
+ [8.21, 0],
+ [0, 8.214],
+ [0, 0],
+ [-8.209, 0],
+ [0, -8.205]
+ ],
+ "v": [
+ [-141.827, -14.868],
+ [141.825, -14.868],
+ [156.69, -0.004],
+ [141.825, 14.868],
+ [-141.827, 14.868],
+ [-156.69, -0.004]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [226.229, 74.097], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-8.21, 0],
+ [0, 0],
+ [0, -8.205],
+ [8.209, 0],
+ [0, 0],
+ [0, 8.214]
+ ],
+ "o": [
+ [0, 0],
+ [8.209, 0],
+ [0, 8.214],
+ [0, 0],
+ [-8.21, 0],
+ [0, -8.205]
+ ],
+ "v": [
+ [-39.608, -14.868],
+ [39.608, -14.868],
+ [54.471, -0.004],
+ [39.608, 14.868],
+ [-39.608, 14.868],
+ [-54.471, -0.004]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [460.181, 74.097], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, -4.189],
+ [0, 0],
+ [-4.188, 0],
+ [0, 0],
+ [0, 4.188],
+ [0, 0],
+ [4.189, 0]
+ ],
+ "o": [
+ [-4.188, 0],
+ [0, 0],
+ [0, 4.188],
+ [0, 0],
+ [4.189, 0],
+ [0, 0],
+ [0, -4.189],
+ [0, 0]
+ ],
+ "v": [
+ [-260.214, -450.111],
+ [-267.807, -442.513],
+ [-267.807, 442.514],
+ [-260.214, 450.11],
+ [260.213, 450.11],
+ [267.807, 442.514],
+ [267.807, -442.513],
+ [260.213, -450.111]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ind": 1,
+ "ty": "sh",
+ "ix": 2,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [7.779, 0],
+ [0, 0],
+ [0, 7.777],
+ [0, 0],
+ [-7.778, 0],
+ [0, 0],
+ [0, -7.778],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [-7.778, 0],
+ [0, 0],
+ [0, -7.778],
+ [0, 0],
+ [7.779, 0],
+ [0, 0],
+ [0, 7.777]
+ ],
+ "v": [
+ [260.213, 456.619],
+ [-260.214, 456.619],
+ [-274.324, 442.514],
+ [-274.324, -442.513],
+ [-260.214, -456.619],
+ [260.213, -456.619],
+ [274.324, -442.513],
+ [274.324, 442.514]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 2",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "mm",
+ "mm": 1,
+ "nm": "Merge Paths 1",
+ "mn": "ADBE Vector Filter - Merge",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [285.96, 471.957], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 4,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-5.995, 0],
+ [0, 0],
+ [0, -5.995],
+ [0, 0],
+ [5.99, 0],
+ [0, 0],
+ [0, 5.987],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [5.99, 0],
+ [0, 0],
+ [0, 5.987],
+ [0, 0],
+ [-5.995, 0],
+ [0, 0],
+ [0, -5.995]
+ ],
+ "v": [
+ [-260.212, -453.363],
+ [260.213, -453.363],
+ [271.064, -442.512],
+ [271.064, 442.512],
+ [260.213, 453.363],
+ [-260.212, 453.363],
+ [-271.064, 442.512],
+ [-271.064, -442.512]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [285.959, 471.957], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-14.757, -14.756],
+ [14.757, -14.756],
+ [14.757, 14.756],
+ [-14.757, 14.756]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [15.007, 15.006], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-14.757, -14.756],
+ [14.757, -14.756],
+ [14.757, 14.756],
+ [-14.757, 14.756]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [556.912, 15.006], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-14.757, -14.757],
+ [14.757, -14.757],
+ [14.757, 14.757],
+ [-14.757, 14.757]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [15.007, 925.64], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "o": [
+ [0, 0],
+ [0, 0],
+ [0, 0],
+ [0, 0]
+ ],
+ "v": [
+ [-14.757, -14.757],
+ [14.757, -14.757],
+ [14.757, 14.757],
+ [-14.757, 14.757]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [556.912, 925.64], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ },
+ {
+ "ddd": 0,
+ "ind": 22,
+ "ty": 4,
+ "nm": "LARGE SHAPE Outlines",
+ "sr": 1,
+ "ks": {
+ "o": { "a": 0, "k": 100, "ix": 11 },
+ "r": { "a": 0, "k": 0, "ix": 10 },
+ "p": { "a": 0, "k": [550.935, 611.767, 0], "ix": 2, "l": 2 },
+ "a": { "a": 0, "k": [512.204, 447.91, 0], "ix": 1, "l": 2 },
+ "s": {
+ "a": 1,
+ "k": [
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.685, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] },
+ "t": 0,
+ "s": [101.189, 98.463, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.776, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.113, 0.17, 0] },
+ "t": 1,
+ "s": [101.196, 98.679, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.797, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.133, 0.172, 0] },
+ "t": 2,
+ "s": [101.216, 98.886, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.807, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.142, 0.174, 0] },
+ "t": 3,
+ "s": [101.25, 99.081, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.813, 0.845, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.147, 0.177, 0] },
+ "t": 4,
+ "s": [101.299, 99.259, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.817, 0.849, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.15, 0.181, 0] },
+ "t": 5,
+ "s": [101.363, 99.418, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.82, 0.855, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.153, 0.186, 0] },
+ "t": 6,
+ "s": [101.443, 99.554, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.822, 0.865, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.155, 0.196, 0] },
+ "t": 7,
+ "s": [101.539, 99.665, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.888, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.157, 0.218, 0] },
+ "t": 8,
+ "s": [101.65, 99.747, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.825, 1.007, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.329, 0] },
+ "t": 9,
+ "s": [101.776, 99.797, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.664, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.159, 0.007, 0] },
+ "t": 10,
+ "s": [101.918, 99.815, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.828, 0.774, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.111, 0] },
+ "t": 11,
+ "s": [102.073, 99.796, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.797, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.161, 0.132, 0] },
+ "t": 12,
+ "s": [102.241, 99.739, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.83, 0.807, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.141, 0] },
+ "t": 13,
+ "s": [102.42, 99.642, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.813, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.163, 0.147, 0] },
+ "t": 14,
+ "s": [102.61, 99.502, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.849, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, 0.15, 0] },
+ "t": 15,
+ "s": [102.808, 99.319, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.865, 0.847, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.186, 0.168, 0] },
+ "t": 16,
+ "s": [103.012, 99.09, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.882, 0.849, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.218, 0.182, 0] },
+ "t": 17,
+ "s": [103.179, 98.866, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.946, 0.851, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.286, 0.185, 0] },
+ "t": 18,
+ "s": [103.281, 98.677, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.532, 0.855, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [-0.154, 0.189, 0] },
+ "t": 19,
+ "s": [103.324, 98.522, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.772, 0.861, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.101, 0.196, 0] },
+ "t": 20,
+ "s": [103.309, 98.4, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.801, 0.873, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.132, 0.209, 0] },
+ "t": 21,
+ "s": [103.24, 98.311, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.812, 0.905, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.143, 0.244, 0] },
+ "t": 22,
+ "s": [103.122, 98.251, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.818, 1.322, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.15, 0.694, 0] },
+ "t": 23,
+ "s": [102.957, 98.22, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.822, 0.741, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.154, 0.066, 0] },
+ "t": 24,
+ "s": [102.75, 98.216, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.794, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.156, 0.123, 0] },
+ "t": 25,
+ "s": [102.505, 98.237, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.81, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.159, 0.14, 0] },
+ "t": 26,
+ "s": [102.226, 98.28, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.828, 0.817, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.148, 0] },
+ "t": 27,
+ "s": [101.917, 98.343, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.83, 0.822, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.153, 0] },
+ "t": 28,
+ "s": [101.582, 98.425, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.826, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.163, 0.157, 0] },
+ "t": 29,
+ "s": [101.226, 98.523, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.832, 0.828, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, 0.16, 0] },
+ "t": 30,
+ "s": [100.854, 98.633, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.165, 0.162, 0] },
+ "t": 31,
+ "s": [100.47, 98.753, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.166, 0.164, 0] },
+ "t": 32,
+ "s": [100.08, 98.881, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.835, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.166, 0] },
+ "t": 33,
+ "s": [99.688, 99.013, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.169, 0.168, 0] },
+ "t": 34,
+ "s": [99.3, 99.146, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.17, 0.17, 0] },
+ "t": 35,
+ "s": [98.92, 99.277, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.839, 0.843, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.171, 0.173, 0] },
+ "t": 36,
+ "s": [98.555, 99.402, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.841, 0.847, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.173, 0.177, 0] },
+ "t": 37,
+ "s": [98.21, 99.518, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.844, 0.854, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.176, 0.183, 0] },
+ "t": 38,
+ "s": [97.89, 99.62, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.848, 0.865, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.179, 0.193, 0] },
+ "t": 39,
+ "s": [97.601, 99.706, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.853, 0.894, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.184, 0.218, 0] },
+ "t": 40,
+ "s": [97.35, 99.772, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.863, 1.088, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.193, 0.388, 0] },
+ "t": 41,
+ "s": [97.141, 99.812, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.884, 0.693, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.212, 0.043, 0] },
+ "t": 42,
+ "s": [96.983, 99.823, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.974, 0.775, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.294, 0.114, 0] },
+ "t": 43,
+ "s": [96.88, 99.8, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.611, 0.796, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [-0.037, 0.132, 0] },
+ "t": 44,
+ "s": [96.839, 99.74, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.793, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.106, 0.141, 0] },
+ "t": 45,
+ "s": [96.867, 99.636, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.819, 0.86, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.139, 0.172, 0] },
+ "t": 46,
+ "s": [96.971, 99.486, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.869, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.154, 0.206, 0] },
+ "t": 47,
+ "s": [97.125, 99.344, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.828, 0.89, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.229, 0] },
+ "t": 48,
+ "s": [97.305, 99.248, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.83, 0.994, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.161, 0.345, 0] },
+ "t": 49,
+ "s": [97.506, 99.193, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.832, 0.679, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, -0.007, 0] },
+ "t": 50,
+ "s": [97.72, 99.176, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.786, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.166, 0.113, 0] },
+ "t": 51,
+ "s": [97.942, 99.192, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.807, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.136, 0] },
+ "t": 52,
+ "s": [98.167, 99.238, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.837, 0.817, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.169, 0.147, 0] },
+ "t": 53,
+ "s": [98.39, 99.31, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.839, 0.822, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.171, 0.153, 0] },
+ "t": 54,
+ "s": [98.606, 99.405, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.841, 0.825, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.173, 0.157, 0] },
+ "t": 55,
+ "s": [98.812, 99.519, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.843, 0.828, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.175, 0.16, 0] },
+ "t": 56,
+ "s": [99.004, 99.649, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.845, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.177, 0.162, 0] },
+ "t": 57,
+ "s": [99.178, 99.791, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.848, 0.832, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.18, 0.164, 0] },
+ "t": 58,
+ "s": [99.334, 99.941, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.852, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.184, 0.165, 0] },
+ "t": 59,
+ "s": [99.467, 100.097, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.858, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.191, 0.167, 0] },
+ "t": 60,
+ "s": [99.577, 100.256, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.869, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.202, 0.169, 0] },
+ "t": 61,
+ "s": [99.662, 100.414, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.896, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.229, 0.171, 0] },
+ "t": 62,
+ "s": [99.722, 100.567, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [1.078, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.417, 0.173, 0] },
+ "t": 63,
+ "s": [99.756, 100.714, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.712, 0.844, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.04, 0.175, 0] },
+ "t": 64,
+ "s": [99.765, 100.851, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.787, 0.848, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.117, 0.179, 0] },
+ "t": 65,
+ "s": [99.748, 100.975, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.806, 0.853, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.137, 0.184, 0] },
+ "t": 66,
+ "s": [99.708, 101.083, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.815, 0.862, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.146, 0.192, 0] },
+ "t": 67,
+ "s": [99.645, 101.173, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.821, 0.882, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.152, 0.211, 0] },
+ "t": 68,
+ "s": [99.561, 101.242, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.825, 0.963, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.156, 0.285, 0] },
+ "t": 69,
+ "s": [99.459, 101.287, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.828, 0.581, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.159, -0.066, 0] },
+ "t": 70,
+ "s": [99.342, 101.306, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.766, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.104, 0] },
+ "t": 71,
+ "s": [99.212, 101.295, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.793, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, 0.129, 0] },
+ "t": 72,
+ "s": [99.075, 101.253, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.837, 0.805, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.14, 0] },
+ "t": 73,
+ "s": [98.933, 101.178, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.84, 0.811, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.17, 0.145, 0] },
+ "t": 74,
+ "s": [98.791, 101.066, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.823, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.174, 0.149, 0] },
+ "t": 75,
+ "s": [98.655, 100.916, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.818, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.157, 0] },
+ "t": 76,
+ "s": [98.53, 100.726, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.825, 0.832, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.154, 0.163, 0] },
+ "t": 77,
+ "s": [98.391, 100.512, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.159, 0.165, 0] },
+ "t": 78,
+ "s": [98.227, 100.288, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.163, 0.166, 0] },
+ "t": 79,
+ "s": [98.046, 100.059, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.166, 0.168, 0] },
+ "t": 80,
+ "s": [97.856, 99.829, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.169, 0.169, 0] },
+ "t": 81,
+ "s": [97.664, 99.603, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.841, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.17, 0] },
+ "t": 82,
+ "s": [97.478, 99.383, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.845, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.175, 0.172, 0] },
+ "t": 83,
+ "s": [97.303, 99.172, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.849, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.18, 0.173, 0] },
+ "t": 84,
+ "s": [97.144, 98.973, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.855, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.186, 0.175, 0] },
+ "t": 85,
+ "s": [97.007, 98.789, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.865, 0.844, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.196, 0.177, 0] },
+ "t": 86,
+ "s": [96.895, 98.621, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.888, 0.846, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.218, 0.179, 0] },
+ "t": 87,
+ "s": [96.812, 98.471, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.998, 0.849, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.325, 0.182, 0] },
+ "t": 88,
+ "s": [96.76, 98.34, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.661, 0.852, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [-0.002, 0.185, 0] },
+ "t": 89,
+ "s": [96.742, 98.228, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.777, 0.857, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.11, 0.191, 0] },
+ "t": 90,
+ "s": [96.76, 98.137, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.8, 0.866, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.133, 0.2, 0] },
+ "t": 91,
+ "s": [96.813, 98.067, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.81, 0.885, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.143, 0.221, 0] },
+ "t": 92,
+ "s": [96.903, 98.017, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.816, 0.957, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.149, 0.3, 0] },
+ "t": 93,
+ "s": [97.029, 97.986, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.82, 0.602, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.152, -0.089, 0] },
+ "t": 94,
+ "s": [97.189, 97.975, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.823, 0.78, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.155, 0.105, 0] },
+ "t": 95,
+ "s": [97.383, 97.98, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.825, 0.807, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.134, 0] },
+ "t": 96,
+ "s": [97.607, 98.002, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.827, 0.818, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.159, 0.146, 0] },
+ "t": 97,
+ "s": [97.859, 98.037, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.825, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.161, 0.154, 0] },
+ "t": 98,
+ "s": [98.135, 98.083, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.163, 0.159, 0] },
+ "t": 99,
+ "s": [98.43, 98.138, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, 0.164, 0] },
+ "t": 100,
+ "s": [98.74, 98.198, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.166, 0.169, 0] },
+ "t": 101,
+ "s": [99.059, 98.26, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.85, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.168, 0.176, 0] },
+ "t": 102,
+ "s": [99.381, 98.32, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.839, 0.864, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.17, 0.188, 0] },
+ "t": 103,
+ "s": [99.699, 98.373, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.842, 0.898, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.215, 0] },
+ "t": 104,
+ "s": [100.006, 98.416, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 1.465, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.176, 0.464, 0] },
+ "t": 105,
+ "s": [100.292, 98.444, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.835, 0.721, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.071, 0] },
+ "t": 106,
+ "s": [100.55, 98.45, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.792, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.168, 0.119, 0] },
+ "t": 107,
+ "s": [100.793, 98.41, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.837, 0.81, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.169, 0.139, 0] },
+ "t": 108,
+ "s": [101.032, 98.318, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.819, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.17, 0.149, 0] },
+ "t": 109,
+ "s": [101.265, 98.181, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.839, 0.823, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.154, 0] },
+ "t": 110,
+ "s": [101.487, 98.005, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.84, 0.827, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.173, 0.158, 0] },
+ "t": 111,
+ "s": [101.697, 97.799, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.842, 0.829, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.174, 0.161, 0] },
+ "t": 112,
+ "s": [101.893, 97.568, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.843, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.176, 0.163, 0] },
+ "t": 113,
+ "s": [102.072, 97.319, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.845, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.178, 0.165, 0] },
+ "t": 114,
+ "s": [102.234, 97.057, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.847, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.18, 0.166, 0] },
+ "t": 115,
+ "s": [102.377, 96.789, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.85, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.183, 0.168, 0] },
+ "t": 116,
+ "s": [102.501, 96.518, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.853, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.187, 0.169, 0] },
+ "t": 117,
+ "s": [102.605, 96.251, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.859, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.193, 0.17, 0] },
+ "t": 118,
+ "s": [102.688, 95.991, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.869, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.204, 0.172, 0] },
+ "t": 119,
+ "s": [102.751, 95.742, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.893, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.23, 0.174, 0] },
+ "t": 120,
+ "s": [102.795, 95.508, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [1.029, 0.843, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.379, 0.176, 0] },
+ "t": 121,
+ "s": [102.82, 95.292, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.703, 0.846, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.021, 0.178, 0] },
+ "t": 122,
+ "s": [102.827, 95.097, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.79, 0.849, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.116, 0.181, 0] },
+ "t": 123,
+ "s": [102.817, 94.926, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.81, 0.854, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.138, 0.186, 0] },
+ "t": 124,
+ "s": [102.793, 94.78, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.82, 0.861, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.148, 0.194, 0] },
+ "t": 125,
+ "s": [102.757, 94.662, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.876, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.155, 0.209, 0] },
+ "t": 126,
+ "s": [102.71, 94.573, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.832, 0.923, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.255, 0] },
+ "t": 127,
+ "s": [102.656, 94.513, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.837, -0.38, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.165, -1.049, 0] },
+ "t": 128,
+ "s": [102.597, 94.484, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.843, 0.756, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.17, 0.089, 0] },
+ "t": 129,
+ "s": [102.537, 94.487, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.851, 0.794, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.177, 0.127, 0] },
+ "t": 130,
+ "s": [102.479, 94.52, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.865, 0.808, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.189, 0.14, 0] },
+ "t": 131,
+ "s": [102.428, 94.583, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.9, 0.815, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.217, 0.147, 0] },
+ "t": 132,
+ "s": [102.388, 94.676, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [1.264, 0.819, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.509, 0.152, 0] },
+ "t": 133,
+ "s": [102.362, 94.797, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.708, 0.822, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.063, 0.155, 0] },
+ "t": 134,
+ "s": [102.357, 94.946, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.797, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.117, 0.157, 0] },
+ "t": 135,
+ "s": [102.378, 95.119, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.822, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.141, 0.165, 0] },
+ "t": 136,
+ "s": [102.429, 95.315, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.156, 0.17, 0] },
+ "t": 137,
+ "s": [102.503, 95.515, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.17, 0] },
+ "t": 138,
+ "s": [102.588, 95.707, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.171, 0] },
+ "t": 139,
+ "s": [102.676, 95.892, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.842, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.171, 0] },
+ "t": 140,
+ "s": [102.765, 96.068, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.848, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.177, 0.172, 0] },
+ "t": 141,
+ "s": [102.849, 96.234, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.855, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.184, 0.173, 0] },
+ "t": 142,
+ "s": [102.923, 96.39, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.867, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.196, 0.173, 0] },
+ "t": 143,
+ "s": [102.985, 96.536, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.898, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.224, 0.174, 0] },
+ "t": 144,
+ "s": [103.031, 96.671, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [1.153, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.46, 0.174, 0] },
+ "t": 145,
+ "s": [103.058, 96.796, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.714, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.054, 0.175, 0] },
+ "t": 146,
+ "s": [103.064, 96.91, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.782, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.118, 0.175, 0] },
+ "t": 147,
+ "s": [103.047, 97.014, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.801, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.135, 0.176, 0] },
+ "t": 148,
+ "s": [103.006, 97.108, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.81, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.143, 0.176, 0] },
+ "t": 149,
+ "s": [102.939, 97.192, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.815, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.148, 0.177, 0] },
+ "t": 150,
+ "s": [102.847, 97.268, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.819, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.152, 0.177, 0] },
+ "t": 151,
+ "s": [102.728, 97.335, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.822, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.154, 0.176, 0] },
+ "t": 152,
+ "s": [102.584, 97.395, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.157, 0.176, 0] },
+ "t": 153,
+ "s": [102.415, 97.449, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.174, 0] },
+ "t": 154,
+ "s": [102.223, 97.498, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.827, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.172, 0] },
+ "t": 155,
+ "s": [102.009, 97.543, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.832, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.161, 0.169, 0] },
+ "t": 156,
+ "s": [101.776, 97.585, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.83, 0.829, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.165, 0] },
+ "t": 157,
+ "s": [101.527, 97.626, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.832, 0.825, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, 0.162, 0] },
+ "t": 158,
+ "s": [101.263, 97.668, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.822, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.165, 0.159, 0] },
+ "t": 159,
+ "s": [100.99, 97.712, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.82, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.166, 0.157, 0] },
+ "t": 160,
+ "s": [100.711, 97.761, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.819, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.168, 0.155, 0] },
+ "t": 161,
+ "s": [100.431, 97.816, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.818, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.169, 0.154, 0] },
+ "t": 162,
+ "s": [100.154, 97.879, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.84, 0.818, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.154, 0] },
+ "t": 163,
+ "s": [99.886, 97.954, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.843, 0.818, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.174, 0.154, 0] },
+ "t": 164,
+ "s": [99.633, 98.042, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.822, 0.81, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.178, 0.154, 0] },
+ "t": 165,
+ "s": [99.401, 98.145, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.813, 0.814, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.157, 0.148, 0] },
+ "t": 166,
+ "s": [99.197, 98.268, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.821, 0.822, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.15, 0.151, 0] },
+ "t": 167,
+ "s": [98.965, 98.424, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.827, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.156, 0.157, 0] },
+ "t": 168,
+ "s": [98.677, 98.617, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.16, 0] },
+ "t": 169,
+ "s": [98.347, 98.836, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.832, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.163, 0.163, 0] },
+ "t": 170,
+ "s": [97.988, 99.073, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.165, 0.166, 0] },
+ "t": 171,
+ "s": [97.611, 99.319, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.168, 0] },
+ "t": 172,
+ "s": [97.228, 99.566, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.169, 0.171, 0] },
+ "t": 173,
+ "s": [96.848, 99.809, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.84, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.173, 0] },
+ "t": 174,
+ "s": [96.48, 100.041, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.842, 0.845, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.174, 0.176, 0] },
+ "t": 175,
+ "s": [96.133, 100.256, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.845, 0.848, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.177, 0.18, 0] },
+ "t": 176,
+ "s": [95.814, 100.449, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.848, 0.853, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.18, 0.185, 0] },
+ "t": 177,
+ "s": [95.529, 100.616, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.853, 0.861, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.185, 0.192, 0] },
+ "t": 178,
+ "s": [95.283, 100.754, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.861, 0.876, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.192, 0.208, 0] },
+ "t": 179,
+ "s": [95.082, 100.859, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.875, 0.923, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.207, 0.254, 0] },
+ "t": 180,
+ "s": [94.928, 100.93, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.918, -0.315, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.25, -0.973, 0] },
+ "t": 181,
+ "s": [94.825, 100.964, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [-3.586, 0.756, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [-4.264, 0.089, 0] },
+ "t": 182,
+ "s": [94.773, 100.962, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.753, 0.794, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.085, 0.127, 0] },
+ "t": 183,
+ "s": [94.774, 100.921, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.794, 0.808, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.126, 0.14, 0] },
+ "t": 184,
+ "s": [94.827, 100.844, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.808, 0.815, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.14, 0.147, 0] },
+ "t": 185,
+ "s": [94.932, 100.731, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.816, 0.82, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.147, 0.152, 0] },
+ "t": 186,
+ "s": [95.087, 100.584, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.82, 0.823, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.152, 0.155, 0] },
+ "t": 187,
+ "s": [95.288, 100.404, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.826, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.155, 0.158, 0] },
+ "t": 188,
+ "s": [95.532, 100.196, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.828, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.16, 0] },
+ "t": 189,
+ "s": [95.814, 99.962, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.162, 0] },
+ "t": 190,
+ "s": [96.129, 99.708, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.832, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.164, 0] },
+ "t": 191,
+ "s": [96.469, 99.438, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, 0.166, 0] },
+ "t": 192,
+ "s": [96.827, 99.158, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.168, 0] },
+ "t": 193,
+ "s": [97.196, 98.873, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.169, 0.17, 0] },
+ "t": 194,
+ "s": [97.564, 98.593, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.173, 0] },
+ "t": 195,
+ "s": [97.923, 98.322, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.826, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.164, 0] },
+ "t": 196,
+ "s": [98.262, 98.071, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.829, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.171, 0.16, 0] },
+ "t": 197,
+ "s": [98.58, 97.811, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.839, 0.832, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.163, 0] },
+ "t": 198,
+ "s": [98.881, 97.527, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.839, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.166, 0] },
+ "t": 199,
+ "s": [99.166, 97.23, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.84, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.173, 0.168, 0] },
+ "t": 200,
+ "s": [99.432, 96.929, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.841, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.174, 0.17, 0] },
+ "t": 201,
+ "s": [99.678, 96.633, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.841, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.175, 0.173, 0] },
+ "t": 202,
+ "s": [99.906, 96.348, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.842, 0.844, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.176, 0.175, 0] },
+ "t": 203,
+ "s": [100.113, 96.083, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.843, 0.847, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.177, 0.179, 0] },
+ "t": 204,
+ "s": [100.3, 95.842, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.844, 0.851, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.178, 0.183, 0] },
+ "t": 205,
+ "s": [100.467, 95.631, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.845, 0.858, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.179, 0.19, 0] },
+ "t": 206,
+ "s": [100.615, 95.455, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.846, 0.871, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.18, 0.202, 0] },
+ "t": 207,
+ "s": [100.744, 95.317, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.847, 0.903, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.182, 0.234, 0] },
+ "t": 208,
+ "s": [100.855, 95.221, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.849, 1.245, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.183, 0.574, 0] },
+ "t": 209,
+ "s": [100.949, 95.167, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.85, 0.73, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.185, 0.062, 0] },
+ "t": 210,
+ "s": [101.027, 95.158, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.85, 0.788, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.187, 0.12, 0] },
+ "t": 211,
+ "s": [101.091, 95.194, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.85, 0.805, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.188, 0.137, 0] },
+ "t": 212,
+ "s": [101.142, 95.274, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.849, 0.814, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.188, 0.146, 0] },
+ "t": 213,
+ "s": [101.183, 95.398, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.844, 0.819, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.185, 0.151, 0] },
+ "t": 214,
+ "s": [101.215, 95.563, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.835, 0.823, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.179, 0.154, 0] },
+ "t": 215,
+ "s": [101.241, 95.768, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.825, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.168, 0.157, 0] },
+ "t": 216,
+ "s": [101.264, 96.007, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.814, 0.828, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.159, 0] },
+ "t": 217,
+ "s": [101.287, 96.278, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.808, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.151, 0.161, 0] },
+ "t": 218,
+ "s": [101.312, 96.575, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.806, 0.832, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.147, 0.163, 0] },
+ "t": 219,
+ "s": [101.344, 96.891, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.807, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.146, 0.165, 0] },
+ "t": 220,
+ "s": [101.384, 97.221, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.808, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.146, 0.167, 0] },
+ "t": 221,
+ "s": [101.438, 97.557, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.81, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.147, 0.17, 0] },
+ "t": 222,
+ "s": [101.51, 97.891, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.812, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.148, 0.173, 0] },
+ "t": 223,
+ "s": [101.602, 98.213, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.814, 0.847, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.15, 0.177, 0] },
+ "t": 224,
+ "s": [101.721, 98.514, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.823, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.151, 0.182, 0] },
+ "t": 225,
+ "s": [101.871, 98.783, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.819, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.164, 0] },
+ "t": 226,
+ "s": [102.055, 99.009, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.835, 0.825, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.165, 0.155, 0] },
+ "t": 227,
+ "s": [102.262, 99.243, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.828, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.168, 0.159, 0] },
+ "t": 228,
+ "s": [102.474, 99.517, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.842, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.162, 0] },
+ "t": 229,
+ "s": [102.682, 99.82, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.845, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.176, 0.164, 0] },
+ "t": 230,
+ "s": [102.877, 100.141, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.851, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.181, 0.166, 0] },
+ "t": 231,
+ "s": [103.054, 100.473, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.859, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.188, 0.168, 0] },
+ "t": 232,
+ "s": [103.205, 100.807, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.873, 0.838, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.203, 0.17, 0] },
+ "t": 233,
+ "s": [103.324, 101.136, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.917, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.244, 0.172, 0] },
+ "t": 234,
+ "s": [103.407, 101.452, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [45.534, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [42.555, 0.174, 0] },
+ "t": 235,
+ "s": [103.451, 101.75, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.747, 0.844, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.083, 0.176, 0] },
+ "t": 236,
+ "s": [103.451, 102.024, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.79, 0.847, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.124, 0.179, 0] },
+ "t": 237,
+ "s": [103.405, 102.27, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.805, 0.851, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.138, 0.183, 0] },
+ "t": 238,
+ "s": [103.313, 102.484, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.813, 0.857, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.146, 0.189, 0] },
+ "t": 239,
+ "s": [103.172, 102.662, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.817, 0.867, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.15, 0.199, 0] },
+ "t": 240,
+ "s": [102.984, 102.803, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.821, 0.89, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.153, 0.222, 0] },
+ "t": 241,
+ "s": [102.749, 102.904, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.823, 1.004, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.156, 0.339, 0] },
+ "t": 242,
+ "s": [102.468, 102.964, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.825, 0.675, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.004, 0] },
+ "t": 243,
+ "s": [102.145, 102.984, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.827, 0.781, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.159, 0.112, 0] },
+ "t": 244,
+ "s": [101.783, 102.963, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 0.804, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.161, 0.135, 0] },
+ "t": 245,
+ "s": [101.385, 102.903, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.83, 0.813, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.145, 0] },
+ "t": 246,
+ "s": [100.957, 102.806, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.819, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.163, 0.151, 0] },
+ "t": 247,
+ "s": [100.504, 102.674, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.823, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.165, 0.155, 0] },
+ "t": 248,
+ "s": [100.033, 102.51, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.827, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.166, 0.158, 0] },
+ "t": 249,
+ "s": [99.552, 102.319, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.829, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.168, 0.16, 0] },
+ "t": 250,
+ "s": [99.068, 102.105, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.832, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.17, 0.163, 0] },
+ "t": 251,
+ "s": [98.59, 101.874, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.841, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.165, 0] },
+ "t": 252,
+ "s": [98.128, 101.632, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.844, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.175, 0.168, 0] },
+ "t": 253,
+ "s": [97.693, 101.386, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.849, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.179, 0.171, 0] },
+ "t": 254,
+ "s": [97.296, 101.144, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.849, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.185, 0.175, 0] },
+ "t": 255,
+ "s": [96.95, 100.913, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.85, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.186, 0.169, 0] },
+ "t": 256,
+ "s": [96.667, 100.703, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.855, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.187, 0.164, 0] },
+ "t": 257,
+ "s": [96.438, 100.497, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.863, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.195, 0.166, 0] },
+ "t": 258,
+ "s": [96.254, 100.286, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.88, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.212, 0.168, 0] },
+ "t": 259,
+ "s": [96.116, 100.072, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.938, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.27, 0.169, 0] },
+ "t": 260,
+ "s": [96.027, 99.861, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.425, 0.839, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [-0.241, 0.171, 0] },
+ "t": 261,
+ "s": [95.987, 99.656, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.765, 0.84, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.097, 0.172, 0] },
+ "t": 262,
+ "s": [95.997, 99.461, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.796, 0.842, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.129, 0.174, 0] },
+ "t": 263,
+ "s": [96.058, 99.278, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.809, 0.844, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.141, 0.176, 0] },
+ "t": 264,
+ "s": [96.167, 99.111, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.815, 0.846, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.148, 0.179, 0] },
+ "t": 265,
+ "s": [96.325, 98.96, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.819, 0.85, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.152, 0.182, 0] },
+ "t": 266,
+ "s": [96.531, 98.829, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.822, 0.854, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.155, 0.187, 0] },
+ "t": 267,
+ "s": [96.781, 98.719, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.824, 0.861, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.157, 0.194, 0] },
+ "t": 268,
+ "s": [97.074, 98.63, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.875, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.209, 0] },
+ "t": 269,
+ "s": [97.406, 98.563, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.828, 0.916, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.251, 0] },
+ "t": 270,
+ "s": [97.775, 98.518, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.829, 10.603, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.161, 10.365, 0] },
+ "t": 271,
+ "s": [98.176, 98.496, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.83, 0.755, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.083, 0] },
+ "t": 272,
+ "s": [98.604, 98.496, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.831, 0.796, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.164, 0.126, 0] },
+ "t": 273,
+ "s": [99.055, 98.517, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.811, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.165, 0.141, 0] },
+ "t": 274,
+ "s": [99.523, 98.557, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.834, 0.818, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.166, 0.149, 0] },
+ "t": 275,
+ "s": [100.003, 98.615, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.835, 0.823, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.154, 0] },
+ "t": 276,
+ "s": [100.487, 98.689, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.836, 0.827, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.168, 0.158, 0] },
+ "t": 277,
+ "s": [100.969, 98.777, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.838, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.17, 0.161, 0] },
+ "t": 278,
+ "s": [101.442, 98.875, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.84, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.172, 0.164, 0] },
+ "t": 279,
+ "s": [101.896, 98.98, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.843, 0.837, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.174, 0.167, 0] },
+ "t": 280,
+ "s": [102.324, 99.088, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.846, 0.841, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.177, 0.171, 0] },
+ "t": 281,
+ "s": [102.717, 99.196, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.852, 0.847, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.182, 0.175, 0] },
+ "t": 282,
+ "s": [103.065, 99.299, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.861, 0.855, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.191, 0.182, 0] },
+ "t": 283,
+ "s": [103.359, 99.393, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.881, 0.87, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.209, 0.196, 0] },
+ "t": 284,
+ "s": [103.587, 99.471, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.896, 0.749, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.279, 0.234, 0] },
+ "t": 285,
+ "s": [103.739, 99.529, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.932, 0.747, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.423, 0.125, 0] },
+ "t": 286,
+ "s": [103.803, 99.562, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.294, 0.796, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [-0.368, 0.124, 0] },
+ "t": 287,
+ "s": [103.819, 99.626, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.761, 0.811, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.094, 0.141, 0] },
+ "t": 288,
+ "s": [103.816, 99.758, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.795, 0.818, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.128, 0.149, 0] },
+ "t": 289,
+ "s": [103.794, 99.949, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.807, 0.823, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.14, 0.154, 0] },
+ "t": 290,
+ "s": [103.754, 100.191, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.814, 0.826, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.147, 0.157, 0] },
+ "t": 291,
+ "s": [103.694, 100.476, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.818, 0.828, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.151, 0.16, 0] },
+ "t": 292,
+ "s": [103.616, 100.796, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.821, 0.83, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.154, 0.162, 0] },
+ "t": 293,
+ "s": [103.519, 101.146, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.823, 0.831, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.156, 0.163, 0] },
+ "t": 294,
+ "s": [103.405, 101.517, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.825, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.158, 0.165, 0] },
+ "t": 295,
+ "s": [103.274, 101.903, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.826, 0.834, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.159, 0.166, 0] },
+ "t": 296,
+ "s": [103.127, 102.299, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.827, 0.835, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.16, 0.167, 0] },
+ "t": 297,
+ "s": [102.964, 102.699, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.828, 0.836, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.161, 0.168, 0] },
+ "t": 298,
+ "s": [102.788, 103.097, 100]
+ },
+ {
+ "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] },
+ "o": { "x": [0.167, 0.167, 0.167], "y": [0.162, 0.169, 0] },
+ "t": 299,
+ "s": [102.599, 103.488, 100]
+ },
+ { "t": 300, "s": [102.399, 103.868, 100] }
+ ],
+ "ix": 6,
+ "l": 2
+ }
+ },
+ "ao": 0,
+ "shapes": [
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.505, 1.201],
+ [-1.337, 2.533],
+ [-2.427, -1.35],
+ [1.26, -2.382]
+ ],
+ "o": [
+ [-2.504, -1.201],
+ [1.338, -2.532],
+ [2.427, 1.35],
+ [-1.261, 2.383]
+ ],
+ "v": [
+ [-2.313, 4.524],
+ [-4.428, -2.237],
+ [2.391, -4.375],
+ [4.506, 2.385]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [73.73, 526.825], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 1",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 1,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.359, 1.481],
+ [-1.545, 2.411],
+ [-2.257, -1.619],
+ [1.576, -2.184]
+ ],
+ "o": [
+ [-2.346, -1.472],
+ [1.672, -2.326],
+ [2.257, 1.62],
+ [-1.451, 2.269]
+ ],
+ "v": [
+ [-2.685, 4.244],
+ [-4.191, -2.826],
+ [2.926, -4.106],
+ [4.16, 2.782]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [84.964, 507.822], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 2",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 2,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.168, 1.737],
+ [-1.826, 2.206],
+ [-2.084, -1.888],
+ [1.678, -2.111]
+ ],
+ "o": [
+ [-2.167, -1.735],
+ [1.789, -2.24],
+ [2.032, 1.84],
+ [-1.717, 2.078]
+ ],
+ "v": [
+ [-3.134, 3.921],
+ [-3.753, -3.219],
+ [3.354, -3.77],
+ [3.902, 3.306]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [98.311, 490.169], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 3",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 3,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.961, 1.966],
+ [-2.086, 1.954],
+ [-1.846, -2.074],
+ [1.971, -1.847]
+ ],
+ "o": [
+ [-1.962, -1.967],
+ [2.085, -1.953],
+ [1.848, 2.074],
+ [-1.972, 1.846]
+ ],
+ "v": [
+ [-3.616, 3.494],
+ [-3.392, -3.606],
+ [3.73, -3.387],
+ [3.507, 3.714]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [113.602, 474.15], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 4",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 4,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.768, 2.178],
+ [-2.319, 1.655],
+ [-1.639, -2.242],
+ [2.177, -1.616]
+ ],
+ "o": [
+ [-1.733, -2.134],
+ [2.285, -1.7],
+ [1.64, 2.241],
+ [-2.214, 1.571]
+ ],
+ "v": [
+ [-3.947, 3.182],
+ [-3.066, -3.92],
+ [4.04, -2.937],
+ [3.07, 4.049]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [130.488, 459.769], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 5",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 5,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.548, 2.306],
+ [-2.365, 1.576],
+ [-1.433, -2.35],
+ [2.271, -1.493]
+ ],
+ "o": [
+ [-1.548, -2.306],
+ [2.374, -1.56],
+ [1.46, 2.392],
+ [-2.26, 1.508]
+ ],
+ "v": [
+ [-4.191, 2.818],
+ [-2.713, -4.211],
+ [4.279, -2.615],
+ [2.703, 4.263]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [148.611, 447.085], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 6",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 6,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.363, 2.421],
+ [-2.487, 1.354],
+ [-1.273, -2.469],
+ [2.396, -1.305]
+ ],
+ "o": [
+ [-1.363, -2.419],
+ [2.487, -1.353],
+ [1.272, 2.468],
+ [-2.396, 1.304]
+ ],
+ "v": [
+ [-4.375, 2.43],
+ [-2.342, -4.402],
+ [4.466, -2.383],
+ [2.432, 4.452]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [167.68, 435.925], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 7",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 7,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.192, 2.485],
+ [-2.576, 1.147],
+ [-1.127, -2.539],
+ [2.495, -1.13]
+ ],
+ "o": [
+ [-1.211, -2.523],
+ [2.569, -1.163],
+ [1.127, 2.538],
+ [-2.503, 1.113]
+ ],
+ "v": [
+ [-4.534, 2.137],
+ [-2.075, -4.541],
+ [4.618, -2.051],
+ [2.14, 4.592]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [187.503, 426.041], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 8",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 8,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.069, 2.564],
+ [-2.6, 1.081],
+ [-1.002, -2.581],
+ [2.548, -1.022]
+ ],
+ "o": [
+ [-1.066, -2.564],
+ [2.611, -1.047],
+ [1.009, 2.597],
+ [-2.534, 1.055]
+ ],
+ "v": [
+ [-4.641, 1.929],
+ [-1.866, -4.671],
+ [4.697, -1.827],
+ [1.88, 4.663]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [207.858, 417.296], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 9",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 9,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.956, 2.608],
+ [-2.644, 0.943],
+ [-0.905, -2.626],
+ [2.593, -0.926]
+ ],
+ "o": [
+ [-0.956, -2.607],
+ [2.642, -0.944],
+ [0.905, 2.626],
+ [-2.592, 0.926]
+ ],
+ "v": [
+ [-4.714, 1.702],
+ [-1.659, -4.729],
+ [4.765, -1.684],
+ [1.71, 4.747]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [228.568, 409.496], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 10",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 10,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.87, 2.643],
+ [-2.674, 0.825],
+ [-0.831, -2.65],
+ [2.632, -0.83]
+ ],
+ "o": [
+ [-0.867, -2.633],
+ [2.668, -0.841],
+ [0.83, 2.651],
+ [-2.64, 0.814]
+ ],
+ "v": [
+ [-4.775, 1.566],
+ [-1.524, -4.775],
+ [4.812, -1.5],
+ [1.549, 4.802]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [249.559, 402.402], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 11",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 11,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.803, 2.66],
+ [-2.678, 0.803],
+ [-0.775, -2.665],
+ [2.645, -0.804]
+ ],
+ "o": [
+ [-0.802, -2.659],
+ [2.675, -0.812],
+ [0.776, 2.668],
+ [-2.649, 0.793]
+ ],
+ "v": [
+ [-4.811, 1.454],
+ [-1.417, -4.813],
+ [4.837, -1.413],
+ [1.437, 4.832]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [270.728, 395.898], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 12",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 12,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.756, 2.672],
+ [-2.686, 0.749],
+ [-0.74, -2.676],
+ [2.669, -0.744]
+ ],
+ "o": [
+ [-0.756, -2.673],
+ [2.685, -0.748],
+ [0.741, 2.677],
+ [-2.67, 0.744]
+ ],
+ "v": [
+ [-4.84, 1.353],
+ [-1.346, -4.841],
+ [4.856, -1.349],
+ [1.362, 4.845]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [292.016, 389.797], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 13",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 13,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.731, 2.679],
+ [-2.687, 0.733],
+ [-0.724, -2.68],
+ [2.682, -0.725]
+ ],
+ "o": [
+ [-0.732, -2.68],
+ [2.684, -0.727],
+ [0.726, 2.681],
+ [-2.676, 0.732]
+ ],
+ "v": [
+ [-4.854, 1.323],
+ [-1.314, -4.856],
+ [4.859, -1.315],
+ [1.316, 4.851]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [313.373, 383.927], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 14",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 14,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.725, 2.682],
+ [-2.683, 0.726],
+ [-0.725, -2.68],
+ [2.683, -0.726]
+ ],
+ "o": [
+ [-0.726, -2.681],
+ [2.683, -0.726],
+ [0.725, 2.681],
+ [-2.683, 0.726]
+ ],
+ "v": [
+ [-4.857, 1.313],
+ [-1.313, -4.854],
+ [4.858, -1.315],
+ [1.313, 4.854]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [334.757, 378.146], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 15",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 15,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.737, 2.676],
+ [-2.665, 0.754],
+ [-0.753, -2.673],
+ [2.684, -0.753]
+ ],
+ "o": [
+ [-0.739, -2.679],
+ [2.667, -0.749],
+ [0.754, 2.673],
+ [-2.684, 0.761]
+ ],
+ "v": [
+ [-4.855, 1.338],
+ [-1.354, -4.85],
+ [4.84, -1.366],
+ [1.343, 4.838]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [356.117, 372.306], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 16",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 16,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.772, 2.668],
+ [-2.656, 0.771],
+ [-0.801, -2.663],
+ [2.684, -0.767]
+ ],
+ "o": [
+ [-0.771, -2.668],
+ [2.661, -0.759],
+ [0.799, 2.656],
+ [-2.682, 0.78]
+ ],
+ "v": [
+ [-4.842, 1.393],
+ [-1.43, -4.834],
+ [4.815, -1.443],
+ [1.411, 4.814]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [377.414, 366.231], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 17",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 17,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.828, 2.651],
+ [-2.626, 0.844],
+ [-0.869, -2.638],
+ [2.667, -0.857]
+ ],
+ "o": [
+ [-0.829, -2.65],
+ [2.625, -0.844],
+ [0.87, 2.639],
+ [-2.667, 0.856]
+ ],
+ "v": [
+ [-4.812, 1.533],
+ [-1.557, -4.795],
+ [4.771, -1.546],
+ [1.516, 4.783]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [398.593, 359.723], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 18",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 18,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.907, 2.604],
+ [-2.568, 0.974],
+ [-0.969, -2.604],
+ [2.638, -0.973]
+ ],
+ "o": [
+ [-0.92, -2.642],
+ [2.578, -0.95],
+ [0.968, 2.603],
+ [-2.631, 0.996]
+ ],
+ "v": [
+ [-4.758, 1.65],
+ [-1.711, -4.757],
+ [4.711, -1.763],
+ [1.688, 4.711]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [419.562, 352.65], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 19",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 19,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.025, 2.582],
+ [-2.547, 1.017],
+ [-1.211, -2.555],
+ [2.631, -1.034]
+ ],
+ "o": [
+ [-1.024, -2.582],
+ [2.543, -0.998],
+ [1.171, 2.466],
+ [-2.617, 1.045]
+ ],
+ "v": [
+ [-4.695, 1.843],
+ [-1.939, -4.673],
+ [4.548, -2.126],
+ [1.897, 4.626]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [440.243, 344.713], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 20",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 20,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.39, 2.404],
+ [-2.245, 1.409],
+ [-1.605, -2.267],
+ [2.461, -1.548]
+ ],
+ "o": [
+ [-1.392, -2.404],
+ [2.247, -1.41],
+ [1.606, 2.266],
+ [-2.462, 1.547]
+ ],
+ "v": [
+ [-4.368, 2.608],
+ [-2.824, -4.301],
+ [4.155, -2.745],
+ [2.608, 4.164]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [459.867, 334.416], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 21",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 21,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.78, 2.19],
+ [-1.963, 1.853],
+ [-1.887, -2.039],
+ [2.129, -1.92]
+ ],
+ "o": [
+ [-1.723, -2.12],
+ [1.998, -1.805],
+ [1.886, 2.038],
+ [-2.089, 1.962]
+ ],
+ "v": [
+ [-3.854, 3.207],
+ [-3.344, -3.875],
+ [3.691, -3.45],
+ [3.253, 3.718]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [477.463, 321.115], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 22",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 22,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.982, 1.946],
+ [-1.886, 1.945],
+ [-2.082, -1.861],
+ [2.024, -2.012]
+ ],
+ "o": [
+ [-1.982, -1.946],
+ [1.925, -1.907],
+ [2.06, 1.841],
+ [-1.981, 2.048]
+ ],
+ "v": [
+ [-3.57, 3.617],
+ [-3.744, -3.43],
+ [3.335, -3.702],
+ [3.606, 3.434]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [493.374, 305.626], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 23",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 23,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.163, 1.796],
+ [-1.696, 2.146],
+ [-2.192, -1.707],
+ [1.75, -2.216]
+ ],
+ "o": [
+ [-2.109, -1.753],
+ [1.694, -2.149],
+ [2.191, 1.706],
+ [-1.75, 2.215]
+ ],
+ "v": [
+ [-3.162, 3.899],
+ [-3.945, -3.188],
+ [3.091, -3.988],
+ [3.891, 3.115]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [507.778, 288.893], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 24",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 24,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.232, 1.653],
+ [-1.619, 2.217],
+ [-2.265, -1.592],
+ [1.657, -2.273]
+ ],
+ "o": [
+ [-2.232, -1.653],
+ [1.618, -2.218],
+ [2.279, 1.602],
+ [-1.661, 2.273]
+ ],
+ "v": [
+ [-2.987, 4.035],
+ [-4.098, -2.972],
+ [2.945, -4.096],
+ [4.06, 2.913]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [521.157, 271.249], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 25",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 25,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.29, 1.557],
+ [-1.529, 2.294],
+ [-2.322, -1.524],
+ [1.531, -2.342]
+ ],
+ "o": [
+ [-2.304, -1.566],
+ [1.509, -2.311],
+ [2.322, 1.524],
+ [-1.554, 2.331]
+ ],
+ "v": [
+ [-2.833, 4.17],
+ [-4.186, -2.779],
+ [2.751, -4.203],
+ [4.183, 2.799]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [533.768, 253.021], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 26",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 26,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.34, 1.497],
+ [-1.474, 2.342],
+ [-2.354, -1.473],
+ [1.487, -2.364]
+ ],
+ "o": [
+ [-2.339, -1.497],
+ [1.474, -2.341],
+ [2.354, 1.475],
+ [-1.488, 2.363]
+ ],
+ "v": [
+ [-2.688, 4.247],
+ [-4.256, -2.702],
+ [2.675, -4.271],
+ [4.243, 2.679]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [545.797, 234.447], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 27",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 27,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.363, 1.459],
+ [-1.451, 2.362],
+ [-2.372, -1.446],
+ [1.459, -2.375]
+ ],
+ "o": [
+ [-2.364, -1.459],
+ [1.45, -2.361],
+ [2.372, 1.445],
+ [-1.459, 2.375]
+ ],
+ "v": [
+ [-2.638, 4.282],
+ [-4.291, -2.636],
+ [2.63, -4.295],
+ [4.283, 2.622]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [557.489, 215.638], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 28",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 28,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.375, 1.44],
+ [-1.44, 2.374],
+ [-2.376, -1.438],
+ [1.443, -2.38]
+ ],
+ "o": [
+ [-2.375, -1.44],
+ [1.44, -2.375],
+ [2.375, 1.438],
+ [-1.442, 2.381]
+ ],
+ "v": [
+ [-2.609, 4.304],
+ [-4.305, -2.601],
+ [2.604, -4.306],
+ [4.301, 2.602]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [568.996, 196.712], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 29",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 29,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.377, 1.44],
+ [-1.453, 2.377],
+ [-2.371, -1.446],
+ [1.444, -2.368]
+ ],
+ "o": [
+ [-2.374, -1.438],
+ [1.451, -2.378],
+ [2.372, 1.448],
+ [-1.446, 2.365]
+ ],
+ "v": [
+ [-2.607, 4.302],
+ [-4.294, -2.609],
+ [2.625, -4.297],
+ [4.302, 2.612]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [580.458, 177.767], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 30",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 30,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.364, 1.455],
+ [-1.473, 2.369],
+ [-2.354, -1.473],
+ [1.462, -2.352]
+ ],
+ "o": [
+ [-2.366, -1.456],
+ [1.473, -2.369],
+ [2.355, 1.473],
+ [-1.463, 2.352]
+ ],
+ "v": [
+ [-2.651, 4.283],
+ [-4.268, -2.643],
+ [2.662, -4.265],
+ [4.279, 2.66]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [592.038, 158.884], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 31",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 31,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.343, 1.492],
+ [-1.508, 2.353],
+ [-2.327, -1.516],
+ [1.492, -2.328]
+ ],
+ "o": [
+ [-2.343, -1.492],
+ [1.507, -2.353],
+ [2.327, 1.518],
+ [-1.491, 2.327]
+ ],
+ "v": [
+ [-2.707, 4.25],
+ [-4.219, -2.711],
+ [2.723, -4.227],
+ [4.235, 2.737]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [603.857, 140.156], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 32",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 32,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.309, 1.546],
+ [-1.554, 2.33],
+ [-2.266, -1.572],
+ [1.518, -2.306]
+ ],
+ "o": [
+ [-2.308, -1.545],
+ [1.538, -2.338],
+ [2.297, 1.594],
+ [-1.531, 2.295]
+ ],
+ "v": [
+ [-2.775, 4.177],
+ [-4.139, -2.839],
+ [2.877, -4.152],
+ [4.176, 2.819]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [616.038, 121.691], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 33",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 33,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.255, 1.617],
+ [-1.707, 2.236],
+ [-2.22, -1.668],
+ [1.647, -2.2]
+ ],
+ "o": [
+ [-2.26, -1.619],
+ [1.685, -2.252],
+ [2.221, 1.667],
+ [-1.668, 2.182]
+ ],
+ "v": [
+ [-2.935, 4.072],
+ [-4.026, -2.965],
+ [3.045, -4.022],
+ [4.086, 2.98]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [628.795, 103.584], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 34",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 34,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.187, 1.713],
+ [-1.77, 2.194],
+ [-2.137, -1.774],
+ [1.721, -2.133]
+ ],
+ "o": [
+ [-2.186, -1.713],
+ [1.77, -2.194],
+ [2.136, 1.774],
+ [-1.721, 2.133]
+ ],
+ "v": [
+ [-3.136, 3.947],
+ [-3.89, -3.127],
+ [3.185, -3.887],
+ [3.938, 3.188]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [642.301, 86.012], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 35",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 35,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.086, 1.833],
+ [-1.869, 2.12],
+ [-2.024, -1.912],
+ [1.772, -2.082]
+ ],
+ "o": [
+ [-2.086, -1.833],
+ [1.836, -2.15],
+ [2.015, 1.902],
+ [-1.807, 2.051]
+ ],
+ "v": [
+ [-3.279, 3.781],
+ [-3.672, -3.378],
+ [3.449, -3.702],
+ [3.769, 3.388]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [656.629, 69.179], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 36",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 36,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.951, 1.977],
+ [-2.146, 1.876],
+ [-1.856, -2.065],
+ [2.01, -1.823]
+ ],
+ "o": [
+ [-1.949, -1.977],
+ [2.107, -1.915],
+ [1.858, 2.066],
+ [-2.046, 1.781]
+ ],
+ "v": [
+ [-3.631, 3.534],
+ [-3.445, -3.597],
+ [3.733, -3.324],
+ [3.459, 3.716]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [672.151, 53.302], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 37",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 37,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.765, 2.146],
+ [-2.243, 1.771],
+ [-1.64, -2.241],
+ [2.119, -1.674]
+ ],
+ "o": [
+ [-1.764, -2.145],
+ [2.244, -1.769],
+ [1.64, 2.241],
+ [-2.119, 1.675]
+ ],
+ "v": [
+ [-3.888, 3.165],
+ [-3.022, -3.925],
+ [4.013, -3.07],
+ [3.146, 4.019]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [688.904, 38.916], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 38",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 38,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.526, 2.354],
+ [-2.456, 1.488],
+ [-1.348, -2.429],
+ [2.351, -1.285]
+ ],
+ "o": [
+ [-1.496, -2.307],
+ [2.525, -1.391],
+ [1.346, 2.429],
+ [-2.292, 1.39]
+ ],
+ "v": [
+ [-4.24, 2.746],
+ [-2.623, -4.305],
+ [4.389, -2.421],
+ [2.573, 4.306]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [707.139, 26.305], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 39",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 39,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.187, 2.51],
+ [-2.657, 1.139],
+ [-0.982, -2.597],
+ [2.452, -1.052]
+ ],
+ "o": [
+ [-1.188, -2.51],
+ [2.658, -1.138],
+ [0.982, 2.598],
+ [-2.452, 1.051]
+ ],
+ "v": [
+ [-4.523, 2.026],
+ [-1.864, -4.585],
+ [4.729, -1.939],
+ [2.07, 4.672]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [726.759, 16.292], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 40",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 40,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.791, 2.662],
+ [-2.769, 0.849],
+ [-0.561, -2.72],
+ [2.613, -0.498]
+ ],
+ "o": [
+ [-0.791, -2.663],
+ [2.846, -0.557],
+ [0.56, 2.721],
+ [-2.541, 0.791]
+ ],
+ "v": [
+ [-4.759, 1.372],
+ [-1.178, -4.994],
+ [4.99, -1.073],
+ [1.275, 4.76]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [747.71, 9.203], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 41",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 41,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.356, 2.753],
+ [-2.888, 0.232],
+ [-0.124, -2.775],
+ [2.654, -0.21]
+ ],
+ "o": [
+ [-0.356, -2.755],
+ [2.888, -0.229],
+ [0.122, 2.774],
+ [-2.653, 0.21]
+ ],
+ "v": [
+ [-4.9, 0.409],
+ [-0.318, -5.001],
+ [5.134, -0.388],
+ [0.551, 5.02]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [769.488, 5.635], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 42",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 42,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.07, 2.776],
+ [-2.887, -0.094],
+ [0.29, -2.773],
+ [2.677, -0.018]
+ ],
+ "o": [
+ [0.069, -2.776],
+ [2.896, -0.004],
+ [-0.288, 2.751],
+ [-2.67, -0.08]
+ ],
+ "v": [
+ [-5.131, -0.111],
+ [0.224, -4.971],
+ [4.911, 0.419],
+ [-0.424, 5.065]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [791.816, 5.316], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 43",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 43,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.486, 2.769],
+ [-2.783, -0.828],
+ [0.703, -2.687],
+ [2.579, 0.668]
+ ],
+ "o": [
+ [0.474, -2.702],
+ [2.805, 0.718],
+ [-0.702, 2.687],
+ [-2.556, -0.78]
+ ],
+ "v": [
+ [-5.009, -0.908],
+ [0.988, -4.834],
+ [4.792, 1.336],
+ [-1.151, 4.994]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [813.696, 8.329], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 44",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 44,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.893, 2.631],
+ [-2.707, -1.032],
+ [1.11, -2.546],
+ [2.489, 0.948]
+ ],
+ "o": [
+ [0.895, -2.629],
+ [2.704, 1.032],
+ [-1.108, 2.546],
+ [-2.491, -0.949]
+ ],
+ "v": [
+ [-4.812, -1.751],
+ [1.708, -4.648],
+ [4.594, 1.834],
+ [-1.923, 4.732]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [834.873, 14.817], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 45",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 45,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.283, 2.463],
+ [-2.571, -1.323],
+ [1.454, -2.323],
+ [2.316, 1.322]
+ ],
+ "o": [
+ [1.285, -2.462],
+ [2.505, 1.43],
+ [-1.492, 2.386],
+ [-2.378, -1.212]
+ ],
+ "v": [
+ [-4.455, -2.294],
+ [2.528, -4.362],
+ [4.284, 2.677],
+ [-2.476, 4.362]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [854.768, 24.238], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 46",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 46,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.625, 2.252],
+ [-2.246, -1.795],
+ [1.779, -2.134],
+ [2.092, 1.677]
+ ],
+ "o": [
+ [1.624, -2.253],
+ [2.246, 1.797],
+ [-1.777, 2.134],
+ [-2.094, -1.679]
+ ],
+ "v": [
+ [-4.005, -3.086],
+ [3.005, -3.915],
+ [3.852, 3.205],
+ [-3.158, 4.034]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [873.151, 36.632], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 47",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 47,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.896, 2.03],
+ [-2.067, -1.988],
+ [2.054, -1.939],
+ [1.935, 1.871]
+ ],
+ "o": [
+ [1.896, -2.029],
+ [2.058, 1.995],
+ [-1.985, 1.873],
+ [-1.943, -1.865]
+ ],
+ "v": [
+ [-3.699, -3.429],
+ [3.477, -3.507],
+ [3.542, 3.562],
+ [-3.617, 3.624]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [889.74, 51.26], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 48",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 48,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.124, 1.822],
+ [-1.808, -2.206],
+ [2.2, -1.694],
+ [1.633, 2.164]
+ ],
+ "o": [
+ [2.092, -1.795],
+ [1.72, 2.271],
+ [-2.2, 1.695],
+ [-1.715, -2.09]
+ ],
+ "v": [
+ [-3.293, -3.861],
+ [3.904, -3.221],
+ [3.032, 3.961],
+ [-3.909, 3.112]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [904.563, 67.743], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 49",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 49,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.271, 1.599],
+ [-1.556, -2.378],
+ [2.34, -1.496],
+ [1.486, 2.276]
+ ],
+ "o": [
+ [2.271, -1.599],
+ [1.553, 2.377],
+ [-2.339, 1.498],
+ [-1.486, -2.275]
+ ],
+ "v": [
+ [-2.788, -4.162],
+ [4.142, -2.752],
+ [2.719, 4.263],
+ [-4.209, 2.854]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [917.633, 85.525], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 50",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 50,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.392, 1.412],
+ [-1.401, -2.463],
+ [2.444, -1.318],
+ [1.348, 2.369]
+ ],
+ "o": [
+ [2.392, -1.413],
+ [1.4, 2.463],
+ [-2.445, 1.318],
+ [-1.346, -2.37]
+ ],
+ "v": [
+ [-2.514, -4.328],
+ [4.352, -2.426],
+ [2.461, 4.422],
+ [-4.406, 2.52]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [929.206, 104.392], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 51",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 51,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.483, 1.245],
+ [-1.255, -2.533],
+ [2.558, -1.175],
+ [1.219, 2.445]
+ ],
+ "o": [
+ [2.483, -1.243],
+ [1.26, 2.532],
+ [-2.491, 1.142],
+ [-1.215, -2.447]
+ ],
+ "v": [
+ [-2.26, -4.465],
+ [4.512, -2.131],
+ [2.186, 4.566],
+ [-4.557, 2.218]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [939.442, 124.022], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 52",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 52,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.553, 1.092],
+ [-1.124, -2.588],
+ [2.559, -1.008],
+ [1.08, 2.516]
+ ],
+ "o": [
+ [2.554, -1.092],
+ [1.112, 2.593],
+ [-2.609, 1.027],
+ [-1.092, -2.51]
+ ],
+ "v": [
+ [-2.016, -4.618],
+ [4.643, -1.908],
+ [1.831, 4.683],
+ [-4.663, 1.905]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [948.454, 144.284], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 53",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 53,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.633, 0.965],
+ [-0.881, -2.672],
+ [2.63, -0.888],
+ [0.864, 2.606]
+ ],
+ "o": [
+ [2.582, -0.948],
+ [0.886, 2.671],
+ [-2.631, 0.889],
+ [-0.859, -2.608]
+ ],
+ "v": [
+ [-1.742, -4.722],
+ [4.731, -1.664],
+ [1.571, 4.781],
+ [-4.758, 1.672]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [956.315, 164.98], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 54",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 54,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.628, 0.825],
+ [-0.755, -2.708],
+ [2.668, -0.772],
+ [0.761, 2.642]
+ ],
+ "o": [
+ [2.673, -0.839],
+ [0.778, 2.701],
+ [-2.668, 0.772],
+ [-0.735, -2.649]
+ ],
+ "v": [
+ [-1.464, -4.795],
+ [4.794, -1.425],
+ [1.371, 4.862],
+ [-4.837, 1.477]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [963.149, 186.022], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 55",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 55,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.683, 0.72],
+ [-0.679, -2.726],
+ [2.697, -0.665],
+ [0.663, 2.671]
+ ],
+ "o": [
+ [2.682, -0.719],
+ [0.676, 2.724],
+ [-2.698, 0.665],
+ [-0.664, -2.669]
+ ],
+ "v": [
+ [-1.221, -4.858],
+ [4.864, -1.225],
+ [1.207, 4.912],
+ [-4.877, 1.28]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [969.062, 207.355], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 56",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 56,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.708, 0.616],
+ [-0.584, -2.745],
+ [2.719, -0.565],
+ [0.571, 2.693]
+ ],
+ "o": [
+ [2.708, -0.617],
+ [0.582, 2.745],
+ [-2.72, 0.565],
+ [-0.572, -2.693]
+ ],
+ "v": [
+ [-1.051, -4.897],
+ [4.909, -1.044],
+ [1.04, 4.949],
+ [-4.919, 1.095]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [974.158, 228.903], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 57",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 57,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.729, 0.521],
+ [-0.493, -2.761],
+ [2.736, -0.472],
+ [0.483, 2.711]
+ ],
+ "o": [
+ [2.728, -0.52],
+ [0.493, 2.76],
+ [-2.738, 0.472],
+ [-0.486, -2.712]
+ ],
+ "v": [
+ [-0.889, -4.931],
+ [4.944, -0.874],
+ [0.882, 4.979],
+ [-4.951, 0.923]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [978.48, 250.621], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 58",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 58,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.744, 0.431],
+ [-0.408, -2.774],
+ [2.751, -0.383],
+ [0.4, 2.727]
+ ],
+ "o": [
+ [2.743, -0.431],
+ [0.407, 2.774],
+ [-2.75, 0.385],
+ [-0.402, -2.727]
+ ],
+ "v": [
+ [-0.735, -4.956],
+ [4.972, -0.714],
+ [0.729, 5.002],
+ [-4.977, 0.761]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [982.075, 272.47], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 59",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 59,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.755, 0.344],
+ [-0.326, -2.783],
+ [2.762, -0.3],
+ [0.32, 2.738]
+ ],
+ "o": [
+ [2.756, -0.345],
+ [0.325, 2.783],
+ [-2.76, 0.299],
+ [-0.321, -2.739]
+ ],
+ "v": [
+ [-0.588, -4.976],
+ [4.993, -0.562],
+ [0.582, 5.021],
+ [-4.997, 0.607]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [984.979, 294.422], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 60",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 60,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.765, 0.262],
+ [-0.247, -2.79],
+ [2.768, -0.219],
+ [0.242, 2.747]
+ ],
+ "o": [
+ [2.765, -0.262],
+ [0.247, 2.79],
+ [-2.769, 0.218],
+ [-0.244, -2.747]
+ ],
+ "v": [
+ [-0.445, -4.992],
+ [5.008, -0.414],
+ [0.441, 5.035],
+ [-5.011, 0.457]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [987.221, 316.451], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 61",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 61,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.771, 0.182],
+ [-0.17, -2.795],
+ [2.774, -0.14],
+ [0.167, 2.753]
+ ],
+ "o": [
+ [2.771, -0.182],
+ [0.168, 2.796],
+ [-2.774, 0.14],
+ [-0.167, -2.753]
+ ],
+ "v": [
+ [-0.305, -5.003],
+ [5.021, -0.271],
+ [0.303, 5.045],
+ [-5.021, 0.311]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [988.82, 338.538], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 62",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 62,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.775, 0.102],
+ [-0.093, -2.799],
+ [2.776, -0.061],
+ [0.091, 2.757]
+ ],
+ "o": [
+ [2.776, -0.103],
+ [0.093, 2.799],
+ [-2.776, 0.06],
+ [-0.092, -2.757]
+ ],
+ "v": [
+ [-0.169, -5.009],
+ [5.026, -0.127],
+ [0.167, 5.052],
+ [-5.027, 0.169]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [989.789, 360.659], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 63",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 63,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.778, 0.023],
+ [-0.019, -2.801],
+ [2.778, 0.019],
+ [0.018, 2.758]
+ ],
+ "o": [
+ [2.777, -0.023],
+ [0.016, 2.8],
+ [-2.777, -0.018],
+ [-0.018, -2.759]
+ ],
+ "v": [
+ [-0.031, -5.031],
+ [5.03, -0.003],
+ [0.032, 5.034],
+ [-5.028, 0.007]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [990.131, 382.818], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 64",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 64,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.776, -0.056],
+ [0.058, -2.801],
+ [2.785, 0.099],
+ [-0.059, 2.757]
+ ],
+ "o": [
+ [2.776, 0.057],
+ [-0.061, 2.801],
+ [-2.767, -0.099],
+ [0.056, -2.758]
+ ],
+ "v": [
+ [0.104, -5.054],
+ [5.027, 0.119],
+ [-0.108, 5.01],
+ [-5.026, -0.161]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [989.844, 404.983], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 65",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 65,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.774, -0.137],
+ [0.135, -2.799],
+ [2.775, 0.183],
+ [-0.107, 2.755]
+ ],
+ "o": [
+ [2.773, 0.138],
+ [-0.108, 2.8],
+ [-2.768, -0.182],
+ [0.132, -2.755]
+ ],
+ "v": [
+ [0.228, -5.049],
+ [5.006, 0.268],
+ [-0.307, 5.003],
+ [-5.034, -0.31]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [988.929, 427.107], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 66",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 66,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.769, -0.223],
+ [0.212, -2.796],
+ [2.75, 0.27],
+ [-0.228, 2.746]
+ ],
+ "o": [
+ [2.768, 0.223],
+ [-0.232, 2.792],
+ [-2.778, -0.272],
+ [0.209, -2.748]
+ ],
+ "v": [
+ [0.391, -5.037],
+ [5.017, 0.428],
+ [-0.488, 4.989],
+ [-5.002, -0.465]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [987.315, 449.19], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 67",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 67,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.778, -0.316],
+ [0.382, -2.78],
+ [2.754, 0.366],
+ [-0.371, 2.726]
+ ],
+ "o": [
+ [2.74, 0.312],
+ [-0.379, 2.781],
+ [-2.754, -0.365],
+ [0.376, -2.729]
+ ],
+ "v": [
+ [0.565, -5.019],
+ [4.987, 0.595],
+ [-0.683, 4.969],
+ [-4.997, -0.631]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [984.998, 471.211], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 68",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 68,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.723, -0.407],
+ [0.465, -2.77],
+ [2.736, 0.468],
+ [-0.457, 2.711]
+ ],
+ "o": [
+ [2.771, 0.413],
+ [-0.467, 2.77],
+ [-2.738, -0.469],
+ [0.457, -2.713]
+ ],
+ "v": [
+ [0.816, -4.995],
+ [4.962, 0.767],
+ [-0.841, 4.934],
+ [-4.97, -0.824]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [981.87, 493.143], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 69",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 69,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.729, -0.52],
+ [0.563, -2.756],
+ [2.715, 0.585],
+ [-0.55, 2.69]
+ ],
+ "o": [
+ [2.728, 0.521],
+ [-0.564, 2.756],
+ [-2.714, -0.583],
+ [0.549, -2.692]
+ ],
+ "v": [
+ [1.002, -4.963],
+ [4.922, 0.968],
+ [-1.015, 4.898],
+ [-4.935, -1.031]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [977.915, 514.931], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 70",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 70,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.701, -0.648],
+ [0.73, -2.725],
+ [2.679, 0.729],
+ [-0.709, 2.644]
+ ],
+ "o": [
+ [2.7, 0.649],
+ [-0.729, 2.725],
+ [-2.679, -0.731],
+ [0.709, -2.645]
+ ],
+ "v": [
+ [1.292, -4.902],
+ [4.861, 1.208],
+ [-1.313, 4.822],
+ [-4.882, -1.288]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [972.768, 536.467], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 71",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 71,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.691, -0.81],
+ [0.879, -2.679],
+ [2.634, 0.881],
+ [-0.933, 2.572]
+ ],
+ "o": [
+ [2.628, 0.789],
+ [-0.96, 2.656],
+ [-2.634, -0.882],
+ [0.853, -2.598]
+ ],
+ "v": [
+ [1.402, -4.821],
+ [4.821, 1.537],
+ [-1.687, 4.75],
+ [-4.767, -1.502]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [966.927, 557.776], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 72",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 72,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.609, -0.954],
+ [0.962, -2.655],
+ [2.577, 1.036],
+ [-0.93, 2.572]
+ ],
+ "o": [
+ [2.608, 0.953],
+ [-0.962, 2.655],
+ [-2.577, -1.036],
+ [0.932, -2.573]
+ ],
+ "v": [
+ [1.698, -4.773],
+ [4.679, 1.76],
+ [-1.73, 4.691],
+ [-4.712, -1.843]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [959.429, 578.657], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 73",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 73,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.547, -1.108],
+ [1.188, -2.562],
+ [2.508, 1.193],
+ [-1.151, 2.48]
+ ],
+ "o": [
+ [2.546, 1.108],
+ [-1.189, 2.564],
+ [-2.508, -1.193],
+ [1.151, -2.479]
+ ],
+ "v": [
+ [2.1, -4.608],
+ [4.558, 2.041],
+ [-2.137, 4.523],
+ [-4.595, -2.127]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [950.849, 599.05], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 74",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 74,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.425, -1.238],
+ [1.443, -2.433],
+ [2.429, 1.347],
+ [-1.363, 2.369]
+ ],
+ "o": [
+ [2.521, 1.29],
+ [-1.409, 2.452],
+ [-2.428, -1.346],
+ [1.399, -2.35]
+ ],
+ "v": [
+ [2.38, -4.441],
+ [4.399, 2.333],
+ [-2.548, 4.332],
+ [-4.479, -2.395]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [941.248, 618.97], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 75",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 75,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.389, -1.417],
+ [1.41, -2.45],
+ [2.392, 1.531],
+ [-1.355, 2.373]
+ ],
+ "o": [
+ [2.389, 1.417],
+ [-1.403, 2.454],
+ [-2.286, -1.464],
+ [1.36, -2.371]
+ ],
+ "v": [
+ [2.48, -4.406],
+ [4.253, 2.597],
+ [-2.583, 4.292],
+ [-4.308, -2.68]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [930.202, 638.181], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 76",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 76,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.295, -1.564],
+ [1.615, -2.321],
+ [2.241, 1.641],
+ [-1.558, 2.245]
+ ],
+ "o": [
+ [2.295, 1.564],
+ [-1.612, 2.32],
+ [-2.24, -1.641],
+ [1.559, -2.244]
+ ],
+ "v": [
+ [2.844, -4.172],
+ [4.077, 2.865],
+ [-2.901, 4.095],
+ [-4.135, -2.942]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [917.883, 656.564], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 77",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 77,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.191, -1.705],
+ [1.8, -2.178],
+ [2.135, 1.777],
+ [-1.74, 2.106]
+ ],
+ "o": [
+ [2.192, 1.705],
+ [-1.8, 2.178],
+ [-2.135, -1.777],
+ [1.743, -2.108]
+ ],
+ "v": [
+ [3.177, -3.915],
+ [3.888, 3.117],
+ [-3.236, 3.844],
+ [-3.948, -3.188]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [904.577, 674.238], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 78",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 78,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-2.092, -1.844],
+ [2.023, -1.974],
+ [2.024, 1.903],
+ [-1.906, 1.961]
+ ],
+ "o": [
+ [2.075, 1.831],
+ [-1.967, 2.027],
+ [-2.023, -1.904],
+ [1.965, -1.911]
+ ],
+ "v": [
+ [3.315, -3.701],
+ [3.659, 3.418],
+ [-3.565, 3.642],
+ [-3.776, -3.356]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [890.332, 691.091], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 79",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 79,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.971, -1.958],
+ [1.969, -2.024],
+ [1.945, 2.057],
+ [-1.897, 1.97]
+ ],
+ "o": [
+ [1.97, 1.957],
+ [-1.96, 2.033],
+ [-1.869, -1.981],
+ [1.906, -1.964]
+ ],
+ "v": [
+ [3.476, -3.643],
+ [3.479, 3.568],
+ [-3.578, 3.536],
+ [-3.542, -3.634]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [874.876, 707.041], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 80",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 80,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.854, -2.067],
+ [2.115, -1.868],
+ [1.791, 2.123],
+ [-2.052, 1.814]
+ ],
+ "o": [
+ [1.854, 2.068],
+ [-2.114, 1.867],
+ [-1.79, -2.123],
+ [2.05, -1.813]
+ ],
+ "v": [
+ [3.739, -3.361],
+ [3.268, 3.768],
+ [-3.803, 3.306],
+ [-3.331, -3.822]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [858.509, 721.937], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 81",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 81,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.736, -2.167],
+ [2.24, -1.711],
+ [1.674, 2.217],
+ [-2.178, 1.662]
+ ],
+ "o": [
+ [1.736, 2.168],
+ [-2.239, 1.712],
+ [-1.675, -2.215],
+ [2.179, -1.663]
+ ],
+ "v": [
+ [3.97, -3.08],
+ [3.057, 3.943],
+ [-4.03, 3.029],
+ [-3.12, -3.993]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [841.419, 735.996], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 82",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 82,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.594, -2.221],
+ [2.362, -1.534],
+ [1.559, 2.299],
+ [-2.287, 1.514]
+ ],
+ "o": [
+ [1.645, 2.292],
+ [-2.347, 1.558],
+ [-1.558, -2.299],
+ [2.303, -1.494]
+ ],
+ "v": [
+ [4.132, -2.869],
+ [2.854, 4.092],
+ [-4.219, 2.748],
+ [-2.901, -4.156]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [823.657, 749.227], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 83",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 83,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.506, -2.335],
+ [2.348, -1.555],
+ [1.446, 2.373],
+ [-2.256, 1.563]
+ ],
+ "o": [
+ [1.506, 2.333],
+ [-2.319, 1.605],
+ [-1.445, -2.371],
+ [2.286, -1.517]
+ ],
+ "v": [
+ [4.199, -2.824],
+ [2.674, 4.216],
+ [-4.259, 2.627],
+ [-2.668, -4.304]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [805.172, 761.473], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 84",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 84,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.395, -2.402],
+ [2.437, -1.406],
+ [1.337, 2.436],
+ [-2.378, 1.372]
+ ],
+ "o": [
+ [1.396, 2.401],
+ [-2.437, 1.404],
+ [-1.336, -2.434],
+ [2.379, -1.372]
+ ],
+ "v": [
+ [4.33, -2.531],
+ [2.444, 4.363],
+ [-4.39, 2.497],
+ [-2.502, -4.396]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [786.118, 772.665], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 85",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 85,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.286, -2.46],
+ [2.513, -1.262],
+ [1.231, 2.489],
+ [-2.456, 1.234]
+ ],
+ "o": [
+ [1.287, 2.462],
+ [-2.512, 1.261],
+ [-1.231, -2.49],
+ [2.457, -1.233]
+ ],
+ "v": [
+ [4.469, -2.273],
+ [2.252, 4.469],
+ [-4.526, 2.246],
+ [-2.308, -4.496]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [766.601, 783.109], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 86",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 86,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.182, -2.513],
+ [2.573, -1.126],
+ [1.129, 2.536],
+ [-2.521, 1.101]
+ ],
+ "o": [
+ [1.183, 2.514],
+ [-2.573, 1.125],
+ [-1.13, -2.537],
+ [2.52, -1.102]
+ ],
+ "v": [
+ [4.585, -2.028],
+ [2.067, 4.561],
+ [-4.638, 2.005],
+ [-2.12, -4.584]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [746.697, 792.804], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 87",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 87,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-1.085, -2.557],
+ [2.573, -1.124],
+ [1.02, 2.546],
+ [-2.5, 1.153]
+ ],
+ "o": [
+ [1.085, 2.558],
+ [-2.554, 1.175],
+ [-1.046, -2.609],
+ [2.519, -1.102]
+ ],
+ "v": [
+ [4.619, -2.053],
+ [1.922, 4.614],
+ [-4.657, 1.85],
+ [-1.907, -4.687]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [726.373, 801.7], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 88",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 88,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.989, -2.595],
+ [2.623, -0.996],
+ [0.94, 2.613],
+ [-2.573, 0.978]
+ ],
+ "o": [
+ [0.99, 2.595],
+ [-2.624, 0.995],
+ [-0.94, -2.614],
+ [2.574, -0.977]
+ ],
+ "v": [
+ [4.68, -1.796],
+ [1.723, 4.707],
+ [-4.73, 1.778],
+ [-1.772, -4.725]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [705.744, 809.635], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 89",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 89,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.898, -2.628],
+ [2.664, -0.876],
+ [0.853, 2.643],
+ [-2.617, 0.859]
+ ],
+ "o": [
+ [0.899, 2.627],
+ [-2.663, 0.876],
+ [-0.851, -2.643],
+ [2.618, -0.862]
+ ],
+ "v": [
+ [4.758, -1.579],
+ [1.563, 4.765],
+ [-4.806, 1.564],
+ [-1.609, -4.779]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [684.848, 816.952], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 90",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 90,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.812, -2.655],
+ [2.697, -0.762],
+ [0.769, 2.669],
+ [-2.654, 0.749]
+ ],
+ "o": [
+ [0.812, 2.657],
+ [-2.696, 0.763],
+ [-0.768, -2.67],
+ [2.652, -0.75]
+ ],
+ "v": [
+ [4.822, -1.377],
+ [1.409, 4.814],
+ [-4.865, 1.362],
+ [-1.451, -4.828]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [663.741, 823.645], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 91",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 91,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.73, -2.681],
+ [2.698, -0.761],
+ [0.68, 2.662],
+ [-2.646, 0.772]
+ ],
+ "o": [
+ [0.73, 2.679],
+ [-2.69, 0.785],
+ [-0.695, -2.719],
+ [2.653, -0.75]
+ ],
+ "v": [
+ [4.843, -1.386],
+ [1.281, 4.845],
+ [-4.878, 1.225],
+ [-1.284, -4.88]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [642.41, 829.679], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 92",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 92,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.651, -2.7],
+ [2.724, -0.656],
+ [0.61, 2.71],
+ [-2.682, 0.648]
+ ],
+ "o": [
+ [0.652, 2.699],
+ [-2.724, 0.656],
+ [-0.611, -2.709],
+ [2.681, -0.645]
+ ],
+ "v": [
+ [4.872, -1.185],
+ [1.122, 4.893],
+ [-4.913, 1.173],
+ [-1.162, -4.904]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [620.918, 834.919], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 93",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 93,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.576, -2.717],
+ [2.744, -0.557],
+ [0.538, 2.726],
+ [-2.705, 0.549]
+ ],
+ "o": [
+ [0.576, 2.717],
+ [-2.743, 0.556],
+ [-0.536, -2.725],
+ [2.704, -0.549]
+ ],
+ "v": [
+ [4.913, -1.004],
+ [0.987, 4.924],
+ [-4.953, 0.998],
+ [-1.026, -4.931]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [599.284, 839.631], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 94",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 94,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.503, -2.731],
+ [2.76, -0.464],
+ [0.466, 2.738],
+ [-2.721, 0.457]
+ ],
+ "o": [
+ [0.504, 2.731],
+ [-2.76, 0.463],
+ [-0.466, -2.738],
+ [2.724, -0.457]
+ ],
+ "v": [
+ [4.945, -0.837],
+ [0.858, 4.949],
+ [-4.982, 0.83],
+ [-0.898, -4.955]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [577.54, 843.817], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 95",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 95,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.434, -2.745],
+ [2.76, -0.458],
+ [0.398, 2.749],
+ [-2.738, 0.371]
+ ],
+ "o": [
+ [0.434, 2.741],
+ [-2.772, 0.376],
+ [-0.397, -2.749],
+ [2.723, -0.452]
+ ],
+ "v": [
+ [4.958, -0.793],
+ [0.745, 5.01],
+ [-4.995, 0.714],
+ [-0.758, -4.935]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [555.688, 847.44], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 96",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 96,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.367, -2.753],
+ [2.773, -0.376],
+ [0.331, 2.757],
+ [-2.736, 0.371]
+ ],
+ "o": [
+ [0.367, 2.753],
+ [-2.772, 0.375],
+ [-0.331, -2.759],
+ [2.736, -0.37]
+ ],
+ "v": [
+ [4.97, -0.678],
+ [0.614, 4.987],
+ [-5.005, 0.674],
+ [-0.649, -4.992]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [533.755, 850.453], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 97",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 97,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.302, -2.76],
+ [2.782, -0.291],
+ [0.266, 2.764],
+ [-2.747, 0.29]
+ ],
+ "o": [
+ [0.3, 2.762],
+ [-2.782, 0.293],
+ [-0.267, -2.765],
+ [2.747, -0.289]
+ ],
+ "v": [
+ [4.989, -0.528],
+ [0.497, 5],
+ [-5.022, 0.524],
+ [-0.531, -5.004]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [511.751, 852.944], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 98",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 98,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.237, -2.767],
+ [2.789, -0.212],
+ [0.204, 2.77],
+ [-2.753, 0.21]
+ ],
+ "o": [
+ [0.238, 2.768],
+ [-2.787, 0.213],
+ [-0.202, -2.77],
+ [2.754, -0.21]
+ ],
+ "v": [
+ [5.001, -0.385],
+ [0.38, 5.011],
+ [-5.037, 0.382],
+ [-0.417, -5.015]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [489.701, 854.958], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 99",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 99,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.174, -2.771],
+ [2.794, -0.138],
+ [0.14, 2.775],
+ [-2.759, 0.134]
+ ],
+ "o": [
+ [0.175, 2.771],
+ [-2.793, 0.137],
+ [-0.141, -2.772],
+ [2.76, -0.136]
+ ],
+ "v": [
+ [5.01, -0.247],
+ [0.268, 5.021],
+ [-5.044, 0.245],
+ [-0.302, -5.021]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [467.611, 856.492], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 100",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 100,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.113, -2.79],
+ [2.795, -0.062],
+ [0.079, 2.776],
+ [-2.762, 0.061]
+ ],
+ "o": [
+ [0.111, 2.759],
+ [-2.796, 0.065],
+ [-0.078, -2.776],
+ [2.762, -0.063]
+ ],
+ "v": [
+ [5.014, -0.211],
+ [0.158, 5.024],
+ [-5.047, 0.114],
+ [-0.186, -5.026]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [445.489, 857.54], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 101",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 101,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [-0.048, -2.777],
+ [2.796, -0.063],
+ [0.016, 2.755],
+ [-2.762, 0.091]
+ ],
+ "o": [
+ [0.049, 2.776],
+ [-2.796, 0.09],
+ [-0.016, -2.798],
+ [2.763, -0.063]
+ ],
+ "v": [
+ [5.016, -0.128],
+ [0.043, 5.016],
+ [-5.048, 0.021],
+ [-0.075, -5.042]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [423.351, 858.055], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 102",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 102,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.014, -2.777],
+ [2.797, 0.007],
+ [-0.051, 2.796],
+ [-2.762, -0.004]
+ ],
+ "o": [
+ [-0.015, 2.778],
+ [-2.797, -0.004],
+ [0.047, -2.758],
+ [2.763, 0.009]
+ ],
+ "v": [
+ [5.051, 0.013],
+ [-0.04, 5.028],
+ [-5.014, -0.036],
+ [0.074, -5.031]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [401.173, 858.026], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 103",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 103,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.08, -2.777],
+ [2.797, 0.079],
+ [-0.115, 2.775],
+ [-2.761, -0.078]
+ ],
+ "o": [
+ [-0.079, 2.775],
+ [-2.796, -0.079],
+ [0.116, -2.775],
+ [2.761, 0.078]
+ ],
+ "v": [
+ [5.048, 0.143],
+ [-0.16, 5.026],
+ [-5.014, -0.143],
+ [0.195, -5.026]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [379.035, 857.505], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 104",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 104,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.149, -2.773],
+ [2.795, 0.15],
+ [-0.188, 2.771],
+ [-2.756, -0.149]
+ ],
+ "o": [
+ [-0.15, 2.774],
+ [-2.794, -0.151],
+ [0.187, -2.771],
+ [2.757, 0.148]
+ ],
+ "v": [
+ [5.045, 0.27],
+ [-0.286, 5.019],
+ [-5.006, -0.272],
+ [0.324, -5.02]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [356.916, 856.451], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 105",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 105,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.225, -2.769],
+ [2.792, 0.225],
+ [-0.269, 2.782],
+ [-2.751, -0.21]
+ ],
+ "o": [
+ [-0.225, 2.769],
+ [-2.793, -0.213],
+ [0.266, -2.747],
+ [2.749, 0.222]
+ ],
+ "v": [
+ [5.038, 0.396],
+ [-0.424, 5.002],
+ [-4.993, -0.438],
+ [0.466, -5.017]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [334.831, 854.825], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 106",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 106,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.311, -2.76],
+ [2.788, 0.303],
+ [-0.362, 2.739],
+ [-2.734, -0.316]
+ ],
+ "o": [
+ [-0.311, 2.762],
+ [-2.787, -0.321],
+ [0.367, -2.768],
+ [2.74, 0.296]
+ ],
+ "v": [
+ [5.022, 0.547],
+ [-0.589, 4.998],
+ [-4.971, -0.654],
+ [0.625, -4.985]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [312.806, 852.538], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 107",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 107,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.411, -2.729],
+ [2.774, 0.51],
+ [-0.487, 2.734],
+ [-2.7, -0.47]
+ ],
+ "o": [
+ [-0.417, 2.763],
+ [-2.777, -0.481],
+ [0.489, -2.734],
+ [2.695, 0.496]
+ ],
+ "v": [
+ [5.002, 0.79],
+ [-0.781, 4.941],
+ [-4.925, -0.882],
+ [0.849, -4.982]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [290.871, 849.433], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 108",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 108,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.563, -2.72],
+ [2.77, 0.599],
+ [-0.671, 2.722],
+ [-2.666, -0.559]
+ ],
+ "o": [
+ [-0.563, 2.72],
+ [-2.775, -0.583],
+ [0.66, -2.672],
+ [2.664, 0.573]
+ ],
+ "v": [
+ [4.969, 1.042],
+ [-1.066, 4.883],
+ [-4.861, -1.122],
+ [1.165, -4.923]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [269.114, 845.249], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 109",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 109,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.729, -2.68],
+ [2.707, 0.787],
+ [-0.805, 2.659],
+ [-2.631, -0.765]
+ ],
+ "o": [
+ [-0.729, 2.68],
+ [-2.707, -0.787],
+ [0.805, -2.658],
+ [2.632, 0.765]
+ ],
+ "v": [
+ [4.871, 1.394],
+ [-1.351, 4.823],
+ [-4.795, -1.418],
+ [1.427, -4.845]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [247.687, 839.713], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 110",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 110,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [0.874, -2.652],
+ [2.659, 0.936],
+ [-0.944, 2.612],
+ [-2.577, -0.93]
+ ],
+ "o": [
+ [-0.865, 2.623],
+ [-2.653, -0.955],
+ [0.945, -2.61],
+ [2.584, 0.909]
+ ],
+ "v": [
+ [4.791, 1.585],
+ [-1.628, 4.75],
+ [-4.721, -1.711],
+ [1.657, -4.756]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [226.589, 833.064], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 111",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 111,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.01, -2.587],
+ [2.62, 1.044],
+ [-1.092, 2.569],
+ [-2.555, -0.987]
+ ],
+ "o": [
+ [-1.01, 2.587],
+ [-2.63, -1.018],
+ [1.081, -2.543],
+ [2.545, 1.012]
+ ],
+ "v": [
+ [4.707, 1.833],
+ [-1.867, 4.629],
+ [-4.625, -1.938],
+ [1.928, -4.685]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [205.855, 825.275], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 112",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 112,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.153, -2.526],
+ [2.547, 1.221],
+ [-1.233, 2.489],
+ [-2.467, -1.183]
+ ],
+ "o": [
+ [-1.152, 2.527],
+ [-2.545, -1.221],
+ [1.233, -2.489],
+ [2.466, 1.183]
+ ],
+ "v": [
+ [4.578, 2.158],
+ [-2.12, 4.523],
+ [-4.497, -2.196],
+ [2.201, -4.56]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [185.591, 816.326], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 113",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 113,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.311, -2.465],
+ [2.471, 1.372],
+ [-1.385, 2.407],
+ [-2.366, -1.361]
+ ],
+ "o": [
+ [-1.296, 2.439],
+ [-2.452, -1.409],
+ [1.387, -2.406],
+ [2.389, 1.327]
+ ],
+ "v": [
+ [4.439, 2.364],
+ [-2.434, 4.396],
+ [-4.365, -2.514],
+ [2.432, -4.407]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [165.913, 806.244], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 114",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 114,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.46, -2.363],
+ [2.396, 1.509],
+ [-1.559, 2.324],
+ [-2.327, -1.425]
+ ],
+ "o": [
+ [-1.459, 2.362],
+ [-2.414, -1.481],
+ [1.535, -2.289],
+ [2.309, 1.455]
+ ],
+ "v": [
+ [4.29, 2.641],
+ [-2.69, 4.187],
+ [-4.192, -2.777],
+ [2.753, -4.271]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [146.885, 794.907], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 115",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 115,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.624, -2.252],
+ [2.26, 1.715],
+ [-1.718, 2.183],
+ [-2.167, -1.645]
+ ],
+ "o": [
+ [-1.625, 2.253],
+ [-2.261, -1.716],
+ [1.718, -2.182],
+ [2.168, 1.646]
+ ],
+ "v": [
+ [4.056, 3.009],
+ [-2.98, 3.982],
+ [-3.962, -3.078],
+ [3.073, -4.052]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [128.711, 782.24], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 116",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 116,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.826, -2.142],
+ [2.072, 1.952],
+ [-1.898, 2.027],
+ [-1.989, -1.845]
+ ],
+ "o": [
+ [-1.778, 2.087],
+ [-2.089, -1.935],
+ [1.898, -2.028],
+ [1.972, 1.863]
+ ],
+ "v": [
+ [3.784, 3.239],
+ [-3.368, 3.7],
+ [-3.712, -3.474],
+ [3.327, -3.807]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [111.628, 768.264], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 117",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 117,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [1.983, -1.944],
+ [1.984, 2.049],
+ [-2.052, 1.804],
+ [-1.922, -1.911]
+ ],
+ "o": [
+ [-1.984, 1.943],
+ [-2.019, -2.015],
+ [2.118, -1.867],
+ [1.885, 1.944]
+ ],
+ "v": [
+ [3.57, 3.639],
+ [-3.615, 3.45],
+ [-3.299, -3.715],
+ [3.748, -3.402]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [95.71, 752.712], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 118",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 118,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.17, -1.734],
+ [1.736, 2.274],
+ [-2.279, 1.61],
+ [-1.634, -2.146]
+ ],
+ "o": [
+ [-2.169, 1.733],
+ [-1.733, -2.277],
+ [2.256, -1.596],
+ [1.638, 2.144]
+ ],
+ "v": [
+ [3.101, 3.934],
+ [-3.972, 2.956],
+ [-3, -4.071],
+ [4.067, -3.089]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [81.537, 735.822], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 119",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 119,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.312, -1.455],
+ [1.438, 2.485],
+ [-2.442, 1.323],
+ [-1.337, -2.332]
+ ],
+ "o": [
+ [-2.389, 1.502],
+ [-1.427, -2.491],
+ [2.443, -1.321],
+ [1.344, 2.329]
+ ],
+ "v": [
+ [2.564, 4.27],
+ [-4.301, 2.453],
+ [-2.462, -4.451],
+ [4.384, -2.622]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [69.274, 717.429], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 120",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 120,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.571, -1.199],
+ [1.002, 2.701],
+ [-2.592, 0.997],
+ [-0.984, -2.494]
+ ],
+ "o": [
+ [-2.461, 1.151],
+ [-1.06, -2.675],
+ [2.592, -0.998],
+ [0.925, 2.522]
+ ],
+ "v": [
+ [2.134, 4.556],
+ [-4.559, 1.943],
+ [-1.783, -4.71],
+ [4.694, -2.002]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [59.252, 697.636], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 121",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 121,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.648, -0.836],
+ [0.851, 2.75],
+ [-2.658, 0.631],
+ [-0.779, -2.563]
+ ],
+ "o": [
+ [-2.648, 0.838],
+ [-0.831, -2.757],
+ [2.745, -0.657],
+ [0.796, 2.558]
+ ],
+ "v": [
+ [1.509, 4.753],
+ [-4.829, 1.289],
+ [-1.193, -4.935],
+ [4.865, -1.394]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [51.974, 676.78], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 122",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 122,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.736, -0.475],
+ [0.416, 2.85],
+ [-2.762, 0.279],
+ [-0.39, -2.653]
+ ],
+ "o": [
+ [-2.736, 0.476],
+ [-0.416, -2.849],
+ [2.764, -0.28],
+ [0.388, 2.651]
+ ],
+ "v": [
+ [0.742, 4.882],
+ [-4.969, 0.586],
+ [-0.715, -5.077],
+ [4.997, -0.781]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [47.592, 655.141], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 123",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 123,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.73, -0.113],
+ [-0.081, 2.872],
+ [-2.776, -0.071],
+ [0.03, -2.687]
+ ],
+ "o": [
+ [-2.821, 0.114],
+ [0.029, -2.871],
+ [2.776, 0.071],
+ [-0.083, 2.689]
+ ],
+ "v": [
+ [0.076, 5.01],
+ [-5.003, 0.017],
+ [0.079, -5.053],
+ [5.055, -0.058]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [45.993, 633.002], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 124",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 124,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.769, 0.225],
+ [-0.251, 2.856],
+ [-2.702, -0.386],
+ [0.151, -2.692]
+ ],
+ "o": [
+ [-2.769, -0.224],
+ [0.172, -2.865],
+ [2.797, 0.399],
+ [-0.231, 2.683]
+ ],
+ "v": [
+ [-0.386, 5.082],
+ [-4.947, -0.495],
+ [0.692, -4.921],
+ [5.047, 0.631]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [47.12, 610.815], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 125",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 125,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.726, 0.531],
+ [-0.655, 2.778],
+ [-2.694, -0.676],
+ [0.621, -2.633]
+ ],
+ "o": [
+ [-2.726, -0.531],
+ [0.653, -2.778],
+ [2.693, 0.676],
+ [-0.621, 2.633]
+ ],
+ "v": [
+ [-1.137, 4.971],
+ [-4.891, -1.021],
+ [1.171, -4.826],
+ [4.925, 1.166]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [50.885, 589.001], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 126",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 126,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.663, 0.792],
+ [-0.84, 2.72],
+ [-2.665, -0.935],
+ [0.795, -2.593]
+ ],
+ "o": [
+ [-2.662, -0.792],
+ [0.836, -2.722],
+ [2.577, 0.904],
+ [-0.797, 2.592]
+ ],
+ "v": [
+ [-1.46, 4.874],
+ [-4.761, -1.486],
+ [1.544, -4.731],
+ [4.806, 1.615]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [56.727, 567.663], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 127",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 127,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [2.605, 1.022],
+ [-1.094, 2.616],
+ [-2.541, -1.121],
+ [1.121, -2.484]
+ ],
+ "o": [
+ [-2.565, -1.009],
+ [1.163, -2.584],
+ [2.541, 1.12],
+ [-1.05, 2.511]
+ ],
+ "v": [
+ [-1.843, 4.688],
+ [-4.654, -1.94],
+ [2.053, -4.589],
+ [4.626, 1.939]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.10196078431372549, 0.10196078431372549, 0.3686274509803922,
+ 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [64.402, 546.952], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 128",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 128,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ },
+ {
+ "ty": "gr",
+ "it": [
+ {
+ "ind": 0,
+ "ty": "sh",
+ "ix": 1,
+ "ks": {
+ "a": 0,
+ "k": {
+ "i": [
+ [63.705, -129.128],
+ [-132.552, -31.537],
+ [-79.06, 347.964],
+ [177.327, 14.937],
+ [123.2, -50.438]
+ ],
+ "o": [
+ [-84.887, 172.066],
+ [132.549, 31.545],
+ [40.758, -179.378],
+ [-177.322, -14.945],
+ [-123.195, 50.438]
+ ],
+ "v": [
+ [-427.067, 93.267],
+ [-234.566, 399.269],
+ [471.196, 87.191],
+ [291.281, -420.21],
+ [-59.43, -89.468]
+ ],
+ "c": true
+ },
+ "ix": 2
+ },
+ "nm": "Path 1",
+ "mn": "ADBE Vector Shape - Group",
+ "hd": false
+ },
+ {
+ "ty": "fl",
+ "c": {
+ "a": 0,
+ "k": [
+ 0.6039215686274509, 0.6039215686274509, 0.8901960784313725, 1
+ ],
+ "ix": 4
+ },
+ "o": { "a": 0, "k": 100, "ix": 5 },
+ "r": 1,
+ "bm": 0,
+ "nm": "Fill 1",
+ "mn": "ADBE Vector Graphic - Fill",
+ "hd": false
+ },
+ {
+ "ty": "tr",
+ "p": { "a": 0, "k": [512.204, 460.414], "ix": 2 },
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
+ "r": { "a": 0, "k": 0, "ix": 6 },
+ "o": { "a": 0, "k": 100, "ix": 7 },
+ "sk": { "a": 0, "k": 0, "ix": 4 },
+ "sa": { "a": 0, "k": 0, "ix": 5 },
+ "nm": "Transform"
+ }
+ ],
+ "nm": "Group 129",
+ "np": 2,
+ "cix": 2,
+ "bm": 0,
+ "ix": 129,
+ "mn": "ADBE Vector Group",
+ "hd": false
+ }
+ ],
+ "ip": 0,
+ "op": 301,
+ "st": 0,
+ "bm": 0
+ }
+ ],
+ "markers": []
+}
diff --git a/public/svg/Vercel.svg b/public/svg/Vercel.svg
new file mode 100644
index 0000000..6cd3196
--- /dev/null
+++ b/public/svg/Vercel.svg
@@ -0,0 +1 @@
+Vercel
\ No newline at end of file
diff --git a/release.config.js b/release.config.js
new file mode 100644
index 0000000..80fac2a
--- /dev/null
+++ b/release.config.js
@@ -0,0 +1,6 @@
+// eslint-disable-next-line @typescript-eslint/no-var-requires
+const { releasercConfig } = require('@fairdataihub/config');
+
+const config = releasercConfig('default', 'EyeACT', 'eyeactstudy.org', false);
+
+module.exports = config;
diff --git a/src/__tests__/pages/404.test.tsx b/src/__tests__/pages/404.test.tsx
new file mode 100644
index 0000000..5660f13
--- /dev/null
+++ b/src/__tests__/pages/404.test.tsx
@@ -0,0 +1,15 @@
+import { render, screen } from '@testing-library/react';
+import '@types/jest';
+import '@testing-library/jest-dom/extend-expect';
+
+import NotFoundPage from '@/pages/404';
+
+describe('404', () => {
+ it('renders a heading', () => {
+ render( );
+
+ const heading = screen.getByText(/not found/i);
+
+ expect(heading).toBeInTheDocument();
+ });
+});
diff --git a/src/assets/data/authors.json b/src/assets/data/authors.json
new file mode 100644
index 0000000..dcfbbf3
--- /dev/null
+++ b/src/assets/data/authors.json
@@ -0,0 +1,16 @@
+{
+ "BhaveshPatel": {
+ "name": "Bhavesh Patel",
+ "href": "/team/#Bhavesh-Patel",
+ "external": false,
+ "avatar": "/images/people/bhavesh-head.jpg",
+ "social": "bvhpatel"
+ },
+ "SanjaySoundarajan": {
+ "name": "Sanjay Soundarajan",
+ "href": "/team/#Sanjay-Soundarajan",
+ "external": false,
+ "avatar": "/images/people/sanjay-head.jpg",
+ "social": "megasanjay"
+ }
+}
diff --git a/src/components/NextImage.tsx b/src/components/NextImage.tsx
new file mode 100644
index 0000000..3809728
--- /dev/null
+++ b/src/components/NextImage.tsx
@@ -0,0 +1,58 @@
+import Image, { ImageProps } from 'next/image';
+import * as React from 'react';
+
+import clsxm from '@/lib/clsxm';
+
+type NextImageProps = {
+ useSkeleton?: boolean;
+ imgClassName?: string;
+ blurClassName?: string;
+ alt: string;
+} & (
+ | { width: string | number; height: string | number }
+ | { layout: 'fill'; width?: string | number; height?: string | number }
+) &
+ ImageProps;
+
+/**
+ *
+ * @description Must set width using `w-` className
+ * @param useSkeleton add background with pulse animation, don't use it if image is transparent
+ */
+export default function NextImage({
+ useSkeleton = false,
+ src,
+ width,
+ height,
+ alt,
+ className,
+ imgClassName,
+ blurClassName,
+ ...rest
+}: NextImageProps) {
+ const [status, setStatus] = React.useState(
+ useSkeleton ? 'loading' : 'complete',
+ );
+
+ const widthIsSet = className?.includes('w-') ?? false;
+
+ return (
+
+ setStatus('complete')}
+ {...rest}
+ />
+
+ );
+}
diff --git a/src/components/Seo.tsx b/src/components/Seo.tsx
new file mode 100644
index 0000000..22de426
--- /dev/null
+++ b/src/components/Seo.tsx
@@ -0,0 +1,132 @@
+import Head from 'next/head';
+import { useRouter } from 'next/router';
+
+const defaultMeta = {
+ title:
+ 'Artificial Intelligence Ready and Equitable Atlas for Diabetes Insights',
+ siteName: 'AI-READI',
+ description:
+ 'Generating a flagship AI-ready and ethically-sourced dataset to support future AI-driven discoveries in diabetes',
+ url: 'https://aireadi.org',
+ type: 'website',
+ robots: 'follow, index',
+ image:
+ 'https://kalai.fairdataihub.org/api/generate?app=ai-readi&title=Generating%20a%20flagship%20AI-ready%20and%20ethically-sourced%20dataset%20to%20support%20future%20AI-driven%20discoveries%20in%20diabetes&org=ai-readi&description=',
+};
+
+type SeoProps = {
+ date?: string;
+ templateTitle?: string;
+ templateDescription?: string;
+ templateImage?: string;
+} & Partial;
+
+export default function Seo(props: SeoProps) {
+ const router = useRouter();
+
+ const meta = {
+ ...defaultMeta,
+ ...props,
+ };
+
+ meta['title'] = props.templateTitle
+ ? `${props.templateTitle} | ${meta.siteName}`
+ : meta.title;
+
+ meta['description'] = props.templateDescription || meta.description;
+
+ meta['image'] =
+ `https://kalai.fairdataihub.org/api/generate?app=ai-readi&title=${encodeURIComponent(
+ meta.title,
+ )}&org=ai-readi&description=${encodeURIComponent(meta.description)}`;
+
+ return (
+
+ {meta.title}
+
+
+
+
+
+ {/* Open Graph */}
+
+
+
+
+
+
+ {/* Twitter */}
+
+
+
+
+
+
+ {meta.date && (
+ <>
+
+
+
+ >
+ )}
+
+ {/* Favicons */}
+ {favicons.map((linkProps) => (
+
+ ))}
+
+
+
+ );
+}
+
+type Favicons = {
+ rel: string;
+ href: string;
+ sizes?: string;
+ color?: string;
+ type?: string;
+};
+
+const favicons: Array = [
+ {
+ rel: 'apple-touch-icon',
+ sizes: '180x180',
+ href: '/favicon/apple-touch-icon.png',
+ },
+ {
+ rel: 'icon',
+ type: 'image/png',
+ sizes: '192x192',
+ href: '/favicon/android-chrome-192x192.png',
+ },
+ {
+ rel: 'icon',
+ type: 'image/png',
+ sizes: '32x32',
+ href: '/favicon/favicon-32x32.png',
+ },
+ {
+ rel: 'icon',
+ type: 'image/png',
+ sizes: '16x16',
+ href: '/favicon/favicon-16x16.png',
+ },
+ {
+ rel: 'mask-icon',
+ href: '/favicon/safari-pinned-tab.svg',
+ color: '#5bbad5',
+ },
+ {
+ rel: 'manifest',
+ href: '/favicon/site.webmanifest',
+ },
+];
diff --git a/src/components/Skeleton.tsx b/src/components/Skeleton.tsx
new file mode 100644
index 0000000..682e895
--- /dev/null
+++ b/src/components/Skeleton.tsx
@@ -0,0 +1,20 @@
+import * as React from 'react';
+
+import clsxm from '@/lib/clsxm';
+
+type SkeletonProps = React.ComponentPropsWithoutRef<'div'>;
+
+export default function Skeleton({ className, ...rest }: SkeletonProps) {
+ return (
+
+ );
+}
diff --git a/src/components/Viz.jsx b/src/components/Viz.jsx
new file mode 100644
index 0000000..df51293
--- /dev/null
+++ b/src/components/Viz.jsx
@@ -0,0 +1,247 @@
+import * as d3 from 'd3';
+import { useEffect, useRef, useState } from 'react';
+
+import VIZ_JSON from '~/data/viz.json';
+
+const vizOptions = [
+ { value: 'state-def', label: 'Default' },
+ { value: 'state-group', label: 'T2DM Status' },
+ { value: 'state-age', label: 'Decade' },
+ { value: 'state-site', label: 'Site' },
+ { value: 'state-split', label: 'Splits' },
+ { value: 'state-Clinical', label: 'Clinical' },
+ { value: 'state-ECG', label: 'ECG' },
+ { value: 'state-FLIO', label: 'FLIO' },
+ { value: 'state-OCT', label: 'OCT' },
+ { value: 'state-OCTA', label: 'OCTA' },
+ { value: 'state-CFP', label: 'CFP' },
+];
+
+const VizComponent = () => {
+ const canvasRef = useRef(null);
+ const containerRef = useRef(null);
+ const [dimensions, setDimensions] = useState({ width: 1424, height: 900 });
+
+ useEffect(() => {
+ // Resize handler
+ const handleResize = () => {
+ if (containerRef.current) {
+ const containerWidth = containerRef.current.clientWidth;
+ const newHeight = Math.min(
+ containerWidth * 0.6,
+ window.innerHeight * 0.7,
+ );
+ setDimensions({
+ width: containerWidth,
+ height: newHeight,
+ });
+ }
+ };
+
+ // Initial resize
+ handleResize();
+
+ // Add resize listener
+ window.addEventListener('resize', handleResize);
+
+ // Cleanup listener
+ return () => window.removeEventListener('resize', handleResize);
+ }, []);
+
+ useEffect(() => {
+ const data = VIZ_JSON;
+ const { width, height } = dimensions;
+
+ const getSelectedStateId = () => {
+ const selectedRadio = document.querySelector(
+ 'input[name="state"]:checked',
+ );
+ return selectedRadio ? selectedRadio.id : null;
+ }
+
+ const countUniqueValues = (data) => {
+ const uniqueCounts = {};
+
+ data.forEach((item) => {
+ Object.keys(item).forEach((key) => {
+ if (!uniqueCounts[key]) {
+ uniqueCounts[key] = new Set();
+ }
+ uniqueCounts[key].add(item[key]);
+ });
+ });
+
+ const result = {};
+ Object.keys(uniqueCounts).forEach((key) => {
+ result[key] = {};
+ const l = uniqueCounts[key].size;
+ uniqueCounts[key] = Array.from(uniqueCounts[key]).sort();
+ if (key == 'group') {
+ uniqueCounts[key] = [
+ 'Healthy',
+ 'Pre-T2DM',
+ 'Non-insulin T2DM',
+ 'Insulin T2DM',
+ ];
+ } else if (key == 'split') {
+ uniqueCounts[key] = ['train', 'val', 'test'];
+ }
+ const adjustedWidth = width * 0.85;
+ for (let i = 0; i < l; i++) {
+ result[key][uniqueCounts[key][i]] =
+ (i * adjustedWidth) / l +
+ adjustedWidth / (2 * l) -
+ adjustedWidth / 2;
+ }
+ });
+
+ return result;
+ }
+
+ (function (nodes = data) {
+ const nodeUniqes = countUniqueValues(nodes);
+
+ const xyforce = 0.039;
+ const alphatarget = 0.001;
+ const alphadecay = 0.01;
+ const forcecollide = 0.25;
+
+ const canvas = canvasRef.current;
+ canvas.width = width;
+ canvas.height = height;
+ const context = canvas.getContext('2d');
+ const color = d3.scaleOrdinal(d3.schemeTableau10);
+
+ const simulation = d3
+ .forceSimulation(nodes)
+ .alphaTarget(alphatarget)
+ .alphaDecay(alphadecay)
+ .force('x', d3.forceX().strength(xyforce))
+ .force('y', d3.forceY().strength(xyforce))
+ .force(
+ 'collide',
+ d3
+ .forceCollide()
+ .radius((d) => d.age + 1)
+ .iterations(3)
+ .strength(forcecollide),
+ )
+ .on('tick', ticked);
+
+ const updateTargetPositions = () => {
+ simulation.force(
+ 'x',
+ d3
+ .forceX(function (d, _i) {
+ const state = getSelectedStateId();
+ const k = state.split('-')[1];
+ if (state == 'state-def') {
+ return 0;
+ } else {
+ return nodeUniqes[k][d[k]];
+ }
+ })
+ .strength(xyforce),
+ );
+ simulation.force('y', d3.forceY(0).strength(xyforce));
+ simulation.alpha(1).restart();
+ }
+
+ // sourcery skip: avoid-function-declarations-in-blocks
+ function ticked() {
+ context.clearRect(0, 0, width, height);
+ context.save();
+ context.translate(width / 2, height / 2);
+ const state = getSelectedStateId();
+ if (state && state != 'state-def') {
+ const k = state.split('-')[1];
+ let mids = {};
+ for (let i = 0; i < nodes.length; ++i) {
+ const d = nodes[i];
+ if (!(d[k] in mids)) {
+ mids[d[k]] = [];
+ }
+ mids[d[k]].push(d.x);
+ }
+ Object.keys(mids).forEach((mk) => {
+ let avg = 0;
+ mids[mk].forEach((mkv) => (avg += mkv));
+ avg /= mids[mk].length;
+
+ context.lineWidth = 5;
+ context.setLineDash([15, 15]);
+ context.beginPath();
+ context.moveTo(avg, height / 2);
+ context.lineTo(avg, (-1 * height) / 2 + 100);
+ context.stroke();
+
+ context.font = `${Math.max(14, width * 0.015)}px Arial`;
+ context.textAlign = 'center';
+ context.textBaseline = 'bottom';
+ context.fillText(
+ `${mk} (${mids[mk].length})`,
+ avg,
+ (-1 * height) / 2 + 75,
+ );
+ });
+ } else {
+ context.font = `${Math.max(14, width * 0.015)}px Arial`;
+ context.textAlign = 'center';
+ context.textBaseline = 'bottom';
+ context.fillText('(n = 1067)', 0, (-1 * height) / 2 + 75);
+ }
+
+ for (let i = 0; i < nodes.length; ++i) {
+ const d = nodes[i];
+ context.beginPath();
+ context.moveTo(d.x + d.age, d.y);
+ context.arc(d.x, d.y, d.age - 1, 0, 2 * Math.PI);
+ context.fillStyle = color(d.group);
+ context.fill();
+ }
+ context.restore();
+ }
+
+ // Select all radio buttons with the name "state"
+ const radioButtons = document.querySelectorAll('input[name="state"]');
+
+ // Add event listeners to the buttons
+ radioButtons.forEach((radio) => {
+ radio.addEventListener('change', updateTargetPositions);
+ });
+ })();
+ }, [dimensions]);
+
+ return (
+
+ );
+};
+
+export default VizComponent;
diff --git a/src/components/blog/BlogPostsLayout.tsx b/src/components/blog/BlogPostsLayout.tsx
new file mode 100644
index 0000000..da692cf
--- /dev/null
+++ b/src/components/blog/BlogPostsLayout.tsx
@@ -0,0 +1,143 @@
+import { Divider } from '@chakra-ui/react';
+import dayjs from 'dayjs';
+import Image from 'next/image';
+import Link from 'next/link';
+
+interface PostItem {
+ slug: string;
+ timeToRead: number;
+
+ frontMatter: {
+ title: string;
+ date: string;
+ tags: string[];
+ subtitle: string;
+ categories: string[];
+ heroImage: string;
+ };
+}
+
+interface PostLayoutProps {
+ PostList: PostItem[];
+}
+
+const BlogPostsLayout: React.FC = ({ PostList }) => {
+ return (
+ <>
+
+
+ {PostList.length > 0 ? (
+
+
+
+
+ {PostList[0].frontMatter.categories[0]}
+
+
+
+
+
+ {PostList[0].frontMatter.title}
+
+
+
+
+ {PostList[0].frontMatter.subtitle}
+
+
+
+
+
+
+ {dayjs(PostList[0].frontMatter.date).format(`MMMM D, YYYY`)}
+
+
+
+ {PostList[0].timeToRead} min read
+
+
+
+
+
+
+ ) : null}
+
+ {PostList.length > 1 ? (
+ <>
+
+ {PostList.map((post) => (
+
+
+
+
+
+
+
+
+
+
+ {post.frontMatter.categories[0]}
+
+
+
+
+
+ {post.frontMatter.title}
+
+
+
+
+ {post.frontMatter.subtitle}
+
+
+
+
+ {dayjs(post.frontMatter.date).format(`MMMM D, YYYY`)}
+
+
+
+ {post.timeToRead} min read
+
+
+
+
+ ))}
+
+ >
+ ) : null}
+ >
+ );
+};
+
+export default BlogPostsLayout;
diff --git a/src/components/buttons/Button.tsx b/src/components/buttons/Button.tsx
new file mode 100644
index 0000000..8deae90
--- /dev/null
+++ b/src/components/buttons/Button.tsx
@@ -0,0 +1,108 @@
+import * as React from 'react';
+import { ImSpinner2 } from 'react-icons/im';
+
+import clsxm from '@/lib/clsxm';
+
+enum ButtonVariant {
+ 'primary',
+ 'outline',
+ 'ghost',
+ 'light',
+ 'dark',
+}
+
+type ButtonProps = {
+ isLoading?: boolean;
+ isDarkBg?: boolean;
+ variant?: keyof typeof ButtonVariant;
+} & React.ComponentPropsWithRef<'button'>;
+
+const Button = React.forwardRef(
+ (
+ {
+ children,
+ className,
+ disabled: buttonDisabled,
+ isLoading,
+ variant = 'primary',
+ isDarkBg = false,
+ ...rest
+ },
+ ref,
+ ) => {
+ const disabled = isLoading || buttonDisabled;
+
+ return (
+
+ {isLoading && (
+
+
+
+ )}
+ {children}
+
+ );
+ },
+);
+
+export default Button;
diff --git a/src/components/content/ContentHeadingDescription.tsx b/src/components/content/ContentHeadingDescription.tsx
new file mode 100644
index 0000000..f4dfa0b
--- /dev/null
+++ b/src/components/content/ContentHeadingDescription.tsx
@@ -0,0 +1,24 @@
+import Button from '@/components/buttons/Button';
+
+export default function ContentHeadingDescription({
+ title,
+ text,
+ showButtons = false,
+ primaryButton,
+}: TextContent) {
+ return (
+
+
+
+ {title}
+
+
{text}
+ {showButtons && (
+
+ {primaryButton && {primaryButton} }
+
+ )}
+
+
+ );
+}
diff --git a/src/components/content/ContentWithImages.tsx b/src/components/content/ContentWithImages.tsx
new file mode 100644
index 0000000..eca7e63
--- /dev/null
+++ b/src/components/content/ContentWithImages.tsx
@@ -0,0 +1,36 @@
+/* eslint-disable @next/next/no-img-element */
+export default function ContentWithImages({
+ title,
+ text,
+ image1,
+ image2,
+}: TextWithImagesContent) {
+ return (
+
+
+
+
+ {title}
+
+ {text.map((paragraph, index) => (
+
+ {paragraph}
+
+ ))}
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/components/content/FaqList.tsx b/src/components/content/FaqList.tsx
new file mode 100644
index 0000000..453e9da
--- /dev/null
+++ b/src/components/content/FaqList.tsx
@@ -0,0 +1,65 @@
+import { AiFillQuestionCircle } from 'react-icons/ai';
+
+const QuestionsList = [
+ {
+ question: 'What do you mean by "Figma assets"?',
+ answer:
+ 'You will have access to download the full Figma project including all of the pages, the components, responsive pages, and also the icons, illustrations, and images included in the screens.',
+ },
+ {
+ question: 'What does "lifetime access" exactly mean?',
+ answer:
+ 'Once you have purchased either the design, code, or both packages, you will have access to all of the future updates based on the roadmap, free of charge.',
+ },
+ {
+ question: 'How does support work?',
+ answer: `We're aware of the importance of well qualified support, that is why we decided that support will only be provided by the authors that actually worked on this project.Feel free to contact us and we'll help you out as soon as we can.`,
+ },
+ {
+ question: 'I want to build more than one project. Is that allowed?',
+ answer:
+ 'You will have access to download the full Figma project including all of the pages, the components, responsive pages, and also the icons, illustrations, and images included in the screens.',
+ },
+ {
+ question: 'What does "free updates" include?',
+ answer:
+ 'Once you have purchased either the design, code, or both packages, you will have access to all of the future updates based on the roadmap, free of charge.',
+ },
+ {
+ question: 'What does the free version include?',
+ answer: `We're aware of the importance of well qualified support, that is why we decided that support will only be provided by the authors that actually worked on this project.Feel free to contact us and we'll help you out as soon as we can.`,
+ },
+ {
+ question: 'What is the difference between Windster and Tailwind UI?',
+ answer:
+ 'You will have access to download the full Figma project including all of the pages, the components, responsive pages, and also the icons, illustrations, and images included in the screens.',
+ },
+ {
+ question: 'Can I use Windster in open-source projects?',
+ answer:
+ 'Once you have purchased either the design, code, or both packages, you will have access to all of the future updates based on the roadmap, free of charge.',
+ },
+];
+
+export default function FaqList() {
+ return (
+
+
+
+ Frequently asked questions
+
+
+ {QuestionsList.map((question) => (
+
+
+
+ {question.question}
+
+
{question.answer}
+
+ ))}
+
+
+
+ );
+}
diff --git a/src/components/content/FeatureList.tsx b/src/components/content/FeatureList.tsx
new file mode 100644
index 0000000..cf73faf
--- /dev/null
+++ b/src/components/content/FeatureList.tsx
@@ -0,0 +1,91 @@
+import Link from 'next/link';
+import { AiFillDatabase } from 'react-icons/ai';
+import { BsTools } from 'react-icons/bs';
+import { FaPencilRuler } from 'react-icons/fa';
+import { GoLaw } from 'react-icons/go';
+import { MdReduceCapacity } from 'react-icons/md';
+import { RiTeamFill } from 'react-icons/ri';
+import { TbArrowNarrowRight } from 'react-icons/tb';
+
+const FeaturesList = [
+ {
+ title: 'Data Acquisition',
+ description: 'Collecting data across multiple sites',
+ icon: ,
+ href: '/modules/data',
+ },
+ {
+ title: 'Ethical and Trustworthy Artificial Intelligence',
+ description:
+ 'Establishing ethical guidelines for sharing AI-ready datasets',
+ icon: ,
+ href: '/modules/ethics',
+ },
+ {
+ title: 'Standards',
+ description:
+ 'Establishing standards for preparing and sharing AI-ready datasets',
+ icon: ,
+ href: '/modules/standards',
+ },
+ {
+ title: 'Teaming',
+ description: 'Bringing together multidisciplinary teams',
+ icon: ,
+ href: '/modules/teaming',
+ },
+ {
+ title: 'Tools',
+ description:
+ 'Developing tools and software for managing, curating, and sharing AI-ready datasets',
+ icon: ,
+ href: '/modules/tools',
+ },
+ {
+ title: 'Skills & Workforce Development',
+ description: 'Developing a diverse AI/ML-biomedical research workforce',
+ icon: ,
+ href: '/modules/skills',
+ },
+];
+
+export default function FeatureList() {
+ return (
+
+
+
+
+ AI-READI Team
+
+
+
+ The project team is structured into six modules, each leading a key
+ aspect. Meet our team
+
+
+
+
+ {FeaturesList.map((feature) => (
+
+
+ {feature.icon}
+
+
{feature.title}
+
+ {feature.description}
+
+
+
Read more
+
+
+
+ ))}
+
+
+
+ );
+}
diff --git a/src/components/content/ImageBackground.tsx b/src/components/content/ImageBackground.tsx
new file mode 100644
index 0000000..b489e20
--- /dev/null
+++ b/src/components/content/ImageBackground.tsx
@@ -0,0 +1,50 @@
+import styled from '@emotion/styled';
+
+import Button from '@/components/buttons/Button';
+
+const Container = styled.section`
+ & {
+ height: 40vh;
+ position: relative;
+ width: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+ &:before {
+ content: '';
+ background-image: url(https://images.unsplash.com/photo-1583912086096-8c60d75a53f9?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1474&q=80);
+ background-size: cover;
+ background-position: center;
+ background-repeat: no-repeat;
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ filter: brightness(0.4);
+ }
+`;
+
+export default function HeroImageBackground({
+ header,
+ text,
+}: {
+ header: React.ReactNode;
+ text: React.ReactNode;
+}) {
+ return (
+
+
+
+
{header}
+
{text}
+
+ Get Started
+ Learn More
+
+
+
+
+ );
+}
diff --git a/src/components/content/StatsText.tsx b/src/components/content/StatsText.tsx
new file mode 100644
index 0000000..9c57f20
--- /dev/null
+++ b/src/components/content/StatsText.tsx
@@ -0,0 +1,48 @@
+const StatsList = [
+ {
+ heading: '4,000',
+ text: 'Participants anticipated in the study',
+ },
+ {
+ heading: '15+',
+ text: 'Data types to be collected (vitals, electrocardiogram, etc.)',
+ },
+ {
+ heading: '8',
+ text: `Research institutions involved`,
+ },
+ {
+ heading: '50+',
+ text: 'Team members',
+ },
+];
+
+export default function StatsText() {
+ return (
+
+
+
+ Snapshot of the AI-READI project
+
+
+ Some key numbers from the project
+
+
+ {StatsList.map((stat) => (
+
+
+
+ {stat.heading}
+
+
+
+ {stat.text}
+
+
+
+ ))}
+
+
+
+ );
+}
diff --git a/src/components/events/EventDates.tsx b/src/components/events/EventDates.tsx
new file mode 100644
index 0000000..61b49c6
--- /dev/null
+++ b/src/components/events/EventDates.tsx
@@ -0,0 +1,33 @@
+import dayjs from 'dayjs';
+
+interface EventDateItemProps {
+ startDateTime: string;
+ endDateTime: string;
+}
+
+const EventDates: React.FC = ({
+ startDateTime,
+ endDateTime,
+}) => {
+ const isSameDay = dayjs(startDateTime).isSame(dayjs(endDateTime), 'day');
+
+ return (
+
+
+ {dayjs(startDateTime).format(`dddd, MMMM D, YYYY - hh:mm a`)}
+ {' '}
+ to {' '}
+ {isSameDay ? (
+
+ {dayjs(endDateTime).format(`hh:mm a`)}
+
+ ) : (
+
+ {dayjs(endDateTime).format(`dddd, MMMM D, YYYY - hh:mm a`)}
+
+ )}
+
+ );
+};
+
+export default EventDates;
diff --git a/src/components/events/EventsLayout.tsx b/src/components/events/EventsLayout.tsx
new file mode 100644
index 0000000..ad5d8ac
--- /dev/null
+++ b/src/components/events/EventsLayout.tsx
@@ -0,0 +1,69 @@
+import { Divider, Tag, VStack } from '@chakra-ui/react';
+import dayjs from 'dayjs';
+import Image from 'next/image';
+import Link from 'next/link';
+
+import EventDates from '@/components/events/EventDates';
+
+const EventsLayout: React.FC = ({ eventList }) => {
+ return (
+ <>
+
+
+ {eventList.map((event) => (
+
+
+
+ {dayjs(event.frontMatter.startDateTime).isAfter(dayjs()) && (
+
+ Upcoming
+
+ )}
+
+
+
+ {event.frontMatter.title}
+
+
+
+
+
+ {event.frontMatter.subtitle}
+
+
+
+
+
+
+
+
+ {event.timeToRead} min read
+
+
+
+
+
+
+ ))}
+ >
+ );
+};
+
+export default EventsLayout;
diff --git a/src/components/hero/HeroCroppedImage.tsx b/src/components/hero/HeroCroppedImage.tsx
new file mode 100644
index 0000000..5fd3205
--- /dev/null
+++ b/src/components/hero/HeroCroppedImage.tsx
@@ -0,0 +1,52 @@
+/* eslint-disable @next/next/no-img-element */
+import styled from '@emotion/styled';
+
+import Button from '@/components/buttons/Button';
+
+const Container = styled.div`
+ position: relative;
+`;
+
+export default function HeroWithCroppedImage({
+ title,
+ tagline,
+ image,
+ imageAlt = 'Alt text',
+ showButtons = false,
+ primaryButton,
+ secondaryButton,
+}: HeroContent) {
+ return (
+
+
+
+ {title}
+
+
+
+ {tagline}
+
+
+ {showButtons && (
+
+ {primaryButton && {primaryButton} }
+
+ {secondaryButton && (
+ {secondaryButton}
+ )}
+
+ )}
+
+
+ {image && (
+
+
+
+ )}
+
+ );
+}
diff --git a/src/components/hero/HeroImageBackground.tsx b/src/components/hero/HeroImageBackground.tsx
new file mode 100644
index 0000000..f6b078e
--- /dev/null
+++ b/src/components/hero/HeroImageBackground.tsx
@@ -0,0 +1,46 @@
+import Button from '@/components/buttons/Button';
+
+export default function HeroImageBackground({
+ title,
+ tagline,
+ image,
+ showButtons = false,
+ primaryButton,
+ secondaryButton,
+}: HeroContent) {
+ return (
+
+
+
+
+ {title}
+
+
+ {tagline && (
+
+ {tagline}
+
+ )}
+
+ {showButtons && (
+
+ {primaryButton && {primaryButton} }
+
+ {secondaryButton && (
+ {secondaryButton}
+ )}
+
+ )}
+
+
+
+ );
+}
diff --git a/src/components/hero/HeroNoImage.tsx b/src/components/hero/HeroNoImage.tsx
new file mode 100644
index 0000000..4b83ea4
--- /dev/null
+++ b/src/components/hero/HeroNoImage.tsx
@@ -0,0 +1,33 @@
+import Button from '@/components/buttons/Button';
+
+export default function HeroWithCroppedImage({
+ title,
+ tagline,
+ showButtons = false,
+ primaryButton,
+ secondaryButton,
+}: HeroContent) {
+ return (
+
+
+
+ {title}
+
+
+
+ {tagline}
+
+
+ {showButtons && (
+
+ {primaryButton && {primaryButton} }
+
+ {secondaryButton && (
+ {secondaryButton}
+ )}
+
+ )}
+
+
+ );
+}
diff --git a/src/components/hero/HeroSideImage.tsx b/src/components/hero/HeroSideImage.tsx
new file mode 100644
index 0000000..bfa83dc
--- /dev/null
+++ b/src/components/hero/HeroSideImage.tsx
@@ -0,0 +1,38 @@
+/* eslint-disable @next/next/no-img-element */
+import Button from '@/components/buttons/Button';
+
+export default function HeroSideImage({
+ title,
+ tagline,
+ image,
+ showButtons = false,
+ primaryButton,
+ secondaryButton,
+}: HeroContent) {
+ return (
+
+
+
+
+ {title}
+
+
+ {tagline}
+
+ {showButtons && (
+
+ {primaryButton && {primaryButton} }
+
+ {secondaryButton && (
+ {secondaryButton}
+ )}
+
+ )}
+
+
+
+
+
+
+ );
+}
diff --git a/src/components/icons/ResourcesItemIcon.tsx b/src/components/icons/ResourcesItemIcon.tsx
new file mode 100644
index 0000000..fee3a25
--- /dev/null
+++ b/src/components/icons/ResourcesItemIcon.tsx
@@ -0,0 +1,17 @@
+import { AiFillGithub } from 'react-icons/ai';
+import { FaLeanpub } from 'react-icons/fa';
+import { HiOutlineGlobe } from 'react-icons/hi';
+import { RiSurveyFill } from 'react-icons/ri';
+
+const ResourcesItemIcon: React.FC<{ type: string }> = ({ type }) => {
+ return (
+
+ {type === 'publication' &&
}
+ {type === 'github' &&
}
+ {type === 'website' &&
}
+ {type === 'survey' &&
}
+
+ );
+};
+
+export default ResourcesItemIcon;
diff --git a/src/components/images/ImageWithCredit.tsx b/src/components/images/ImageWithCredit.tsx
new file mode 100644
index 0000000..1b1f672
--- /dev/null
+++ b/src/components/images/ImageWithCredit.tsx
@@ -0,0 +1,51 @@
+/* eslint-disable @next/next/no-img-element */
+import { Icon } from '@iconify/react';
+
+interface ImageProps {
+ src: string;
+ alt: string;
+ author: string;
+ authorLink?: string;
+}
+
+const ImageWithCredit: React.FC = ({
+ src,
+ alt,
+ author,
+ authorLink,
+}) => {
+ return (
+
+
+
+
+
+ );
+};
+
+export default ImageWithCredit;
diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx
new file mode 100644
index 0000000..86e0ffa
--- /dev/null
+++ b/src/components/layout/Footer.tsx
@@ -0,0 +1,133 @@
+/* eslint-disable @next/next/no-img-element */
+import { Divider } from '@chakra-ui/react';
+import Link from 'next/link';
+import { AiFillGithub } from 'react-icons/ai';
+
+const footerLinks = [
+ {
+ title: 'Legal',
+ links: [
+ {
+ title: 'Privacy Policy',
+ href: '/privacy',
+ },
+
+ {
+ title: 'Cookie Policy',
+ href: '/cookies',
+ },
+ ],
+ },
+
+ {
+ title: 'Resources',
+ links: [
+ {
+ title: 'Team',
+ href: '/team',
+ },
+ {
+ title: 'GitHub',
+ href: 'https://github.com/AI-READI',
+ },
+ // {
+ // title: 'Components',
+ // href: '/components',
+ // },
+ {
+ title: 'Contact Us',
+ href: '/contact',
+ },
+ ],
+ },
+];
+
+export default function Footer() {
+ return (
+
+
+
+
+
+
+
+ EyeACT
+
+
+
+ At fugit recusandae aut aliquam. Quisquam et voluptatem. Quisquam
+
+
+
+
+
+
+
+ Ea autem excepturi qui atque rerum ut perspiciatis quis aut
+ velit quasi sed laboriosam sapiente. Et fuga voluptas sed
+ velit consequuntur non debitis perspiciatis. Et illum officia
+ non ullam nobis eum saepe temporibus vel beatae tenetur est
+ laudantium tempora est sint nisi 33 praesentium officia!
+
+
+
+
+
+
+
+
+
+ {footerLinks.map((footerLink) => (
+
+
+ {footerLink.title}
+
+
+ {footerLink.links.map((link) => (
+
+
+
+ {link.title}
+
+
+
+ ))}
+
+
+ ))}
+
+
+
+
+
+
+
+ © {new Date().getFullYear()} {` `}
+
+ EyeACT™
+
+ . All Rights Reserved.
+
+
+
+
+
+
+ );
+}
diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx
new file mode 100644
index 0000000..09dfbe6
--- /dev/null
+++ b/src/components/layout/Header.tsx
@@ -0,0 +1,106 @@
+/* eslint-disable unused-imports/no-unused-vars */
+/* eslint-disable @next/next/no-img-element */
+import { Dialog, Popover } from '@headlessui/react';
+import { Icon } from '@iconify/react';
+import { useState } from 'react';
+
+import UnstyledLink from '@/components/links/UnstyledLink';
+
+const regularLinks = [
+ {
+ href: '/team',
+ title: 'Team',
+ },
+ {
+ href: '/contact',
+ title: 'Contact Us',
+ },
+];
+
+export default function Header() {
+ const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
+
+ return (
+
+ );
+}
diff --git a/src/components/layout/Layout.tsx b/src/components/layout/Layout.tsx
new file mode 100644
index 0000000..86b5146
--- /dev/null
+++ b/src/components/layout/Layout.tsx
@@ -0,0 +1,15 @@
+import * as React from 'react';
+
+import Footer from '@/components/layout/Footer';
+import Header from '@/components/layout/Header';
+
+export default function Layout({ children }: { children: React.ReactNode }) {
+ // Put Header or Footer Here
+ return (
+ <>
+
+ {children}
+
+ >
+ );
+}
diff --git a/src/components/links/ArrowLink.tsx b/src/components/links/ArrowLink.tsx
new file mode 100644
index 0000000..caf2b59
--- /dev/null
+++ b/src/components/links/ArrowLink.tsx
@@ -0,0 +1,64 @@
+import * as React from 'react';
+
+import clsxm from '@/lib/clsxm';
+
+import UnderlineLink from '@/components/links/UnderlineLink';
+import { UnstyledLinkProps } from '@/components/links/UnstyledLink';
+
+type ArrowLinkProps = {
+ as?: C;
+ direction?: 'left' | 'right';
+} & UnstyledLinkProps &
+ React.ComponentProps;
+
+export default function ArrowLink({
+ children,
+ className,
+ direction = 'right',
+ as,
+ ...rest
+}: ArrowLinkProps) {
+ const Component = as || UnderlineLink;
+
+ return (
+
+ {children}
+
+
+
+
+
+ );
+}
diff --git a/src/components/links/ButtonLink.tsx b/src/components/links/ButtonLink.tsx
new file mode 100644
index 0000000..f2f6746
--- /dev/null
+++ b/src/components/links/ButtonLink.tsx
@@ -0,0 +1,82 @@
+import * as React from 'react';
+
+import clsxm from '@/lib/clsxm';
+
+import UnstyledLink, {
+ UnstyledLinkProps,
+} from '@/components/links/UnstyledLink';
+
+enum ButtonVariant {
+ 'primary',
+ 'outline',
+ 'ghost',
+ 'light',
+ 'dark',
+}
+
+type ButtonLinkProps = {
+ isDarkBg?: boolean;
+ variant?: keyof typeof ButtonVariant;
+} & UnstyledLinkProps;
+
+const ButtonLink = React.forwardRef(
+ (
+ { children, className, variant = 'primary', isDarkBg = false, ...rest },
+ ref,
+ ) => {
+ return (
+
+ {children}
+
+ );
+ },
+);
+
+export default ButtonLink;
diff --git a/src/components/links/PrimaryLink.tsx b/src/components/links/PrimaryLink.tsx
new file mode 100644
index 0000000..f8ed3fe
--- /dev/null
+++ b/src/components/links/PrimaryLink.tsx
@@ -0,0 +1,28 @@
+import * as React from 'react';
+
+import clsxm from '@/lib/clsxm';
+
+import UnstyledLink, {
+ UnstyledLinkProps,
+} from '@/components/links/UnstyledLink';
+
+const PrimaryLink = React.forwardRef(
+ ({ className, children, ...rest }, ref) => {
+ return (
+
+ {children}
+
+ );
+ },
+);
+
+export default PrimaryLink;
diff --git a/src/components/links/UnderlineLink.tsx b/src/components/links/UnderlineLink.tsx
new file mode 100644
index 0000000..a99d450
--- /dev/null
+++ b/src/components/links/UnderlineLink.tsx
@@ -0,0 +1,28 @@
+import * as React from 'react';
+
+import clsxm from '@/lib/clsxm';
+
+import UnstyledLink, {
+ UnstyledLinkProps,
+} from '@/components/links/UnstyledLink';
+
+const UnderlineLink = React.forwardRef(
+ ({ children, className, ...rest }, ref) => {
+ return (
+
+ {children}
+
+ );
+ },
+);
+
+export default UnderlineLink;
diff --git a/src/components/links/UnstyledLink.tsx b/src/components/links/UnstyledLink.tsx
new file mode 100644
index 0000000..d8e3b56
--- /dev/null
+++ b/src/components/links/UnstyledLink.tsx
@@ -0,0 +1,53 @@
+import Link, { LinkProps } from 'next/link';
+import * as React from 'react';
+
+import clsxm from '@/lib/clsxm';
+
+export type UnstyledLinkProps = {
+ href: string;
+ children: React.ReactNode;
+ openNewTab?: boolean;
+ className?: string;
+ nextLinkProps?: Omit;
+} & React.ComponentPropsWithRef<'a'>;
+
+const UnstyledLink = React.forwardRef(
+ ({ children, href, openNewTab, className, nextLinkProps, ...rest }, ref) => {
+ const isNewTab =
+ openNewTab !== undefined
+ ? openNewTab
+ : href && !href.startsWith('/') && !href.startsWith('#');
+
+ // Use the anchor tag for explicit same domain links. Should rerender iframes.
+ const isHomeDomain = href && href.includes('aireadi.org');
+
+ if (!isNewTab) {
+ return (
+
+ {children}
+
+ );
+ }
+
+ return (
+
+ {children}
+
+ );
+ },
+);
+
+export default UnstyledLink;
diff --git a/src/components/lotties/index.tsx b/src/components/lotties/index.tsx
new file mode 100644
index 0000000..1da5e91
--- /dev/null
+++ b/src/components/lotties/index.tsx
@@ -0,0 +1,26 @@
+import Lottie from 'react-lottie-player';
+
+interface LottieProps {
+ animationData: Record;
+ width: number;
+ height: number;
+}
+
+const LottieAnimation: React.FC = ({
+ animationData,
+ width,
+ height,
+}) => {
+ return (
+
+
+
+ );
+};
+
+export default LottieAnimation;
diff --git a/src/components/modules/ModuleMembers.tsx b/src/components/modules/ModuleMembers.tsx
new file mode 100644
index 0000000..0668f13
--- /dev/null
+++ b/src/components/modules/ModuleMembers.tsx
@@ -0,0 +1,86 @@
+import { motion } from 'framer-motion';
+import Image from 'next/image';
+
+import UnstyledLink from '@/components/links/UnstyledLink';
+
+import { FadeFramerItem, FramerContainer } from '@/utils/framer';
+
+type ComponentProps = {
+ Team: ModuleMembersType;
+};
+
+const ModuleMembers: React.FC = ({ Team }) => {
+ return (
+
+
+
+
+ Team
+
+
+
+ Meet the people behind the scenes who make it all happen.
+
+
+
+
+ {Team.map((member) => (
+
+
+
+
+
+
+
+
+ {member.name}
+
+
+
+ {member.roles[0]}
+
+
+ {/* {member.roles.map((role, index) => (
+
+ {role}
+
+ ))} */}
+
+
+
+ ))}
+
+
+
+ );
+};
+
+export default ModuleMembers;
diff --git a/src/components/post/PostBody.tsx b/src/components/post/PostBody.tsx
new file mode 100644
index 0000000..b4d3900
--- /dev/null
+++ b/src/components/post/PostBody.tsx
@@ -0,0 +1,13 @@
+interface PostBodyProps {
+ content: string;
+}
+
+const postBody: React.FC = ({ content }) => {
+ return (
+
+ );
+};
+
+export default postBody;
diff --git a/src/components/post/PostEntry.tsx b/src/components/post/PostEntry.tsx
new file mode 100644
index 0000000..8783bbf
--- /dev/null
+++ b/src/components/post/PostEntry.tsx
@@ -0,0 +1,101 @@
+import dayjs from 'dayjs';
+import Link from 'next/link';
+
+interface PostEntryProps {
+ title: string;
+ timeToRead: number;
+ date: string;
+ slug: string;
+ subtitle: string;
+ tags: string[];
+ category: string;
+}
+
+const PostEntry: React.FC = ({
+ title,
+ timeToRead,
+ date,
+ slug,
+ subtitle,
+ tags,
+ category,
+}) => {
+ return (
+
+ {/* Left panel */}
+
+
+ {dayjs(date).format(`MMMM D, YYYY`)}
+
+
+ {category !== `` && (
+
+
+ {category}
+
+
+ )}
+
+ {timeToRead} min read
+
+
+
+ {category !== `` && (
+
+
+ {category}
+
+
+ )}
+
+
+
+ {dayjs(date).format(`MMMM D, YYYY`)}
+
+
+ {timeToRead} min read
+
+
+
+
+
+
+ {title}
+
+
+
+
{subtitle}
+
+
+
+
Tags:
+ {tags.map((tag) => (
+
+
+ {tag}
+
+
+ ))}
+
+
+
+ Read more →
+
+
+
+
+
+ );
+};
+
+export default PostEntry;
diff --git a/src/components/post/PostsLayout.tsx b/src/components/post/PostsLayout.tsx
new file mode 100644
index 0000000..4b2e999
--- /dev/null
+++ b/src/components/post/PostsLayout.tsx
@@ -0,0 +1,143 @@
+import { Divider } from '@chakra-ui/react';
+import dayjs from 'dayjs';
+import Image from 'next/image';
+import Link from 'next/link';
+
+interface PostItem {
+ slug: string;
+ timeToRead: number;
+
+ frontMatter: {
+ title: string;
+ date: string;
+ tags: string[];
+ subtitle: string;
+ categories: string[];
+ heroImage: string;
+ };
+}
+
+interface PostLayoutProps {
+ PostList: PostItem[];
+}
+
+const PostLayout: React.FC = ({ PostList }) => {
+ return (
+ <>
+
+
+ {PostList.length > 0 ? (
+
+
+
+
+ {PostList[0].frontMatter.categories[0]}
+
+
+
+
+
+ {PostList[0].frontMatter.title}
+
+
+
+
+ {PostList[0].frontMatter.subtitle}
+
+
+
+
+
+
+ {dayjs(PostList[0].frontMatter.date).format(`MMMM D, YYYY`)}
+
+
+
+ {PostList[0].timeToRead} min read
+
+
+
+
+
+
+ ) : null}
+
+ {PostList.length > 1 ? (
+ <>
+
+ {PostList.map((post) => (
+
+
+
+
+
+
+
+
+
+
+ {post.frontMatter.categories[0]}
+
+
+
+
+
+ {post.frontMatter.title}
+
+
+
+
+ {post.frontMatter.subtitle}
+
+
+
+
+ {dayjs(post.frontMatter.date).format(`MMMM D, YYYY`)}
+
+
+
+ {post.timeToRead} min read
+
+
+
+
+ ))}
+
+ >
+ ) : null}
+ >
+ );
+};
+
+export default PostLayout;
diff --git a/src/components/scroll/ScrollReveal.jsx b/src/components/scroll/ScrollReveal.jsx
new file mode 100644
index 0000000..e29c837
--- /dev/null
+++ b/src/components/scroll/ScrollReveal.jsx
@@ -0,0 +1,54 @@
+import { useEffect, useMemo, useRef, useState } from 'react';
+import { useIntersection, useWindowScroll, useWindowSize } from 'react-use';
+
+export function ScrollReveal({
+ children,
+ className,
+ once = false,
+ trigger = 'visible',
+ offset = 0,
+ as: Component = 'div',
+ ...props
+}) {
+ const container = useRef(null);
+
+ const { y: windowScroll } = useWindowScroll();
+ const { height: windowHeight } = useWindowSize();
+
+ const intersection = useIntersection(container, {
+ threshold: 0,
+ });
+
+ const isIntersecting = useMemo(() => {
+ if (container.current) {
+ const y = container.current.getBoundingClientRect().top;
+ const { height } = container.current.getBoundingClientRect();
+
+ if (trigger == 'top') {
+ return intersection.isIntersecting && y <= 0;
+ } else if (trigger == 'middle') {
+ return y > windowHeight / 2 - height && y <= windowHeight / 2;
+ }
+
+ return intersection.isIntersecting && y <= windowHeight - offset;
+ }
+
+ return false;
+ }, [windowScroll]);
+
+ const [isActive, setActive] = useState(false);
+
+ useEffect(() => {
+ if (once && isIntersecting) {
+ setActive(true);
+ } else if (!once) {
+ setActive(isIntersecting);
+ }
+ }, [isIntersecting, once]);
+
+ return (
+
+ {children(isActive)}
+
+ );
+}
diff --git a/src/constant/env.ts b/src/constant/env.ts
new file mode 100644
index 0000000..2de4925
--- /dev/null
+++ b/src/constant/env.ts
@@ -0,0 +1,7 @@
+export const isProd = process.env.NODE_ENV === 'production';
+
+export const isLocal = process.env.NODE_ENV === 'development';
+
+export const showLogger = isLocal
+ ? true
+ : process.env.NEXT_PUBLIC_SHOW_LOGGER === 'true' ?? false;
diff --git a/src/lib/__tests__/helper.test.ts b/src/lib/__tests__/helper.test.ts
new file mode 100644
index 0000000..4c3e0ec
--- /dev/null
+++ b/src/lib/__tests__/helper.test.ts
@@ -0,0 +1,22 @@
+import { openGraph } from '@/lib/helper';
+
+describe('Open Graph function should work correctly', () => {
+ it('should not return templateTitle when not specified', () => {
+ const result = openGraph({
+ description: 'Test description',
+ siteName: 'Test site name',
+ });
+
+ expect(result).not.toContain('&templateTitle=');
+ });
+
+ it('should return templateTitle when specified', () => {
+ const result = openGraph({
+ templateTitle: 'Test Template Title',
+ description: 'Test description',
+ siteName: 'Test site name',
+ });
+
+ expect(result).toContain('&templateTitle=Test%20Template%20Title');
+ });
+});
diff --git a/src/lib/clsxm.ts b/src/lib/clsxm.ts
new file mode 100644
index 0000000..aee5bfd
--- /dev/null
+++ b/src/lib/clsxm.ts
@@ -0,0 +1,7 @@
+import clsx, { ClassValue } from 'clsx';
+import { twMerge } from 'tailwind-merge';
+
+/** Merge classes with tailwind-merge with clsx full feature */
+export default function clsxm(...classes: ClassValue[]) {
+ return twMerge(clsx(...classes));
+}
diff --git a/src/lib/helper.ts b/src/lib/helper.ts
new file mode 100644
index 0000000..3bd8a61
--- /dev/null
+++ b/src/lib/helper.ts
@@ -0,0 +1,47 @@
+type OpenGraphType = {
+ siteName: string;
+ description: string;
+ templateTitle?: string;
+ logo?: string;
+};
+
+// !STARTERCONF This OG is generated from https://github.com/theodorusclarence/og
+// Please clone them and self-host if your site is going to be visited by many people.
+// Then change the url and the default logo.
+export function openGraph({
+ siteName,
+ templateTitle,
+ description,
+ // !STARTERCONF Or, you can use my server with your own logo.
+ logo = 'https://og./images/logo.jpg',
+}: OpenGraphType): string {
+ const ogLogo = encodeURIComponent(logo);
+
+ const ogSiteName = encodeURIComponent(siteName.trim());
+
+ const ogTemplateTitle = templateTitle
+ ? encodeURIComponent(templateTitle.trim())
+ : undefined;
+
+ const ogDesc = encodeURIComponent(description.trim());
+
+ return `https://og./api/general?siteName=${ogSiteName}&description=${ogDesc}&logo=${ogLogo}${
+ ogTemplateTitle ? `&templateTitle=${ogTemplateTitle}` : ''
+ }`;
+}
+
+export function getFromLocalStorage(key: string): string | null {
+ if (typeof window !== 'undefined') {
+ return window.localStorage.getItem(key);
+ }
+
+ return null;
+}
+
+export function getFromSessionStorage(key: string): string | null {
+ if (typeof sessionStorage !== 'undefined') {
+ return sessionStorage.getItem(key);
+ }
+
+ return null;
+}
diff --git a/src/lib/logger.ts b/src/lib/logger.ts
new file mode 100644
index 0000000..86cd26f
--- /dev/null
+++ b/src/lib/logger.ts
@@ -0,0 +1,19 @@
+/* eslint-disable no-console */
+import { showLogger } from '@/constant/env';
+
+/**
+ * A logger function that will only logs on development
+ * @param object - The object to log
+ * @param comment - Autogenerated with `lg` snippet
+ */
+export default function logger(object: unknown, comment?: string): void {
+ if (!showLogger) return;
+
+ console.log(
+ '%c ============== INFO LOG \n',
+ 'color: #22D3EE',
+ `${typeof window !== 'undefined' && window?.location.pathname}\n`,
+ `=== ${comment ?? ''}\n`,
+ object,
+ );
+}
diff --git a/src/lib/markdownToHtml.ts b/src/lib/markdownToHtml.ts
new file mode 100644
index 0000000..0cf6a99
--- /dev/null
+++ b/src/lib/markdownToHtml.ts
@@ -0,0 +1,33 @@
+import rehypeDocument from 'rehype-document';
+import rehypeExternalLinks from 'rehype-external-links';
+import rehypeFormat from 'rehype-format';
+import rehypeHighlight from 'rehype-highlight';
+import rehypeRaw from 'rehype-raw';
+import rehypeStringify from 'rehype-stringify';
+import remarkGfm from 'remark-gfm';
+import remarkParse from 'remark-parse';
+import remarkRehype from 'remark-rehype';
+import { unified } from 'unified';
+
+/**
+ * Converts markdown to HTML
+ * @param markdown Markdown string
+ */
+export default async function markdownToHtml(markdown: string) {
+ const result = await unified()
+ .use(remarkParse)
+ .use(remarkGfm)
+ .use(remarkRehype, { allowDangerousHtml: true })
+ .use(rehypeRaw)
+ .use(rehypeHighlight)
+ .use(rehypeDocument)
+ .use(rehypeFormat)
+ .use(rehypeStringify)
+ .use(rehypeExternalLinks, {
+ target: `_blank`,
+ rel: [`noopener`, `noreferrer`, `nofollow`],
+ })
+ .process(markdown);
+
+ return result.toString();
+}
diff --git a/src/pages/404.tsx b/src/pages/404.tsx
new file mode 100644
index 0000000..0fc95e9
--- /dev/null
+++ b/src/pages/404.tsx
@@ -0,0 +1,42 @@
+import Layout from '@/components/layout/Layout';
+import ArrowLink from '@/components/links/ArrowLink';
+import ButtonLink from '@/components/links/ButtonLink';
+import LottieAnimation from '@/components/lotties';
+import Seo from '@/components/Seo';
+
+import heroLottie from '~/lotties/404.json';
+
+export default function NotFoundPage() {
+ return (
+
+
+
+
+
+
+
+
+
404!
+
+ The page you are looking for might have been removed or had its
+ name changed or is temporarily unavailable.
+
+
+ Back to Home
+
+
+
+
+
+
+ );
+}
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx
new file mode 100644
index 0000000..fd8268f
--- /dev/null
+++ b/src/pages/_app.tsx
@@ -0,0 +1,21 @@
+import { ChakraProvider } from '@chakra-ui/react';
+import { AppProps } from 'next/app';
+
+import '@/styles/globals.css';
+// !STARTERCONF This is for demo purposes, remove @/styles/colors.css import immediately
+import '@/styles/colors.css';
+
+/**
+ * !STARTERCONF info
+ * ? `Layout` component is called in every page using `np` snippets. If you have consistent layout across all page, you can add it here too
+ */
+
+function MyApp({ Component, pageProps }: AppProps) {
+ return (
+
+
+
+ );
+}
+
+export default MyApp;
diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx
new file mode 100644
index 0000000..0f2c1cf
--- /dev/null
+++ b/src/pages/_document.tsx
@@ -0,0 +1,49 @@
+import Document, {
+ DocumentContext,
+ Head,
+ Html,
+ Main,
+ NextScript,
+} from 'next/document';
+
+class MyDocument extends Document {
+ static async getInitialProps(ctx: DocumentContext) {
+ const initialProps = await Document.getInitialProps(ctx);
+
+ return { ...initialProps };
+ }
+
+ render() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
+
+export default MyDocument;
diff --git a/src/pages/api/contact.ts b/src/pages/api/contact.ts
new file mode 100644
index 0000000..0273df1
--- /dev/null
+++ b/src/pages/api/contact.ts
@@ -0,0 +1,67 @@
+// import sgMail from '@sendgrid/mail';
+import type { NextApiRequest, NextApiResponse } from 'next';
+
+// if (!process.env.SENDGRID_API_KEY) {
+// throw new Error('SENDGRID_API_KEY not found');
+// } else {
+// sgMail.setApiKey(process.env.SENDGRID_API_KEY);
+// }
+
+type Data = {
+ success: boolean;
+};
+
+export default function handler(
+ req: NextApiRequest,
+ res: NextApiResponse,
+) {
+ // if (req.method === `POST`) {
+ // const { email, subject, message } = JSON.parse(req.body);
+
+ // const ourmsg = {
+ // to: `jpowen@uw.edu`,
+ // from: `sendgrid@aireadi.org`,
+ // subject: `A new request has arrived!`,
+ // html: `Email: ${email}
+ // Subject: ${subject}
+ // Message: ${message}
`,
+ // };
+
+ // const usermsg = {
+ // to: email,
+ // from: `contact@aireadi.org`,
+ // subject: `Hi there!`,
+ // html: `Thank you for contacting us. We will be in touch with you soon.
+ // Email: ${email}
+ // Subject: ${subject}
+ // Message: ${message}
`,
+ // };
+
+ // sgMail
+ // .send(ourmsg)
+ // .then(() => {
+ // sgMail
+ // .send(usermsg)
+ // .then(() => {
+ // // eslint-disable-next-line no-console
+ // console.log(`Email sent`);
+ // const response = { success: true };
+ // res.status(200).json(response);
+ // })
+ // .catch((error: unknown) => {
+ // // eslint-disable-next-line no-console
+ // console.error(error);
+ // const response = { success: false };
+ // res.status(400).json(response);
+ // });
+ // })
+ // .catch((error: unknown) => {
+ // // eslint-disable-next-line no-console
+ // console.error(error);
+ // const response = { success: false };
+ // res.status(400).json(response);
+ // });
+ // }
+
+ return res.status(400).json({ success: false });
+}
diff --git a/src/pages/api/hello.ts b/src/pages/api/hello.ts
new file mode 100644
index 0000000..5a763fd
--- /dev/null
+++ b/src/pages/api/hello.ts
@@ -0,0 +1,7 @@
+// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
+
+import { NextApiRequest, NextApiResponse } from 'next';
+
+export default function hello(req: NextApiRequest, res: NextApiResponse) {
+ res.status(200).json({ name: 'Bambang' });
+}
diff --git a/src/pages/blog/[slug].tsx b/src/pages/blog/[slug].tsx
new file mode 100644
index 0000000..5438734
--- /dev/null
+++ b/src/pages/blog/[slug].tsx
@@ -0,0 +1,279 @@
+import { Avatar, Tag } from '@chakra-ui/react';
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import { Icon } from '@iconify/react';
+import dayjs from 'dayjs';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { GetStaticPaths, GetStaticProps } from 'next';
+import Image from 'next/image';
+import Link from 'next/link';
+import { toast, ToastContainer } from 'react-toastify';
+
+import 'react-toastify/dist/ReactToastify.css';
+
+import markdownToHtml from '@/lib/markdownToHtml';
+
+import Layout from '@/components/layout/Layout';
+import PostBody from '@/components/post/PostBody';
+import Seo from '@/components/Seo';
+
+import TEAM_JSON from '~/data/team.json';
+
+interface PostProps {
+ slug: string;
+ frontMatter: {
+ title: string;
+ date: string;
+ authors: string[];
+ heroImage: string;
+ imageAuthor: string;
+ imageAuthorLink: string;
+ tags: string[];
+ subtitle: string;
+ categories: string[];
+ };
+ postContent: string;
+}
+
+interface Author {
+ id: string;
+ name: string;
+ image: string;
+ moduleImageParams: string;
+}
+
+const AllAuthors: Record = {};
+
+TEAM_JSON.forEach((author) => {
+ AllAuthors[author.id] = author;
+});
+
+// The page for each post
+const BlogPost: React.FC = ({ slug, frontMatter, postContent }) => {
+ const { title, authors, date, heroImage, categories, subtitle, tags } =
+ frontMatter;
+
+ const transformedAuthors: { name: string; image: string }[] = [];
+
+ authors.forEach((author) => {
+ if (AllAuthors[author]) {
+ transformedAuthors.push({
+ name: AllAuthors[author].name,
+ image: AllAuthors[author].image + AllAuthors[author].moduleImageParams,
+ });
+ } else {
+ transformedAuthors.push({
+ name: author,
+ image: `https://api.dicebear.com/6.x/shapes/svg?seed=${author}`,
+ });
+ }
+ });
+
+ const copyLinkToClipboard = () => {
+ navigator.clipboard
+ .writeText(`https://aireadi.org/blog/${slug}`)
+ .then(() => {
+ toast.success(`Copied to clipboard succesfully.`, {
+ position: `bottom-right`,
+ autoClose: 5000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ })
+ .catch((_error) => {
+ toast.error(`Failed to copy to clipboard.`, {
+ position: `bottom-right`,
+ autoClose: 5000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ });
+ };
+
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+ {categories.map((category) => (
+
+
+ {category}
+
+
+ ))}
+
+
+
+ {title}
+
+
+
+ {subtitle}
+
+
+
+
+
+
+
+
+
+
+
+ {transformedAuthors.map((author) => (
+
+
+
+
+ {author.name}
+
+
+ ))}
+
+
+
+ {dayjs(date).format(`MMMM D, YYYY`)}
+
+
+
+
+
+
+
+
+
Tags:
+
+
+ {tags.map((tag) => (
+
+
+ {tag}
+
+
+ ))}
+
+
+
+
+
+
+
+ Share this article:{` `}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export const getStaticPaths: GetStaticPaths = async () => {
+ const files = fs.readdirSync(`./blog`);
+
+ const paths = files.map((fileName) => ({
+ params: {
+ slug: fileName.replace(`.md`, ``),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+};
+
+// The page for each post
+
+export const getStaticProps: GetStaticProps = async ({ params }) => {
+ const slug = params?.slug;
+
+ const fileName = fs.readFileSync(`blog/${slug}.md`, `utf-8`);
+
+ const { data: frontMatter, content: fileContent } = matter(fileName);
+
+ const postContent = await markdownToHtml(fileContent || ``);
+
+ return {
+ props: {
+ slug,
+ frontMatter,
+ postContent,
+ },
+ };
+};
+
+export default BlogPost;
diff --git a/src/pages/blog/category/[category].tsx b/src/pages/blog/category/[category].tsx
new file mode 100644
index 0000000..69c7e8c
--- /dev/null
+++ b/src/pages/blog/category/[category].tsx
@@ -0,0 +1,149 @@
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import dayjs from 'dayjs';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { GetStaticPaths, GetStaticProps } from 'next';
+import { useRouter } from 'next/router';
+import wordsCount from 'words-count';
+
+import BlogPostsLayout from '@/components/blog/BlogPostsLayout';
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+type PostsList = {
+ slug: string;
+ timeToRead: number;
+
+ frontMatter: {
+ title: string;
+ date: string;
+ tags: string[];
+ subtitle: string;
+ categories: string[];
+ heroImage: string;
+ };
+};
+
+interface BlogProps {
+ filteredPostsList: PostsList[];
+}
+
+// The Blog Page Content
+
+const CategoryPage: React.FC = ({ filteredPostsList }) => {
+ const router = useRouter();
+
+ const { category } = router.query;
+
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
Category
+
+ {category}
+
+
+
+
+
+ >
+ );
+};
+
+export const getStaticPaths: GetStaticPaths = async () => {
+ // Get the posts from the `blog` directory
+ const files = fs.readdirSync(`./blog`);
+
+ const PostsList = files.map((fileName) => {
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`blog/${fileName}`, `utf-8`);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ frontMatter,
+ };
+ });
+
+ const categoriesList: string[] = [];
+
+ for (const post of PostsList) {
+ const { frontMatter } = post;
+
+ const { categories } = frontMatter;
+
+ for (const category of categories) {
+ if (!categoriesList.includes(category)) {
+ categoriesList.push(category);
+ }
+ }
+ }
+
+ const paths = [];
+
+ for (const category of categoriesList) {
+ paths.push({
+ params: {
+ category,
+ },
+ });
+ }
+
+ return {
+ paths,
+ fallback: false,
+ };
+};
+
+export const getStaticProps: GetStaticProps = async ({ params }) => {
+ // Get the posts from the `blog` directory
+ const files = fs.readdirSync(`./blog`);
+
+ const PostsList = files.map((fileName) => {
+ // Remove the .md extension and use the file name as the slug
+ const slug = fileName.replace(`.md`, ``);
+
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`blog/${fileName}`, `utf-8`);
+
+ const timeToRead = Math.ceil(wordsCount(rawFileContent) / 265);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ slug,
+ frontMatter,
+ timeToRead,
+ };
+ });
+
+ // sort the posts by date in descending order
+ PostsList.sort((a, b) => {
+ const a_date = dayjs(a.frontMatter.date, `YYYY-MM-DD`) as unknown as number;
+
+ const b_date = dayjs(b.frontMatter.date, `YYYY-MM-DD`) as unknown as number;
+
+ return b_date - a_date;
+ });
+
+ const filteredPostsList = PostsList.filter((post) => {
+ const { categories } = post.frontMatter;
+
+ return categories.includes(params?.category);
+ });
+
+ // Return the posts data to the page as props
+ return {
+ props: {
+ filteredPostsList,
+ },
+ };
+};
+
+export default CategoryPage;
diff --git a/src/pages/blog/category/index.tsx b/src/pages/blog/category/index.tsx
new file mode 100644
index 0000000..7fcb335
--- /dev/null
+++ b/src/pages/blog/category/index.tsx
@@ -0,0 +1,87 @@
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import fs from 'fs';
+import matter from 'gray-matter';
+import Link from 'next/link';
+
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+interface PageProps {
+ categoriesList: string[];
+}
+
+// The Blog Page Content
+
+const CategoriesPage: React.FC = ({ categoriesList }) => {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
Categories
+
+
+
+
+
+
+ {categoriesList.map((category) => {
+ return (
+
+
+ {category}
+
+
+ );
+ })}
+
+
+
+
+ >
+ );
+};
+
+export async function getStaticProps() {
+ // Get the posts from the `blog` directory
+ const files = fs.readdirSync(`./blog`);
+
+ const PostsList = files.map((fileName) => {
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`blog/${fileName}`, `utf-8`);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ frontMatter,
+ };
+ });
+
+ const categoriesList: string[] = [];
+
+ for (const post of PostsList) {
+ const { frontMatter } = post;
+
+ const { categories } = frontMatter;
+
+ for (const category of categories) {
+ if (!categoriesList.includes(category)) {
+ categoriesList.push(category);
+ }
+ }
+ }
+
+ categoriesList.sort();
+
+ return {
+ props: {
+ categoriesList,
+ },
+ };
+}
+
+export default CategoriesPage;
diff --git a/src/pages/blog/index.tsx b/src/pages/blog/index.tsx
new file mode 100644
index 0000000..09bd1ca
--- /dev/null
+++ b/src/pages/blog/index.tsx
@@ -0,0 +1,95 @@
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import dayjs from 'dayjs';
+import fs from 'fs';
+import matter from 'gray-matter';
+import wordsCount from 'words-count';
+
+import BlogPostsLayout from '@/components/blog/BlogPostsLayout';
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+type BlogList = {
+ slug: string;
+ timeToRead: number;
+
+ frontMatter: {
+ title: string;
+ date: string;
+ tags: string[];
+ subtitle: string;
+ categories: string[];
+ heroImage: string;
+ };
+};
+
+interface BlogProps {
+ blogList: BlogList[];
+}
+
+// The Blog Page Content
+
+const Blog: React.FC = ({ blogList }) => {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
Blog
+
+
+ A collection of thoughts, ideas, and resources from the AI-READI
+ team.
+
+
+
+
+
+
+ >
+ );
+};
+
+export async function getStaticProps() {
+ // Get the posts from the `blog` directory
+ const files = fs.readdirSync(`./blog`);
+
+ const blogList = files.map((fileName) => {
+ // Remove the .md extension and use the file name as the slug
+ const slug = fileName.replace(`.md`, ``);
+
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`blog/${fileName}`, `utf-8`);
+
+ const timeToRead = Math.ceil(wordsCount(rawFileContent) / 265);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ slug,
+ frontMatter,
+ timeToRead,
+ };
+ });
+
+ // sort the posts by date in descending order
+ blogList.sort((a, b) => {
+ const a_date = dayjs(a.frontMatter.date, `YYYY-MM-DD`) as unknown as number;
+
+ const b_date = dayjs(b.frontMatter.date, `YYYY-MM-DD`) as unknown as number;
+
+ return b_date - a_date;
+ });
+
+ // Return the posts data to the page as props
+ return {
+ props: {
+ blogList,
+ },
+ };
+}
+
+export default Blog;
diff --git a/src/pages/blog/tag/[tag].tsx b/src/pages/blog/tag/[tag].tsx
new file mode 100644
index 0000000..b9ba20a
--- /dev/null
+++ b/src/pages/blog/tag/[tag].tsx
@@ -0,0 +1,147 @@
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import dayjs from 'dayjs';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { GetStaticPaths, GetStaticProps } from 'next';
+import { useRouter } from 'next/router';
+import wordsCount from 'words-count';
+
+import BlogPostsLayout from '@/components/blog/BlogPostsLayout';
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+type PostsList = {
+ slug: string;
+ timeToRead: number;
+
+ frontMatter: {
+ title: string;
+ date: string;
+ tags: string[];
+ subtitle: string;
+ categories: string[];
+ heroImage: string;
+ };
+};
+
+interface BlogProps {
+ filteredPostsList: PostsList[];
+}
+
+const TagPage: React.FC = ({ filteredPostsList }) => {
+ const router = useRouter();
+
+ const { tag } = router.query;
+
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
Tag
+
+ {tag}
+
+
+
+
+
+ >
+ );
+};
+
+export const getStaticPaths: GetStaticPaths = async () => {
+ // Get the posts from the `blog` directory
+ const files = fs.readdirSync(`./blog`);
+
+ const PostsList = files.map((fileName) => {
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`blog/${fileName}`, `utf-8`);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ frontMatter,
+ };
+ });
+
+ const tagsList: string[] = [];
+
+ for (const post of PostsList) {
+ const { frontMatter } = post;
+
+ const { tags } = frontMatter;
+
+ for (const tag of tags) {
+ if (!tagsList.includes(tag)) {
+ tagsList.push(tag);
+ }
+ }
+ }
+
+ const paths = [];
+
+ for (const tag of tagsList) {
+ paths.push({
+ params: {
+ tag,
+ },
+ });
+ }
+
+ return {
+ paths,
+ fallback: false,
+ };
+};
+
+export const getStaticProps: GetStaticProps = async ({ params }) => {
+ // Get the posts from the `blog` directory
+ const files = fs.readdirSync(`./blog`);
+
+ const PostsList = files.map((fileName) => {
+ // Remove the .md extension and use the file name as the slug
+ const slug = fileName.replace(`.md`, ``);
+
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`blog/${fileName}`, `utf-8`);
+
+ const timeToRead = Math.ceil(wordsCount(rawFileContent) / 265);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ slug,
+ frontMatter,
+ timeToRead,
+ };
+ });
+
+ // sort the posts by date in descending order
+ PostsList.sort((a, b) => {
+ const a_date = dayjs(a.frontMatter.date, `YYYY-MM-DD`) as unknown as number;
+
+ const b_date = dayjs(b.frontMatter.date, `YYYY-MM-DD`) as unknown as number;
+
+ return b_date - a_date;
+ });
+
+ const filteredPostsList = PostsList.filter((post) => {
+ const { tags } = post.frontMatter;
+
+ return tags.includes(params?.tag);
+ });
+
+ // Return the posts data to the page as props
+ return {
+ props: {
+ filteredPostsList,
+ },
+ };
+};
+
+export default TagPage;
diff --git a/src/pages/blog/tag/index.tsx b/src/pages/blog/tag/index.tsx
new file mode 100644
index 0000000..085ee5b
--- /dev/null
+++ b/src/pages/blog/tag/index.tsx
@@ -0,0 +1,87 @@
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import fs from 'fs';
+import matter from 'gray-matter';
+import Link from 'next/link';
+
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+interface PageProps {
+ tagsList: string[];
+}
+
+// The Blog Page Content
+
+const TagsPage: React.FC = ({ tagsList }) => {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
Tags
+
+
+
+
+
+
+ {tagsList.map((tag) => {
+ return (
+
+
+ {tag}
+
+
+ );
+ })}
+
+
+
+
+ >
+ );
+};
+
+export async function getStaticProps() {
+ // Get the posts from the `blog` directory
+ const files = fs.readdirSync(`./blog`);
+
+ const PostsList = files.map((fileName) => {
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`blog/${fileName}`, `utf-8`);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ frontMatter,
+ };
+ });
+
+ const tagsList: string[] = [];
+
+ for (const post of PostsList) {
+ const { frontMatter } = post;
+
+ const { tags } = frontMatter;
+
+ for (const tag of tags) {
+ if (!tagsList.includes(tag)) {
+ tagsList.push(tag);
+ }
+ }
+ }
+
+ tagsList.sort();
+
+ return {
+ props: {
+ tagsList,
+ },
+ };
+}
+
+export default TagsPage;
diff --git a/src/pages/components.tsx b/src/pages/components.tsx
new file mode 100644
index 0000000..f842694
--- /dev/null
+++ b/src/pages/components.tsx
@@ -0,0 +1,339 @@
+// !STARTERCONF You can delete this page
+import clsx from 'clsx';
+import { useState } from 'react';
+
+import Button from '@/components/buttons/Button';
+import Layout from '@/components/layout/Layout';
+import ArrowLink from '@/components/links/ArrowLink';
+import ButtonLink from '@/components/links/ButtonLink';
+import PrimaryLink from '@/components/links/PrimaryLink';
+import UnderlineLink from '@/components/links/UnderlineLink';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import NextImage from '@/components/NextImage';
+import Seo from '@/components/Seo';
+import Skeleton from '@/components/Skeleton';
+
+type Color = (typeof colorList)[number];
+
+export default function ComponentsPage() {
+ const [mode, setMode] = useState<'dark' | 'light'>('light');
+
+ const [color, setColor] = useState('sky');
+
+ function toggleMode() {
+ return mode === 'dark' ? setMode('light') : setMode('dark');
+ }
+
+ const textColor = mode === 'dark' ? 'text-gray-300' : 'text-gray-600';
+
+ return (
+
+
+
+
+
+
+
Built-in Components
+
+ Back to Home
+
+
+
+
+ Set to {mode === 'dark' ? 'light' : 'dark'}
+
+ Randomize CSS Variable
+
+
+
+
+ Customize Colors
+
+ You can change primary color to any Tailwind CSS colors. See
+ globals.css to change your color.
+
+
+ setColor(e.target.value as Color)}
+ >
+ {colorList.map((c) => (
+
+ {c}
+
+ ))}
+
+
+ Check list of colors
+
+
+
+
+ 50
+
+
+ 100
+
+
+ 200
+
+
+ 300
+
+
+ 400
+
+
+ 500
+
+
+ 600
+
+
+ 700
+
+
+ 800
+
+
+ 900
+
+
+
+
+ UnstyledLink
+
+ No style applied, differentiate internal and outside links,
+ give custom cursor for outside links.
+
+
+ Internal Links
+
+ Outside Links
+
+
+
+
+ PrimaryLink
+
+ Add styling on top of UnstyledLink, giving a primary color to
+ the link.
+
+
+
Internal Links
+
+ Outside Links
+
+
+
+
+ UnderlineLink
+
+ Add styling on top of UnstyledLink, giving a dotted and
+ animated underline.
+
+
+ Internal Links
+
+ Outside Links
+
+
+
+
+ ArrowLink
+
+ Useful for indicating navigation, I use this quite a lot, so
+ why not build a component with some whimsy touch?
+
+
+
+ Direction Left
+
+
Direction Right
+
+ Polymorphic
+
+
+ Polymorphic
+
+
+
+
+ ButtonLink
+
+ Button styled link with 3 variants.
+
+
+
+ Primary Variant
+
+
+ Outline Variant
+
+
+ Ghost Variant
+
+
+ Dark Variant
+
+
+ Light Variant
+
+
+
+
+ Button
+
+ Ordinary button with style.
+
+
+ Primary Variant
+
+ Outline Variant
+
+
+ Ghost Variant
+
+ Dark Variant
+ Light Variant
+
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+
+
+ Custom 404 Page
+
+ Styled 404 page with some animation.
+
+
+ Visit the 404 page
+
+
+
+ Next Image
+
+ Next Image with default props and skeleton animation
+
+
+
+
+ Skeleton
+
+ Skeleton with shimmer effect
+
+
+
+
+
+
+
+
+ );
+}
+
+const colorList = [
+ 'rose',
+ 'pink',
+ 'fuchsia',
+ 'purple',
+ 'violet',
+ 'indigo',
+ 'blue',
+ 'sky',
+ 'cyan',
+ 'teal',
+ 'emerald',
+ 'green',
+ 'lime',
+ 'yellow',
+ 'amber',
+ 'orange',
+ 'red',
+ 'slate',
+ 'gray',
+ 'zinc',
+ 'neutral',
+ 'stone',
+] as const;
diff --git a/src/pages/contact.tsx b/src/pages/contact.tsx
new file mode 100644
index 0000000..9c8e186
--- /dev/null
+++ b/src/pages/contact.tsx
@@ -0,0 +1,54 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+import Head from 'next/head';
+
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+export default function ContactUs() {
+ return (
+ <>
+
+
+
+
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+ Contact Us
+
+
+
+ Have a question about our project? Want to provide feedback
+ about our dataset or anything else? Need help using our data?
+ Let us know!
+
+
+
+ Note that we are mostly looking for feedback at this moment but
+ will try our best to answer questions. Please use an
+ institutional email for faster response and preventing your
+ query from being flagged as a spam.
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/pages/cookies/content.md b/src/pages/cookies/content.md
new file mode 100644
index 0000000..02fbb5c
--- /dev/null
+++ b/src/pages/cookies/content.md
@@ -0,0 +1,25 @@
+# Cookie Policy
+
+**Last updated February 08, 2023**
+
+## What Are Cookies?
+
+A cookie is a file that is downloaded to a device (computer or mobile phone) when accessing certain web pages. Cookies allow a web page, among other things, to store and retrieve information about the browsing habits of a user or a computer and, depending on the information they contain and the way they use their equipment, they can be used to recognize to user.
+
+For more information, please visit [AllAboutCookies.org](https://www.allaboutcookies.org/).
+
+## How We Use Cookies
+
+We do not use third-party cookies or send any information to third-parties. We do collect website usage information via the privacy focused, self hosted and open source [Umami](https://umami.is/) platform. Umami lets us gather the data we need while respecting your privacy. Umami does not collect any personal information, does not use cookies, does not track users across websites, and is GDPR compliant. All data collected is anonymized, making it impossible to identify any individual user. To see exactly what information we collect you can preview our [public dashboard here](https://umami.aireadi.org/share/DgUtymoNwpZGNnla/aireadi.org).
+
+## Additional Information
+
+When you access third party sites on our Sites, or when you are reading integration or social media links, cookies can be created by the companies disseminating these links. These third parties may be able to use cookies in the context of AI-READI's Services (partners or other third parties supplying content or services available on the AI-READI site) and are responsible for the cookies they install, and it is their conditions on cookies which apply. For more information, you are advised to check the cookie policy directly on these third-party sites concerning their use of cookies.
+
+## Questions and complaints
+
+Please feel free to contact us if you have any questions or complaints about AI-READI's Cookie Policy.
+
+**Contact form**: [aireadi.org/contact](https://aireadi.org/contact)
+
+**Email**: [contact@aireadi.org](mailto:contact@aireadi.org)
diff --git a/src/pages/cookies/index.tsx b/src/pages/cookies/index.tsx
new file mode 100644
index 0000000..e238043
--- /dev/null
+++ b/src/pages/cookies/index.tsx
@@ -0,0 +1,44 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+import fs from 'fs';
+import { GetStaticProps } from 'next';
+
+import markdownToHtml from '@/lib/markdownToHtml';
+
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+const CookiePolicyPage: React.FC<{ pageContent: string }> = ({
+ pageContent,
+}) => {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export const getStaticProps: GetStaticProps = async () => {
+ const fileContent = fs.readFileSync(`src/pages/cookies/content.md`, `utf-8`);
+
+ const pageContent = await markdownToHtml(fileContent || ``);
+
+ return {
+ props: {
+ pageContent,
+ },
+ };
+};
+
+export default CookiePolicyPage;
diff --git a/src/pages/data/index.tsx b/src/pages/data/index.tsx
new file mode 100644
index 0000000..fb062dd
--- /dev/null
+++ b/src/pages/data/index.tsx
@@ -0,0 +1,67 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeadingWithDescription from '@/components/content/ContentHeadingDescription';
+import ImagesWithHeadingAndDescription from '@/components/content/ContentWithImages';
+import FaqList from '@/components/content/FaqList';
+import FeatureList from '@/components/content/FeatureList';
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import SideImage from '@/components/hero/HeroSideImage';
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+/**
+ * SVGR Support
+ * Caveat: No React Props Type.
+ *
+ * You can override the next-env if the type is important to you
+ * @see https://stackoverflow.com/questions/68103844/how-to-override-next-js-svg-module-declaration
+ */
+
+export default function HomePage() {
+ return (
+ <>
+ Skip to content
+
+
+ {/* */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/pages/dataset.tsx b/src/pages/dataset.tsx
new file mode 100644
index 0000000..38f8b4f
--- /dev/null
+++ b/src/pages/dataset.tsx
@@ -0,0 +1,68 @@
+/* eslint-disable @next/next/no-img-element */
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import Layout from '@/components/layout/Layout';
+import ButtonLink from '@/components/links/ButtonLink';
+import Seo from '@/components/Seo';
+import Viz from '@/components/Viz';
+
+const Dataset: React.FC = () => {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+ About
+
+
+
+ The AI-READI dataset is accessible from FAIRhub at fairhub.io.
+ The dataset's landing page on FAIRhub contains various
+ information about the dataset. Additional details are available
+ in the dataset documentation at docs.aireadi.org
+
+
+
+
+ Access our data
+
+
+ See our documentation
+
+
+
+
+
+
+
+
+
+ Dataset snapshot
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export default Dataset;
diff --git a/src/pages/events/[slug].tsx b/src/pages/events/[slug].tsx
new file mode 100644
index 0000000..add63ba
--- /dev/null
+++ b/src/pages/events/[slug].tsx
@@ -0,0 +1,222 @@
+import { Tag, VStack } from '@chakra-ui/react';
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import { Icon } from '@iconify/react';
+import { AddToCalendarButton } from 'add-to-calendar-button-react';
+import dayjs from 'dayjs';
+import fs from 'fs';
+import matter from 'gray-matter';
+import { GetStaticPaths, GetStaticProps } from 'next';
+import Image from 'next/image';
+import { toast, ToastContainer } from 'react-toastify';
+
+import 'react-toastify/dist/ReactToastify.css';
+
+import markdownToHtml from '@/lib/markdownToHtml';
+
+import EventDates from '@/components/events/EventDates';
+import Layout from '@/components/layout/Layout';
+import PostBody from '@/components/post/PostBody';
+import Seo from '@/components/Seo';
+
+// The page for each post
+const EventPost: React.FC = ({ slug, frontMatter, content }) => {
+ const {
+ title,
+ startDateTime,
+ endDateTime,
+ heroImage,
+ subtitle,
+ type,
+ location,
+ timezone,
+ } = frontMatter;
+
+ const copyLinkToClipboard = () => {
+ navigator.clipboard
+ .writeText(`https://aireadi.org/blog/${slug}`)
+ .then(() => {
+ toast.success(`Copied to clipboard succesfully.`, {
+ position: `bottom-right`,
+ autoClose: 5000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ })
+ .catch((_error) => {
+ toast.error(`Failed to copy to clipboard.`, {
+ position: `bottom-right`,
+ autoClose: 5000,
+ hideProgressBar: false,
+ closeOnClick: true,
+ pauseOnHover: true,
+ draggable: true,
+ progress: undefined,
+ });
+ });
+ };
+
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+ {type}
+
+
+
+ {title}
+
+
+
{subtitle}
+
+
+
+
+
+
+
+
+
+
+
+ {location || `Online`}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Share this event:{` `}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export const getStaticPaths: GetStaticPaths = async () => {
+ const files = fs.readdirSync(`./events`);
+
+ const paths = files.map((fileName) => ({
+ params: {
+ slug: fileName.replace(`.md`, ``),
+ },
+ }));
+
+ return {
+ paths,
+ fallback: false,
+ };
+};
+
+// The page for each post
+
+export const getStaticProps: GetStaticProps = async ({ params }) => {
+ const slug = params?.slug;
+
+ const fileName = fs.readFileSync(`events/${slug}.md`, `utf-8`);
+
+ const { data: frontMatter, content: fileContent } = matter(fileName);
+
+ const content = await markdownToHtml(fileContent || ``);
+
+ return {
+ props: {
+ slug,
+ frontMatter,
+ content,
+ },
+ };
+};
+
+export default EventPost;
diff --git a/src/pages/events/index.tsx b/src/pages/events/index.tsx
new file mode 100644
index 0000000..0068b46
--- /dev/null
+++ b/src/pages/events/index.tsx
@@ -0,0 +1,83 @@
+import { SkipNavLink } from '@chakra-ui/skip-nav';
+import dayjs from 'dayjs';
+import fs from 'fs';
+import matter from 'gray-matter';
+import wordsCount from 'words-count';
+
+import EventsLayout from '@/components/events/EventsLayout';
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+// The Blog Page Content
+
+const Blog: React.FC = ({ eventList }) => {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
Events
+
+
+ A record of all past, present and future events and workshops from
+ the AI-READI team are listed here.
+
+
+
+
+
+
+ >
+ );
+};
+
+export async function getStaticProps() {
+ // Get the events from the `events` directory
+ const files = fs.readdirSync(`./events`);
+
+ const eventList = files.map((fileName) => {
+ // Remove the .md extension and use the file name as the slug
+ const slug = fileName.replace(`.md`, ``);
+
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`events/${fileName}`, `utf-8`);
+
+ const timeToRead = Math.ceil(wordsCount(rawFileContent) / 265);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ slug,
+ frontMatter,
+ timeToRead,
+ };
+ });
+
+ // sort the posts by date in descending order
+ eventList.sort((a, b) => {
+ const a_date = dayjs(
+ a.frontMatter.startDateTime,
+ `YYYY-MM-DD`,
+ ) as unknown as number;
+
+ const b_date = dayjs(
+ b.frontMatter.startDateTime,
+ `YYYY-MM-DD`,
+ ) as unknown as number;
+
+ return b_date - a_date;
+ });
+
+ // Return the posts data to the page as props
+ return {
+ props: {
+ eventList,
+ },
+ };
+}
+
+export default Blog;
diff --git a/src/pages/faq.tsx b/src/pages/faq.tsx
new file mode 100644
index 0000000..75291b9
--- /dev/null
+++ b/src/pages/faq.tsx
@@ -0,0 +1,110 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+import Head from 'next/head';
+
+import Layout from '@/components/layout/Layout';
+import UnderlineLink from '@/components/links/UnderlineLink';
+import Seo from '@/components/Seo';
+
+export default function ContactUs() {
+ return (
+ <>
+
+
+
+
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+ Frequently Asked Questions
+
+
+
+ Have a different question and can't find the answer you're
+ looking for?
+
+
+ Contact us
+ {' '}
+ and we'll get back to you as soon as we can.
+
+
+
+
+ How do I access the controlled set of the AI-READI dataset?
+
+
+
+ We are currently working on a suitable process for getting
+ access to our controlled set and do not have an anticipated
+ date for completing it. Please keep checking our{' '}
+
+ website
+ {' '}
+ to learn when it is out.
+
+
+
+
+
+
+ What is the tentative schedule for releasing subsequent
+ versions of the AI-READI dataset with data from additional
+ study participants?
+
+
+
+ Note that this is an ongoing study and we are releasing data
+ progressively as it is being collected. Our next release is
+ planned towards the end of Fall 2024 with data from
+ approximately 1,000 participants. Another release will
+ likely be made a year later before the final release with
+ data from 4,000 participants is made during Fall or Winter
+ 2026.
+
+
+
+
+
+
+ How long would it take for me to receive the download link for
+ the dataset after I complete the access process?
+
+
+
+ You should receive the link typically within 2 weeks if not
+ sooner depending on the number of requests we receive during
+ that time. If you have not received it after 3 weeks, please
+ reach out to us through our{' '}
+
+ contact form
+
+ .
+
+
+
+
+ {/*
+ We are not taking any queries at this time. We hope you
+ can find all the necessary information on our website.
+
*/}
+
+
+
+
+ >
+ );
+}
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
new file mode 100644
index 0000000..5b187d3
--- /dev/null
+++ b/src/pages/index.tsx
@@ -0,0 +1,233 @@
+/* eslint-disable @next/next/no-img-element */
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+import dayjs from 'dayjs';
+import fs from 'fs';
+import matter from 'gray-matter';
+
+import ImageWithCredit from '@/components/images/ImageWithCredit';
+import Layout from '@/components/layout/Layout';
+import ButtonLink from '@/components/links/ButtonLink';
+import Seo from '@/components/Seo';
+
+/**
+ * SVGR Supportgray
+ * Caveat: No React Props Type.
+ *
+ * You can override the next-env if the type is important to you
+ * @see https://stackoverflow.com/questions/68103844/how-to-override-next-js-svg-module-declaration
+ */
+
+const HomePage: React.FC = ({ slug, frontMatter }) => {
+ const {
+ title,
+ startDateTime,
+ endDateTime,
+ location,
+ subtitle,
+ heroImage,
+ timezone,
+ type,
+ } = frontMatter;
+
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+ Sed quidem sapiente cum sint saepe non doloremque velit qui
+ veniam praesentium aut repudiandae laboriosam id autem
+ facilis.
+
+
+
+ Non sunt consequuntur non autem numquam qui accusamus saepe et
+ rerum mollitia rem recusandae assumenda
+
+
+
+
+
+
+ Non sunt consequuntur non autem numquam
+
+
+ Rerum mollitia rem recusandae assumenda
+
+
+
+ Qui accusamus saepe
+
+
+
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet
+
+
+ Lorem ipsum dolor sit amet. Vel aspernatur vero est
+ praesentium reprehenderit est distinctio expedita non enim
+ animi. Non inventore quas aut assumenda quisquam sit
+ voluptates velit ea doloremque debitis. Ab vitae nihil et vero
+ accusantium sed corrupti perspiciatis qui laudantium dicta quo
+ nulla voluptas qui commodi dolor. Qui rerum nisi qui vitae
+ atque aut consequatur tempora ex error enim.
+
+
+
+
+ Lorem ipsum dolor sit amet.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet.
+
+
+ Sed quidem sapiente cum sint saepe non doloremque velit qui
+ veniam praesentium aut repudiandae laboriosam id autem
+ facilis. Ut quidem facere id maxime ipsum 33 maiores natus et
+ commodi eveniet qui beatae ipsam et nostrum optio sit voluptas
+ voluptatem. Aut esse dolorem cum suscipit voluptate et
+ deserunt obcaecati qui fugiat veniam 33 enim veniam qui
+ galisum perferendis. Et dolores magnam hic provident quae ea
+ voluptates sint ut earum internos ut facere quidem.
+
+
+
+
+ Lorem ipsum dolor sit amet
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet.
+
+
+ Est molestiae recusandae et dolore cupiditate aut
+ necessitatibus neque ut quod dolor sed voluptatibus esse vel
+ nobis rerum. Qui praesentium quam non esse voluptatem aut
+ accusantium porro et sunt voluptate aut quaerat asperiores et
+ voluptas libero est autem ipsam. Non sunt consequuntur non
+ autem numquam qui accusamus saepe et rerum mollitia rem
+ recusandae assumenda.
+
+
+
+
+ Lorem ipsum dolor sit amet
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export async function getStaticProps() {
+ // Get the events from the `events` directory
+ const files = fs.readdirSync(`./events`);
+
+ const eventList = files.map((fileName) => {
+ // Remove the .md extension and use the file name as the slug
+ const slug = fileName.replace(`.md`, ``);
+
+ // Read the raw content of the file and parse the frontMatter
+ const rawFileContent = fs.readFileSync(`events/${fileName}`, `utf-8`);
+
+ const { data: frontMatter } = matter(rawFileContent);
+
+ return {
+ slug,
+ frontMatter,
+ };
+ });
+
+ // Get the next upcoming event
+ let closestUpcomingEvent = eventList
+ .filter((event) => dayjs(event.frontMatter.startDateTime).isAfter(dayjs()))
+ .sort(
+ (a, b) =>
+ dayjs(a.frontMatter.startDateTime).valueOf() -
+ dayjs(b.frontMatter.startDateTime).valueOf(),
+ )[0];
+
+ if (!closestUpcomingEvent) {
+ // If there are no upcoming events, get the most recent event
+ closestUpcomingEvent = eventList.sort(
+ (a, b) =>
+ dayjs(b.frontMatter.startDateTime).valueOf() -
+ dayjs(a.frontMatter.startDateTime).valueOf(),
+ )[0];
+ }
+
+ // Return the posts data to the page as props
+ return {
+ props: {
+ slug: closestUpcomingEvent.slug || '',
+ frontMatter: closestUpcomingEvent.frontMatter || {},
+ },
+ };
+}
+
+export default HomePage;
diff --git a/src/pages/modules/data.tsx b/src/pages/modules/data.tsx
new file mode 100644
index 0000000..85bb8c7
--- /dev/null
+++ b/src/pages/modules/data.tsx
@@ -0,0 +1,129 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import ResourcesItemIcon from '@/components/icons/ResourcesItemIcon';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import ModuleMembers from '@/components/modules/ModuleMembers';
+import Seo from '@/components/Seo';
+
+import ModuleMembersFilter from '@/utils/moduleMembersFilter';
+
+const DataModule: React.FC = ({ TeamMembers }) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview of the Data Acquisition Module
+
+
+ The University of Alabama at Birmingham (UAB) will oversee and
+ coordinate data acquisition activities over 3 sites: UAB,
+ University of California San Diego (UCSD) and University of
+ Washington (UW).
+
+
+
+
+ Data is responsible for:
+
+
+ Determining all domains and variables for the dataset.
+ Developing the protocol.
+ Drafting the Manual of Procedures (MOP).
+
+ Implementing the protocol for data collection, starting with
+ the hiring, training, and certification of Clinical Research
+ Coordinators (CRCs), followed by the enrollment of
+ participants and participant visits.
+
+
+ Overseeing the biorepository storage of biospecimens at UAB
+ for future ancillary studies.
+
+
+
+
+
+
+
+
+
+
+ Resources
+
+
+
+
+ {Resources.map((resource) => (
+
+
+
+
+ {resource.title}
+
+
+ {resource.description}
+
+
+
+ ))}
+
+
+
+
+
+
+
+ >
+);
+
+const Resources = [
+ {
+ title: 'Data Acquisition Module',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'publication',
+ },
+ {
+ title: 'Github',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'github',
+ },
+];
+
+export const getStaticProps = async () => {
+ const TeamMembers = await ModuleMembersFilter('data');
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default DataModule;
diff --git a/src/pages/modules/ethics.tsx b/src/pages/modules/ethics.tsx
new file mode 100644
index 0000000..5dc87ba
--- /dev/null
+++ b/src/pages/modules/ethics.tsx
@@ -0,0 +1,140 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import ResourcesItemIcon from '@/components/icons/ResourcesItemIcon';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import ModuleMembers from '@/components/modules/ModuleMembers';
+import Seo from '@/components/Seo';
+
+import ModuleMembersFilter from '@/utils/moduleMembersFilter';
+
+const EthicsModule: React.FC = ({ TeamMembers }) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview of the Ethical and Trustworthy Artificial Intelligence
+ (ETAI) Module
+
+
+ The goal of the ETAI module is to establish a culture of ethical
+ inquiry throughout the data generation project team.
+
+
+ ETAI will have continuous interactions with the other five
+ modules within AI-READI and with the Bridge2AI Center.
+
+
+
+
+ The ETAI module is responsible for:
+
+
+
+ Developing an in-depth needs assessment of each module on
+ their understanding of the unique ethical, legal and social
+ implications (ELSIs) of big data research.
+
+
+ Delivering educational activities tailored for each module to
+ improve their grasp of ELSIs.
+
+
+ Developing Community Intercultural Partnership Councils;
+ Members will be asked to help to develop accessible informed
+ consent and patient recruitment communications, and to
+ identify barriers to participation that can be addressed in
+ the protocol.
+
+
+ Seeking ways to establish pathways for partnership with the
+ Native American tribes to identify facilitators and barriers
+ to data acquisition and usage.
+
+
+
+
+
+
+
+
+
+
+ Resources
+
+
+
+
+ {Resources.map((resource) => (
+
+
+
+
+ {resource.title}
+
+
+ {resource.description}
+
+
+
+ ))}
+
+
+
+
+
+
+
+ >
+);
+
+const Resources = [
+ {
+ title: 'Data Acquisition Module',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'publication',
+ },
+ {
+ title: 'Github',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'github',
+ },
+];
+
+export const getStaticProps = async () => {
+ const TeamMembers = await ModuleMembersFilter('ethics');
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default EthicsModule;
diff --git a/src/pages/modules/index.tsx b/src/pages/modules/index.tsx
new file mode 100644
index 0000000..0cacca0
--- /dev/null
+++ b/src/pages/modules/index.tsx
@@ -0,0 +1,129 @@
+/* eslint-disable @next/next/no-img-element */
+import { Divider } from '@chakra-ui/react';
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import Layout from '@/components/layout/Layout';
+import ButtonLink from '@/components/links/ButtonLink';
+import Seo from '@/components/Seo';
+
+const Modules = [
+ {
+ title: 'Data Acquisition',
+ image: '/images/modules/data-hero.svg',
+ tagline:
+ 'Develop and implement a protocol that will generate a diverse and ethically-sourced dataset for the study of type 2 diabetes',
+ href: '/modules/data',
+ },
+ {
+ title: 'Ethical and Trustworthy Artificial Intelligence',
+ image:
+ 'https://images.unsplash.com/photo-1503551723145-6c040742065b-v2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80',
+ tagline: 'Establishing ethical guidelines for sharing AI-ready datasets',
+ href: '/modules/ethics',
+ },
+ {
+ title: 'Plan for Enhancing Diverse Perspectives',
+ image: '/images/modules/pedp-hero.jpeg',
+ tagline:
+ 'A cross disciplinary PEDP Committee focused on better understanding and finding tangible, equitable strategies to enhance diversity in the realm of AI/ML and health.',
+ href: '/modules/pedp',
+ },
+ {
+ title: 'Skills & Workforce Development',
+ image:
+ 'https://images.unsplash.com/photo-1524178232363-1fb2b075b655?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80',
+ tagline: 'Developing a diverse AI/ML-biomedical research workforce.',
+ href: '/modules/skills',
+ },
+ {
+ title: 'Standards',
+ image:
+ 'https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2064&q=80',
+ tagline:
+ 'Establishing standards for preparing and sharing AI-ready datasets',
+ href: '/modules/standards',
+ },
+ {
+ title: 'Teaming',
+ image:
+ 'https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80',
+ tagline:
+ 'Applying and advancing team science while transforming our AI-READI project from a multidisciplinary endeavor into a high-performing, interdisciplinary collaboration.',
+ href: '/modules/teaming',
+ },
+ {
+ title: 'Tools',
+ image:
+ 'https://images.unsplash.com/photo-1629904869392-ae2a682d4d01?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1752&q=80',
+ tagline:
+ 'Developing tools and software for managing, curating, and sharing AI-ready datasets',
+ href: '/modules/tools',
+ },
+ {
+ title: 'Administration',
+ image:
+ 'https://images.unsplash.com/photo-1672935347581-ad3363263d56?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1740&q=80',
+ tagline: 'Managing the project and its resources.',
+ },
+];
+
+export default function HomePage() {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+ {Modules.map((module) => (
+
+
+
+
+
+ {module.title}
+
+
+
+
+
+ {module.tagline}
+
+
+ {module.href && (
+
+
+ Learn more about the {module.title} module
+
+
+ )}
+
+
+ ))}
+
+
+
+
+ >
+ );
+}
diff --git a/src/pages/modules/pedp.tsx b/src/pages/modules/pedp.tsx
new file mode 100644
index 0000000..bd18c50
--- /dev/null
+++ b/src/pages/modules/pedp.tsx
@@ -0,0 +1,136 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import ResourcesItemIcon from '@/components/icons/ResourcesItemIcon';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import ModuleMembers from '@/components/modules/ModuleMembers';
+import Seo from '@/components/Seo';
+
+import ModuleMembersFilter from '@/utils/moduleMembersFilter';
+
+const PedpModule: React.FC = ({ TeamMembers }) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview of the Plan for Enhancing Diverse Perspectives
+
+
+ Our mission is to help ensure that AI-READI and the science we
+ design and conduct works to reduce health disparities caused or
+ perpetuated by AI/ML.
+
+
+ An early outcome to gauge and enhance diverse perspectives is
+ the formation of the AI-READI PEDP Committee with
+ representative(s) from each module.
+
+
+
+
+ In its work, the PEDP Committee will assess the current state of
+ AI/ML and precision health approaches, and their impact on
+ health equity, and work with the modules to implement strategies
+ to enhance inclusion of underrepresented and traditionally
+ underemphasized voices at all stages of the project.
+
+
+ Our PEDP Committee is particularly focused on diversity and
+ inclusion with regard to:
+
+
+ Insights from a range of academic disciplines
+ Insights from a range of skill levels
+
+ Insights from diverse geographies and populations (led by
+ ETAI)
+
+
+
+
+
+
+
+
+
+
+
+ Resources
+
+
+
+
+ {Resources.map((resource) => (
+
+
+
+
+ {resource.title}
+
+
+ {resource.description}
+
+
+
+ ))}
+
+
+
+
+
+
+
+ >
+);
+
+const Resources = [
+ {
+ title: 'Data Acquisition Module',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'publication',
+ },
+ {
+ title: 'Github',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'github',
+ },
+];
+
+export const getStaticProps = async () => {
+ const TeamMembers = await ModuleMembersFilter('pedp');
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default PedpModule;
diff --git a/src/pages/modules/skills.tsx b/src/pages/modules/skills.tsx
new file mode 100644
index 0000000..06cf097
--- /dev/null
+++ b/src/pages/modules/skills.tsx
@@ -0,0 +1,205 @@
+/* eslint-disable @next/next/no-img-element */
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import ResourcesItemIcon from '@/components/icons/ResourcesItemIcon';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import ModuleMembers from '@/components/modules/ModuleMembers';
+import Seo from '@/components/Seo';
+
+import ModuleMembersFilter from '@/utils/moduleMembersFilter';
+
+const SkillsModule: React.FC = ({ TeamMembers }) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview of the Skills & Workforce Development Module
+
+
+ The overall objective of the AI-READI Skills and Workforce
+ Development Module is to develop and deploy training and career
+ development activities for individuals who will effectively
+ contribute to translational AI research, particularly in the
+ biomedical/clinical domain.
+
+
+
+
+ To achieve this objective, our module is engaged in the
+ following aims:
+
+
+
+ Design and implement a structured, yearlong mentored research
+ internship program to facilitate exposure to skills in AI and
+ data science for post-baccalaureate students, medical
+ students, pre-doctoral students, postdoctoral fellows, and
+ other health care professionals wanting to gain AI expertise.
+
+
+ Deploy training and skills development activities for
+ researchers at all levels using the flagship datasets,
+ spanning ethics, tools, and standards.
+
+
+ Increase the range of perspectives by encouraging broad
+ exposure to AI-READI dataset from a variety of individuals.
+
+
+
+
+
+
+
+
+
+
+ Resources
+
+
+
+
+ {Resources.map((resource) => (
+
+
+
+
+ {resource.title}
+
+
+ {resource.description}
+
+
+
+ ))}
+
+
+
+
+
+
+
+ Intern Orientation and Onboarding
+
+
+
+
+
+ Faculty at UC San Diego hosted an immersive AI training bootcamp
+ for a group of interns participating in the AI-READI program.
+ Program PIs{' '}
+
+ Sally Baxter, MD
+
+ , and{' '}
+
+ Linda Zangwill, PhD
+ {' '}
+ are overseeing the{' '}
+
+ yearlong research internship program
+
+ , and the bootcamp itself was led by UC San Diego Halıcıoğlu Data
+ Science Institute faculty{' '}
+
+ Virginia de Sa, PhD
+
+ ,{' '}
+
+ Bradley Voytek, PhD
+
+ , and Gary Cottrell, PhD.
+ Bootcamp participants engaged in hands-on practice in programming
+ languages and learning fundamentals regarding AI and machine
+ learning. The participants included a wide range of individuals
+ ranging from master's students to postdoctoral fellows coming from
+ a broad range of disciplines.
+
+
+
+
+
+
+ >
+);
+
+const Resources = [
+ {
+ title: 'AI-READI Internship Program',
+ description:
+ 'One component of AI-READI is the Skills and Workforce Development Module, which includes the development of a yearlong mentored research internship program aimed at expanding the future workforce at the intersection of data science/AI and the biomedical sciences and clinical research.',
+ link: 'https://shileyeye.ucsd.edu/research/ai_readi',
+ type: 'website',
+ },
+];
+
+export const getStaticProps = async () => {
+ const TeamMembers = await ModuleMembersFilter('skills');
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default SkillsModule;
diff --git a/src/pages/modules/standards.tsx b/src/pages/modules/standards.tsx
new file mode 100644
index 0000000..0a744e9
--- /dev/null
+++ b/src/pages/modules/standards.tsx
@@ -0,0 +1,134 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import ResourcesItemIcon from '@/components/icons/ResourcesItemIcon';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import ModuleMembers from '@/components/modules/ModuleMembers';
+import Seo from '@/components/Seo';
+
+import ModuleMembersFilter from '@/utils/moduleMembersFilter';
+
+const StandardsModule: React.FC = ({ TeamMembers }) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview of the Standards Module
+
+
+ The goal of the Standards module is to establish a set of
+ formatting requirements for the different types of data that
+ will be collected for the AI-READI dataset.
+
+
+ The Standards Module works to streamline the development of AI
+ models for researchers who access the AI-READI dataset.
+ Standardized data will facilitate data sharing as well as
+ evaluation and reproducibility of study results.
+
+
+
+
+ The Standards Module is responsible for:
+
+
+
+ Selecting data standards that are at the cutting edge of open
+ source data sharing.
+
+
+ Working with the data acquisition module to better understand
+ the types of data being generated from the various collection
+ sources.
+
+
+ Coordinating with the Tools module to implement the selected
+ standards in the online platform.
+
+
+
+
+
+
+
+
+
+
+ Resources
+
+
+
+
+ {Resources.map((resource) => (
+
+
+
+
+ {resource.title}
+
+
+ {resource.description}
+
+
+
+ ))}
+
+
+
+
+
+
+
+ >
+);
+
+const Resources = [
+ {
+ title: 'Data Acquisition Module',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'publication',
+ },
+ {
+ title: 'Github',
+ description: 'A collection of resources to help you get started.',
+ link: '/data',
+ type: 'github',
+ },
+];
+
+export const getStaticProps = async () => {
+ const TeamMembers = await ModuleMembersFilter('standards');
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default StandardsModule;
diff --git a/src/pages/modules/teaming.tsx b/src/pages/modules/teaming.tsx
new file mode 100644
index 0000000..d2ddc83
--- /dev/null
+++ b/src/pages/modules/teaming.tsx
@@ -0,0 +1,116 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import ResourcesItemIcon from '@/components/icons/ResourcesItemIcon';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import ModuleMembers from '@/components/modules/ModuleMembers';
+import Seo from '@/components/Seo';
+
+import ModuleMembersFilter from '@/utils/moduleMembersFilter';
+
+const TeamingModule: React.FC = ({ TeamMembers }) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview of the Teaming Module
+
+
+ The Teaming module is working across AI-READI modules to develop
+ an effective multi-team system, capable of achieving individual
+ module, AI-READI, and Bridge2AI goals to create and share a
+ flagship, ethically sourced, dataset for Type 2 diabetes.
+
+
+
+
+ We are applying team science by recognizing boundaries and
+ interaction patterns of our multi-team system, and analyzing and
+ intervening on interaction patterns to promote teaming. We are
+ advancing team science by leveraging quantitative and
+ qualitative methods to develop a new understanding of teaming
+ across disciplinary and community interfaces. We also support
+ AI-READI's committee charged with achieving our Plan for
+ Enhancing Diverse Perspectives.
+
+
+
+
+
+
+
+
+
+ Resources
+
+
+
+
+ {Resources.map((resource) => (
+
+
+
+
+ {resource.title}
+
+
+ {resource.description}
+
+
+
+ ))}
+
+
+
+
+
+
+
+ >
+);
+
+const Resources = [
+ {
+ title: 'Multi-team system baseline questionnaire',
+ description:
+ 'You are invited to participate in a questionnaire about how individuals, teams, and systems of teams collaborate and coordinate to create an ethically sourced dataset for use with artificial intelligence.',
+ link: 'https://stanforduniversity.qualtrics.com/jfe/form/SV_2rz7byaK1HPwX9c',
+ type: 'survey',
+ },
+];
+
+export const getStaticProps = async () => {
+ const TeamMembers = await ModuleMembersFilter('teaming');
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default TeamingModule;
diff --git a/src/pages/modules/tools.tsx b/src/pages/modules/tools.tsx
new file mode 100644
index 0000000..b136168
--- /dev/null
+++ b/src/pages/modules/tools.tsx
@@ -0,0 +1,137 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import ResourcesItemIcon from '@/components/icons/ResourcesItemIcon';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import ModuleMembers from '@/components/modules/ModuleMembers';
+import Seo from '@/components/Seo';
+
+import ModuleMembersFilter from '@/utils/moduleMembersFilter';
+
+const ToolsModule: React.FC = ({ TeamMembers }) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Overview of the Tools Module
+
+
+ The Tools module is developing{' '}
+
+ fairhub.io
+
+ , a platform for easily managing, preparing, and sharing FAIR
+ and AI-ready datasets.
+
+
+
+
+ Leveraging a partnership with Microsoft,{' '}
+
+ fairhub.io
+ {' '}
+ will be developed using Azure Cloud Services. The platform will
+ include convenient tools to track clinical and biomedical data
+ collection, prepare and share FAIR data, and conveniently access
+ data for future AI/ML analysis.
+
+
+ In addition, the Tools module will support the effort of the
+ Data Acquisition module by setting up and managing additional
+ tools such REDCap.
+
+
+
+
+
+
+
+
+
+ Resources
+
+
+
+
+ {Resources.map((resource) => (
+
+
+
+
+
+ {resource.title}
+
+
+
+ {resource.description}
+
+
+
+ ))}
+
+
+
+
+
+
+
+ >
+);
+
+const Resources = [
+ {
+ title: 'The fairhub.io platform',
+ description: 'Link to the fairhub.io platform',
+ link: 'https://fairhub.io',
+ type: 'website',
+ },
+ {
+ title: 'GitHub organization of the AI-READI project',
+ description:
+ 'GitHub organization of the AI-READI project where all the tools are developed from',
+ link: 'https://github.com/AI-READI',
+ type: 'github',
+ },
+];
+
+export const getStaticProps = async () => {
+ const TeamMembers = await ModuleMembersFilter('tools');
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default ToolsModule;
diff --git a/src/pages/privacy/content.md b/src/pages/privacy/content.md
new file mode 100644
index 0000000..3bc9374
--- /dev/null
+++ b/src/pages/privacy/content.md
@@ -0,0 +1,305 @@
+# Privacy Policy
+
+**Last updated February 08, 2023**
+
+This privacy notice for AI-READI ("**Company**," "**we**," "**us**," or "**our**"), describes how and why we might collect, store, use, and/or share ("**process**") your information when you use our services ("**Services**"), such as when you:
+
+- Visit our website at [aireadi.org](https://aireadi.org), or any website of ours that links to this privacy notice
+- Engage with us in other related ways, including any sales, marketing, or events
+
+**Questions or concerns?** Reading this privacy notice will help you understand your privacy rights and choices. If you do not agree with our policies and practices, please do not use our Services. If you still have any questions or concerns, please contact us at .
+
+## Summary of key points
+
+**_This summary provides key points from our privacy notice, but you can find out more details about any of these topics by clicking the link following each key point or by using our table of contents below to find the section you are looking for. You can also click_** [**_here_**](#toc) **_to go directly to our table of contents._**
+
+### What personal information do we process?
+
+When you visit, use, or navigate our Services, we may process personal information depending on how you interact with AI-READI and the Services, the choices you make, and the products and features you use. Click [here](#personalinfo) to learn more.
+
+### Do we process any sensitive personal information?
+
+We do not process sensitive personal information.
+
+### Do we receive any information from third parties?
+
+We do not receive any information from third parties.
+
+### How do we process your information?
+
+We process your information to provide, improve, and administer our Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process your information for other purposes with your consent. We process your information only when we have a valid legal reason to do so. Click [here](#infouse) to learn more.
+
+### In what situations and with which parties do we share personal information?
+
+We may share information in specific situations and with specific third parties. Click [here](#whoshare) to learn more.
+
+### How do we keep your information safe?
+
+We have organizational and technical processes and procedures in place to protect your personal information. However, no electronic transmission over the internet or information storage technology can be guaranteed to be 100% secure, so we cannot promise or guarantee that hackers, cybercriminals, or other unauthorized third parties will not be able to defeat our security and improperly collect, access, steal, or modify your information. Click [here](#infosafe) to learn more.
+
+### What are your rights?
+
+Depending on where you are located geographically, the applicable privacy law may mean you have certain rights regarding your personal information. Click [here](#privacyrights) to learn more.
+
+### How do you exercise your rights?
+
+The easiest way to exercise your rights is by filling out our data subject request form available [here](https://app.termly.io/notify/bc201a66-26e4-4089-805b-25d11c63a07c), or by contacting us. We will consider and act upon any request in accordance with applicable data protection laws.
+
+Want to learn more about what AI-READI does with any information we collect? Click [here](#toc) to review the notice in full.
+
+## Table of Contents
+
+1\. [What information do we collect?](#infocollect)
+
+2\. [How do we process your information?](#infouse)
+
+3\. [When and with whom do we share your personal information?](#whoshare)
+
+4\. [Do we use cookies and other tracking technologies?](#cookies)
+
+5\. [How long do we keep your information?](#inforetain)
+
+6\. [How do we keep your information safe?](#infosafe)
+
+7\. [Do we collect information from minors?](#infominors)
+
+8\. [What are your privacy rights?](#privacyrights)
+
+9\. [Controls for do-not-track features](#DNT)
+
+10\. [Do california residents have specific privacy rights?](#caresidents)
+
+11\. [Do we make updates to this notice?](#policyupdates)
+
+12\. [How can you contact us about this notice?](#contact)
+
+13\. [How can you review, update, or delete the data we collect from you?](#request)
+
+### 1\. What information do we collect?
+
+**Personal information you disclose to us**
+
+**_In Short:_** *We collect personal information that you provide to us.*
+
+We collect personal information that you voluntarily provide to us when you express an interest in obtaining information about us or our products and Services, when you participate in activities on the Services, or otherwise when you contact us.
+
+**Personal Information Provided by You.** The personal information that we collect depends on the context of your interactions with us and the Services, the choices you make, and the products and features you use. The personal information we collect may include the following:
+
+- names
+- email addresses
+
+**Sensitive Information.** We do not process sensitive information.
+
+All personal information that you provide to us must be true, complete, and accurate, and you must notify us of any changes to such personal information.
+
+**Information automatically collected**
+
+**_In Short:_** *Some information — such as your Internet Protocol (IP) address and/or browser and device characteristics — is collected automatically when you visit our Services.*
+
+We automatically collect certain information when you visit, use, or navigate the Services. This information does not reveal your specific identity (like your name or contact information) but may include device and usage information, such as your IP address, browser and device characteristics, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our Services, and other technical information. This information is primarily needed to maintain the security and operation of our Services, and for our internal analytics and reporting purposes.
+
+Like many businesses, we also collect information through cookies and similar technologies.
+
+The information we collect includes:
+
+- _Log and Usage Data._ Log and usage data is service-related, diagnostic, usage, and performance information our servers automatically collect when you access or use our Services and which we record in log files. Depending on how you interact with us, this log data may include your IP address, device information, browser type, and settings and information about your activity in the Services (such as the date/time stamps associated with your usage, pages and files viewed, searches, and other actions you take such as which features you use), device event information (such as system activity, error reports (sometimes called "crash dumps"), and hardware settings).
+
+- _Device Data._ We collect device data such as information about your computer, phone, tablet, or other device you use to access the Services. Depending on the device used, this device data may include information such as your IP address (or proxy server), device and application identification numbers, location, browser type, hardware model, Internet service provider and/or mobile carrier, operating system, and system configuration information.
+
+- _Location Data._ We collect location data such as information about your device's location, which can be either precise or imprecise. How much information we collect depends on the type and settings of the device you use to access the Services. For example, we may use GPS and other technologies to collect geolocation data that tells us your current location (based on your IP address). You can opt out of allowing us to collect this information either by refusing access to the information or by disabling your Location setting on your device. However, if you choose to opt out, you may not be able to use certain aspects of the Services.
+
+## 2\. How do we process your information?
+
+**_In Short:_** *We process your information to provide, improve, and administer our Services, communicate with you, for security and fraud prevention, and to comply with law. We may also process your information for other purposes with your consent.*
+
+**We process your personal information for a variety of reasons, depending on how you interact with our Services, including:**
+
+- **To deliver and facilitate delivery of services to the user.** We may process your information to provide you with the requested service.
+
+- **To respond to user inquiries/offer support to users.** We may process your information to respond to your inquiries and solve any potential issues you might have with the requested service.
+
+- **To enable user-to-user communications.** We may process your information if you choose to use any of our offerings that allow for communication with another user.
+
+- **To request feedback.** We may process your information when necessary to request feedback and to contact you about your use of our Services.
+
+- **To protect our Services.** We may process your information as part of our efforts to keep our Services safe and secure, including fraud monitoring and prevention.
+
+- **To evaluate and improve our Services, products, marketing, and your experience.** We may process your information when we believe it is necessary to identify usage trends, determine the effectiveness of our promotional campaigns, and to evaluate and improve our Services, products, marketing, and your experience.
+
+- **To identify usage trends.** We may process information about how you use our Services to better understand how they are being used so we can improve them.
+
+- **To determine the effectiveness of our marketing and promotional campaigns.** We may process your information to better understand how to provide marketing and promotional campaigns that are most relevant to you.
+
+- **To comply with our legal obligations.** We may process your information to comply with our legal obligations, respond to legal requests, and exercise, establish, or defend our legal rights.
+
+## 3\. When and with whom do we share your personal information?
+
+**_In Short:_** *We may share information in specific situations described in this section and/or with the following third parties.*
+
+We may need to share your personal information in the following situations:
+
+- **Business Transfers.** We may share or transfer your information in connection with, or during negotiations of, any merger, sale of company assets, financing, or acquisition of all or a portion of our business to another company.
+
+## 4\. Do we use cookies and other tracking technologies?
+
+**_In Short:_** *We may use cookies and other tracking technologies to collect and store your information.*
+
+We may use cookies and similar tracking technologies (like web beacons and pixels) to access or store information. Specific information about how we use such technologies and how you can refuse certain cookies is set out in our Cookie Notice.
+
+## 5\. How long do we keep your information?
+
+**_In Short:_** *We keep your information for as long as necessary to fulfill the purposes outlined in this privacy notice unless otherwise required by law.*
+
+We will only keep your personal information for as long as it is necessary for the purposes set out in this privacy notice, unless a longer retention period is required or permitted by law (such as tax, accounting, or other legal requirements).
+
+When we have no ongoing legitimate business need to process your personal information, we will either delete or anonymize such information, or, if this is not possible (for example, because your personal information has been stored in backup archives), then we will securely store your personal information and isolate it from any further processing until deletion is possible.
+
+## 6\. How do we keep your information safe?
+
+**_In Short:_** *We aim to protect your personal information through a system of organizational and technical security measures.*
+
+We have implemented appropriate and reasonable technical and organizational security measures designed to protect the security of any personal information we process. However, despite our safeguards and efforts to secure your information, no electronic transmission over the Internet or information storage technology can be guaranteed to be 100% secure, so we cannot promise or guarantee that hackers, cybercriminals, or other unauthorized third parties will not be able to defeat our security and improperly collect, access, steal, or modify your information. Although we will do our best to protect your personal information, transmission of personal information to and from our Services is at your own risk. You should only access the Services within a secure environment.
+
+## 7\. Do we collect information from minors?
+
+**_In Short:_** *We do not knowingly collect data from or market to children under 18 years of age.*
+
+We do not knowingly solicit data from or market to children under 18 years of age. By using the Services, you represent that you are at least 18 or that you are the parent or guardian of such a minor and consent to such minor dependent’s use of the Services. If we learn that personal information from users less than 18 years of age has been collected, we will deactivate the account and take reasonable measures to promptly delete such data from our records. If you become aware of any data we may have collected from children under age 18, please contact us at [contact@aireadi.org](mailto:contact@aireadi.org).
+
+## 8\. What are your privacy rights?
+
+**_In Short:_** *You may review, change, or terminate your account at any time.*
+
+If you are located in the EEA or UK and you believe we are unlawfully processing your personal information, you also have the right to complain to your local data protection supervisory authority. You can find their contact details here: [https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm](https://ec.europa.eu/justice/data-protection/bodies/authorities/index_en.htm).
+
+If you are located in Switzerland, the contact details for the data protection authorities are available here: [https://www.edoeb.admin.ch/edoeb/en/home.html](https://www.edoeb.admin.ch/edoeb/en/home.html).
+
+**Withdrawing your consent:** If we are relying on your consent to process your personal information, which may be express and/or implied consent depending on the applicable law, you have the right to withdraw your consent at any time. You can withdraw your consent at any time by contacting us by using the contact details provided in the section "[How can you contact us about this notice?](#contact)" below.
+
+However, please note that this will not affect the lawfulness of the processing before its withdrawal nor, when applicable law allows, will it affect the processing of your personal information conducted in reliance on lawful processing grounds other than consent.
+
+**Cookies and similar technologies:** Most Web browsers are set to accept cookies by default. If you prefer, you can usually choose to set your browser to remove cookies and to reject cookies. If you choose to remove cookies or reject cookies, this could affect certain features or services of our Services. To opt out of interest-based advertising by advertisers on our Services visit [http://www.aboutads.info/choices/](http://www.aboutads.info/choices/).
+
+If you have questions or comments about your privacy rights, you may email us at [contact@aireadi.org](mailto:contact@aireadi.org).
+
+## 9\. Controls for do-not-track features
+
+Most web browsers and some mobile operating systems and mobile applications include a Do-Not-Track ("DNT") feature or setting you can activate to signal your privacy preference not to have data about your online browsing activities monitored and collected. At this stage no uniform technology standard for recognizing and implementing DNT signals has been finalized. As such, we do not currently respond to DNT browser signals or any other mechanism that automatically communicates your choice not to be tracked online. If a standard for online tracking is adopted that we must follow in the future, we will inform you about that practice in a revised version of this privacy notice.
+
+## 10\. Do california residents have specific privacy rights?
+
+**_In Short:_** *Yes, if you are a resident of California, you are granted specific rights regarding access to your personal information.*
+
+California Civil Code Section 1798.83, also known as the "Shine The Light" law, permits our users who are California residents to request and obtain from us, once a year and free of charge, information about categories of personal information (if any) we disclosed to third parties for direct marketing purposes and the names and addresses of all third parties with which we shared personal information in the immediately preceding calendar year. If you are a California resident and would like to make such a request, please submit your request in writing to us using the contact information provided below.
+
+If you are under 18 years of age, reside in California, and have a registered account with Services, you have the right to request removal of unwanted data that you publicly post on the Services. To request removal of such data, please contact us using the contact information provided below and include the email address associated with your account and a statement that you reside in California. We will make sure the data is not publicly displayed on the Services, but please be aware that the data may not be completely or comprehensively removed from all our systems (e.g., backups, etc.).
+
+## CCPA Privacy Notice
+
+The California Code of Regulations defines a "resident" as:
+
+(1) every individual who is in the State of California for other than a temporary or transitory purpose and
+(2) every individual who is domiciled in the State of California who is outside the State of California for a temporary or transitory purpose
+
+All other individuals are defined as "non-residents."
+
+If this definition of "resident" applies to you, we must adhere to certain rights and obligations regarding your personal information.
+
+### What categories of personal information do we collect?
+
+We have collected the following categories of personal information in the past twelve (12) months:
+
+| **Category** | **Examples** | **Collected** |
+| --------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
+| Identifiers | Contact details, such as real name, alias, postal address, telephone or mobile contact number, unique personal identifier, online identifier, Internet Protocol address, email address, and account name | NO |
+| Personal information categories listed in the California Customer Records statute | Name, contact information, education, employment, employment history, and financial information | NO |
+| Protected classification characteristics under California or federal law | Gender and date of birth | NO |
+| Commercial information | Transaction information, purchase history, financial details, and payment information | NO |
+| Biometric information | Fingerprints and voiceprints | NO |
+| Internet or other similar network activity | Browsing history, search history, online behavior, interest data, and interactions with our and other websites, applications, systems, and advertisements | NO |
+| Geolocation data | Device location | NO |
+| Audio, electronic, visual, thermal, olfactory, or similar information | Images and audio, video or call recordings created in connection with our business activities | NO |
+| Professional or employment-related information | Business contact details in order to provide you our Services at a business level or job title, work history, and professional qualifications if you apply for a job with us | NO |
+| Education Information | Student records and directory information | NO |
+| Inferences drawn from other personal information | Inferences drawn from any of the collected personal information listed above to create a profile or summary about, for example, an individual’s preferences and characteristics | NO |
+| Sensitive Personal Information | - | NO |
+
+We may also collect other personal information outside of these categories through instances where you interact with us in person, online, or by phone or mail in the context of:
+
+- Receiving help through our customer support channels;
+- Participation in customer surveys or contests; and
+- Facilitation in the delivery of our Services and to respond to your inquiries.
+
+### How do we use and share your personal information?
+
+More information about our data collection and sharing practices can be found in this privacy notice.
+
+You may contact us by email at , by visiting [aireadi.org/contact](https://aireadi.org/contact), or by referring to the contact details at the bottom of this document.
+
+If you are using an authorized agent to exercise your right to opt out we may deny a request if the authorized agent does not submit proof that they have been validly authorized to act on your behalf.
+
+### Will your information be shared with anyone else?
+
+We may disclose your personal information with our service providers pursuant to a written contract between us and each service provider. Each service provider is a for-profit entity that processes the information on our behalf, following the same strict privacy protection obligations mandated by the CCPA.
+
+We may use your personal information for our own business purposes, such as for undertaking internal research for technological development and demonstration. This is not considered to be "selling" of your personal information.
+
+AI-READI has not disclosed, sold, or shared any personal information to third parties for a business or commercial purpose in the preceding twelve (12) months. AI-READI will not sell or share personal information in the future belonging to website visitors, users, and other consumers.
+
+### Your rights with respect to your personal data
+
+#### Right to request deletion of the data — Request to delete
+
+You can ask for the deletion of your personal information. If you ask us to delete your personal information, we will respect your request and delete your personal information, subject to certain exceptions provided by law, such as (but not limited to) the exercise by another consumer of his or her right to free speech, our compliance requirements resulting from a legal obligation, or any processing that may be required to protect against illegal activities.
+
+Right to be informed — Request to know
+
+Depending on the circumstances, you have a right to know:
+
+- whether we collect and use your personal information;
+- the categories of personal information that we collect;
+- the purposes for which the collected personal information is used;
+- whether we sell or share personal information to third parties;
+- the categories of personal information that we sold, shared, or disclosed for a business purpose;
+- the categories of third parties to whom the personal information was sold, shared, or disclosed for a business purpose;
+- the business or commercial purpose for collecting, selling, or sharing personal information; and
+- the specific pieces of personal information we collected about you.
+
+In accordance with applicable law, we are not obligated to provide or delete consumer information that is de-identified in response to a consumer request or to re-identify individual data to verify a consumer request.
+
+#### Right to Non-Discrimination for the Exercise of a Consumer’s Privacy Rights
+
+We will not discriminate against you if you exercise your privacy rights.
+
+#### Right to Limit Use and Disclosure of Sensitive Personal Information
+
+We do not process consumer's sensitive personal information.
+
+#### Verification process
+
+Upon receiving your request, we will need to verify your identity to determine you are the same person about whom we have the information in our system. These verification efforts require us to ask you to provide information so that we can match it with information you have previously provided us. For instance, depending on the type of request you submit, we may ask you to provide certain information so that we can match the information you provide with the information we already have on file, or we may contact you through a communication method (e.g., phone or email) that you have previously provided to us. We may also use other verification methods as the circumstances dictate.
+
+We will only use personal information provided in your request to verify your identity or authority to make the request. To the extent possible, we will avoid requesting additional information from you for the purposes of verification. However, if we cannot verify your identity from the information already maintained by us, we may request that you provide additional information for the purposes of verifying your identity and for security or fraud-prevention purposes. We will delete such additionally provided information as soon as we finish verifying you.
+
+#### Other privacy rights
+
+- You may object to the processing of your personal information.
+- You may request correction of your personal data if it is incorrect or no longer relevant, or ask to restrict the processing of the information.
+- You can designate an authorized agent to make a request under the CCPA on your behalf. We may deny a request from an authorized agent that does not submit proof that they have been validly authorized to act on your behalf in accordance with the CCPA.
+- You may request to opt out from future selling or sharing of your personal information to third parties. Upon receiving an opt-out request, we will act upon the request as soon as feasibly possible, but no later than fifteen (15) days from the date of the request submission.
+
+To exercise these rights, you can contact us by email at , by visiting [aireadi.org/contact](https://aireadi.org/contact), or by referring to the contact details at the bottom of this document. If you have a complaint about how we handle your data, we would like to hear from you.
+
+## 11\. Do we make updates to this notice?
+
+_**In Short:** Yes, we will update this notice as necessary to stay compliant with relevant laws._
+
+We may update this privacy notice from time to time. The updated version will be indicated by an updated "Revised" date and the updated version will be effective as soon as it is accessible. If we make material changes to this privacy notice, we may notify you either by prominently posting a notice of such changes or by directly sending you a notification. We encourage you to review this privacy notice frequently to be informed of how we are protecting your information.
+
+## 12\. How can you contact us about this notice?
+
+If you have questions or comments about this notice, you may email us at [contact@aireadi.org](mailto:contact@aireadi.org).
+
+## 13\. How can you review, update, or delete the data we collect from you?
+
+Based on the applicable laws of your country, you may have the right to request access to the personal information we collect from you, change that information, or delete it. To request to review, update, or delete your personal information, please submit a request form by clicking [here](https://aireadi.org/contact).
diff --git a/src/pages/privacy/index.tsx b/src/pages/privacy/index.tsx
new file mode 100644
index 0000000..6da2db0
--- /dev/null
+++ b/src/pages/privacy/index.tsx
@@ -0,0 +1,44 @@
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+import fs from 'fs';
+import { GetStaticProps } from 'next';
+
+import markdownToHtml from '@/lib/markdownToHtml';
+
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+const PrivacyPolicyPage: React.FC<{ pageContent: string }> = ({
+ pageContent,
+}) => {
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export const getStaticProps: GetStaticProps = async () => {
+ const fileContent = fs.readFileSync(`src/pages/privacy/content.md`, `utf-8`);
+
+ const pageContent = await markdownToHtml(fileContent || ``);
+
+ return {
+ props: {
+ pageContent,
+ },
+ };
+};
+
+export default PrivacyPolicyPage;
diff --git a/src/pages/scholars.tsx b/src/pages/scholars.tsx
new file mode 100644
index 0000000..7dfcf69
--- /dev/null
+++ b/src/pages/scholars.tsx
@@ -0,0 +1,402 @@
+/* eslint-disable @next/next/no-img-element */
+import {
+ Badge,
+ Button,
+ Center,
+ Grid,
+ GridItem,
+ Modal,
+ ModalBody,
+ ModalCloseButton,
+ ModalContent,
+ ModalOverlay,
+ Tag,
+ useDisclosure,
+ VStack,
+ Wrap,
+ WrapItem,
+} from '@chakra-ui/react';
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+import { motion } from 'framer-motion';
+import { InferGetStaticPropsType } from 'next';
+import Image from 'next/image';
+import { getPlaiceholder } from 'plaiceholder';
+import { useState } from 'react';
+import { BsPlusCircleDotted } from 'react-icons/bs';
+import { FaLinkedin } from 'react-icons/fa';
+import { IoSchoolSharp } from 'react-icons/io5';
+import { RiAwardFill } from 'react-icons/ri';
+
+import HeroCroppedImage from '@/components/hero/HeroCroppedImage';
+import Layout from '@/components/layout/Layout';
+import UnstyledLink from '@/components/links/UnstyledLink';
+import Seo from '@/components/Seo';
+
+import { FramerContainer } from '@/utils/framer';
+
+import SCHOLARS_JSON from '~/data/scholars.json';
+
+interface Scholar {
+ id: string;
+ name: string;
+ image: string;
+ blurDataURL: string;
+ moduleImageParams: string;
+ education: { degree: string; institution: string }[];
+ expertise: string[];
+ tag: string[];
+ about: string;
+ after: string;
+ social: { linkedin?: string; resume?: string; medprofile?: string };
+}
+
+const ScholarsGrid: React.FC<{
+ scholars: Scholar[];
+ openModal: (scholarId: string) => void;
+}> = ({ scholars, openModal }) => {
+ return (
+
+ {scholars.map((scholar) => (
+
+
+ {scholar.tag.length > 0 ? (
+
+ {scholar.tag.map((tag) => (
+
+
+ {tag}
+
+
+ ))}
+
+ ) : (
+
+ )}
+
+
+
+
+
+
+ {scholar.name}
+
+
+
+
+
+
+
+
+
+ {scholar.education[0].degree}
+
+
+
+
+
+
+
+
+
+ {scholar.expertise.map((expertise, index) => (
+
+
+ {expertise}
+
+
+ ))}
+
+
+
+
+
}
+ onClick={() => openModal(scholar.id)}
+ >
+ Expand
+
+
+
+ ))}
+
+ );
+};
+
+const ScholarsPage: React.FC<
+ InferGetStaticPropsType
+> = ({ AllScholars, Class23_24Scholars, Class24_25Scholars }) => {
+ const { isOpen, onOpen, onClose } = useDisclosure();
+ const [selectedScholar, setSelectedScholar] = useState(null);
+
+ const openModal = (scholarid: string) => {
+ const scholar = AllScholars.find((scholar) => scholar.id === scholarid);
+
+ if (!scholar) {
+ return;
+ }
+
+ setSelectedScholar(scholar);
+
+ onOpen();
+ };
+
+ return (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+ Current Class (2024-2025)
+
+
+
+ Coming soon...
+
+
+
+
+
+ Alumni
+
+
+
+ Class of 2023-2024
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {selectedScholar?.tag.map((tag) => (
+
+
+ {tag}
+
+
+ ))}
+
+
+
+
+ {'linkedin' in (selectedScholar?.social || {}) && (
+ <>
+
+
+
+
+
+
+
+
+ LinkedIn Profile
+
+
+ >
+ )}
+
+ {'resume' in (selectedScholar?.social || {}) && (
+ <>
+
+
+
+
+
+
+ Resume
+
+
+ >
+ )}
+
+
+
+
+
+
+
+ {selectedScholar?.name}
+
+
+
+ Education
+
+
+
+ {selectedScholar?.education.map((edu, index) => (
+
+ {edu.degree}{' '}
+ {edu.institution && <>({edu.institution})>}
+
+ ))}
+
+
+
+ Expertise
+
+
+
+ {selectedScholar?.expertise.map((expertise, index) => (
+
+ {expertise}
+
+ ))}
+
+
+
+ About Me
+
+
+
+ {selectedScholar?.about}
+
+
+
+ After AI-READI
+
+
+
+ {selectedScholar?.after}
+
+
+
+
+
+
+
+
+
+ >
+ );
+};
+
+export const getStaticProps = async () => {
+ const AllScholars = await Promise.all(
+ SCHOLARS_JSON.map(async (member) => {
+ const {
+ base64,
+ // eslint-disable-next-line unused-imports/no-unused-vars
+ img: { width, height, ...img },
+ } = await getPlaiceholder(member.image);
+
+ return {
+ ...img,
+ alt: `${member.name} profile picture`,
+ ...member,
+ blurDataURL: base64,
+ };
+ }),
+ ).then((values) => values);
+
+ // sort by name
+ AllScholars.sort((a, b) => {
+ if (a.name < b.name) {
+ return -1;
+ }
+
+ if (a.name > b.name) {
+ return 1;
+ }
+
+ return 0;
+ });
+
+ const Class23_24Scholars = AllScholars.filter(
+ (scholar) => scholar.class === '2023-2024',
+ );
+
+ const Class24_25Scholars = AllScholars.filter(
+ (scholar) => scholar.class === '2024-2025',
+ );
+
+ return {
+ props: {
+ AllScholars,
+ Class23_24Scholars,
+ Class24_25Scholars,
+ },
+ };
+};
+
+export default ScholarsPage;
diff --git a/src/pages/team/index.tsx b/src/pages/team/index.tsx
new file mode 100644
index 0000000..a58948e
--- /dev/null
+++ b/src/pages/team/index.tsx
@@ -0,0 +1,302 @@
+/* eslint-disable @next/next/no-img-element */
+import { Divider } from '@chakra-ui/react';
+import { SkipNavContent, SkipNavLink } from '@chakra-ui/skip-nav';
+import { InferGetStaticPropsType } from 'next';
+import Image from 'next/image';
+import { getPlaiceholder } from 'plaiceholder';
+import { AiFillGithub, AiFillLinkedin, AiOutlineTwitter } from 'react-icons/ai';
+import { BiBuildingHouse } from 'react-icons/bi';
+import { BsGlobe, BsMastodon } from 'react-icons/bs';
+import { FaHospitalUser } from 'react-icons/fa';
+import { HiUserGroup } from 'react-icons/hi';
+import { IoSchoolSharp } from 'react-icons/io5';
+import { MdLocationOn } from 'react-icons/md';
+import { RiInstagramFill } from 'react-icons/ri';
+
+import Layout from '@/components/layout/Layout';
+import Seo from '@/components/Seo';
+
+import TEAM_JSON from '~/data/team.json';
+
+const TeamPage: React.FC> = ({
+ TeamMembers,
+}) => (
+ <>
+ Skip to content
+
+
+
+
+
+
+
+
+
+
+
+ Our Team
+
+
+ Meet the people behind the scenes who make it all happen
+
+
+
+
+ {TeamMembers.map((member, index) => (
+
+
+
+
+
+
+
+ {member.name}{' '}
+ {member.pronoun && (
+
+ ({member.pronoun})
+
+ )}
+
+
+ {member.roles.map((role, index) => (
+
+ {role}
+
+ ))}
+
+
+
+
+ {member.department && (
+
+
+
+
+
{member.department}
+
+ )}
+
+ {member.organization && (
+
+
+
+
+
{member.organization}
+
+ )}
+
+
+
+
+
+
+
+ {member.caption}
+
+
+ {/*
*/}
+
+ {/*
*/}
+
+ {Object.keys(member.social).length > 0 && (
+
+ )}
+
+
+
+
+ ))}
+
+
+
+
+
+ >
+);
+
+export const getStaticProps = async () => {
+ const TeamMembers = await Promise.all(
+ TEAM_JSON.map(async (member) => {
+ const {
+ base64,
+ // eslint-disable-next-line unused-imports/no-unused-vars
+ img: { width, height, ...img },
+ } = await getPlaiceholder(member.image);
+
+ return {
+ ...img,
+ alt: `${member.name} profile picture`,
+ ...member,
+ blurDataURL: base64,
+ };
+ }),
+ ).then((values) => values);
+
+ // sort by name
+ TeamMembers.sort((a, b) => {
+ if (a.name < b.name) {
+ return -1;
+ }
+
+ if (a.name > b.name) {
+ return 1;
+ }
+
+ return 0;
+ });
+
+ // sort modules by name
+ TeamMembers.forEach((member) => {
+ member.modules.sort((a, b) => {
+ if (a < b) {
+ return -1;
+ }
+
+ if (a > b) {
+ return 1;
+ }
+
+ return 0;
+ });
+ });
+
+ return {
+ props: {
+ TeamMembers,
+ },
+ };
+};
+
+export default TeamPage;
diff --git a/src/styles/colors.css b/src/styles/colors.css
new file mode 100644
index 0000000..4f433eb
--- /dev/null
+++ b/src/styles/colors.css
@@ -0,0 +1,507 @@
+/* //!STARTERCONF Remove this file after copying your desired color, this is a large file you should remove it. */
+
+.rose {
+ --tw-color-primary-50: 255 241 242;
+ --tw-color-primary-100: 255 228 230;
+ --tw-color-primary-200: 254 205 211;
+ --tw-color-primary-300: 253 164 175;
+ --tw-color-primary-400: 251 113 133;
+ --tw-color-primary-500: 244 63 94;
+ --tw-color-primary-600: 225 29 72;
+ --tw-color-primary-700: 190 18 60;
+ --tw-color-primary-800: 159 18 57;
+ --tw-color-primary-900: 136 19 55;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fff1f2 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #ffe4e6 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #fecdd3 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #fda4af */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #fb7185 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #f43f5e */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #e11d48 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #be123c */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #9f1239 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #881337 */
+}
+
+.pink {
+ --tw-color-primary-50: 253 242 248;
+ --tw-color-primary-100: 252 231 243;
+ --tw-color-primary-200: 251 207 232;
+ --tw-color-primary-300: 249 168 212;
+ --tw-color-primary-400: 244 114 182;
+ --tw-color-primary-500: 236 72 153;
+ --tw-color-primary-600: 219 39 119;
+ --tw-color-primary-700: 190 24 93;
+ --tw-color-primary-800: 157 23 77;
+ --tw-color-primary-900: 131 24 67;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fdf2f8 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #fce7f3 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #fbcfe8 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #f9a8d4 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #f472b6 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #ec4899 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #db2777 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #be185d */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #9d174d */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #831843 */
+}
+
+.fuchsia {
+ --tw-color-primary-50: 253 244 255;
+ --tw-color-primary-100: 250 232 255;
+ --tw-color-primary-200: 245 208 254;
+ --tw-color-primary-300: 240 171 252;
+ --tw-color-primary-400: 232 121 249;
+ --tw-color-primary-500: 217 70 239;
+ --tw-color-primary-600: 192 38 211;
+ --tw-color-primary-700: 162 28 175;
+ --tw-color-primary-800: 134 25 143;
+ --tw-color-primary-900: 112 26 117;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fdf4ff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #fae8ff */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #f5d0fe */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #f0abfc */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #e879f9 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #d946ef */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #c026d3 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #a21caf */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #86198f */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #701a75 */
+}
+
+.purple {
+ --tw-color-primary-50: 250 245 255;
+ --tw-color-primary-100: 243 232 255;
+ --tw-color-primary-200: 233 213 255;
+ --tw-color-primary-300: 216 180 254;
+ --tw-color-primary-400: 192 132 252;
+ --tw-color-primary-500: 168 85 247;
+ --tw-color-primary-600: 147 51 234;
+ --tw-color-primary-700: 126 34 206;
+ --tw-color-primary-800: 107 33 168;
+ --tw-color-primary-900: 88 28 135;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #faf5ff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #f3e8ff */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #e9d5ff */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #d8b4fe */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #c084fc */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #a855f7 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #9333ea */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #7e22ce */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #6b21a8 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #581c87 */
+}
+
+.violet {
+ --tw-color-primary-50: 245 243 255;
+ --tw-color-primary-100: 237 233 254;
+ --tw-color-primary-200: 221 214 254;
+ --tw-color-primary-300: 196 181 253;
+ --tw-color-primary-400: 167 139 250;
+ --tw-color-primary-500: 139 92 246;
+ --tw-color-primary-600: 124 58 237;
+ --tw-color-primary-700: 109 40 217;
+ --tw-color-primary-800: 91 33 182;
+ --tw-color-primary-900: 76 29 149;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f5f3ff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #ede9fe */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #ddd6fe */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #c4b5fd */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #a78bfa */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #8b5cf6 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #7c3aed */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #6d28d9 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #5b21b6 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #4c1d95 */
+}
+
+.indigo {
+ --tw-color-primary-50: 238 242 255;
+ --tw-color-primary-100: 224 231 255;
+ --tw-color-primary-200: 199 210 254;
+ --tw-color-primary-300: 165 180 252;
+ --tw-color-primary-400: 129 140 248;
+ --tw-color-primary-500: 99 102 241;
+ --tw-color-primary-600: 79 70 229;
+ --tw-color-primary-700: 67 56 202;
+ --tw-color-primary-800: 55 48 163;
+ --tw-color-primary-900: 49 46 129;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #eef2ff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #e0e7ff */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #c7d2fe */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #a5b4fc */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #818cf8 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #6366f1 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #4f46e5 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #4338ca */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #3730a3 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #312e81 */
+}
+
+.blue {
+ --tw-color-primary-50: 239 246 255;
+ --tw-color-primary-100: 219 234 254;
+ --tw-color-primary-200: 191 219 254;
+ --tw-color-primary-300: 147 197 253;
+ --tw-color-primary-400: 96 165 250;
+ --tw-color-primary-500: 59 130 246;
+ --tw-color-primary-600: 37 99 235;
+ --tw-color-primary-700: 29 78 216;
+ --tw-color-primary-800: 30 64 175;
+ --tw-color-primary-900: 30 58 138;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #eff6ff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #dbeafe */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #bfdbfe */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #93c5fd */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #60a5fa */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #3b82f6 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #2563eb */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #1d4ed8 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #1e40af */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #1e3a8a */
+}
+
+.sky {
+ --tw-color-primary-50: 240 249 255;
+ --tw-color-primary-100: 224 242 254;
+ --tw-color-primary-200: 186 230 253;
+ --tw-color-primary-300: 125 211 252;
+ --tw-color-primary-400: 56 189 248;
+ --tw-color-primary-500: 14 165 233;
+ --tw-color-primary-600: 2 132 199;
+ --tw-color-primary-700: 3 105 161;
+ --tw-color-primary-800: 7 89 133;
+ --tw-color-primary-900: 12 74 110;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f0f9ff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #e0f2fe */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #bae6fd */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #7dd3fc */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #38bdf8 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #0ea5e9 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #0284c7 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #0369a1 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #075985 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #0c4a6e */
+}
+
+.cyan {
+ --tw-color-primary-50: 236 254 255;
+ --tw-color-primary-100: 207 250 254;
+ --tw-color-primary-200: 165 243 252;
+ --tw-color-primary-300: 103 232 249;
+ --tw-color-primary-400: 34 211 238;
+ --tw-color-primary-500: 6 182 212;
+ --tw-color-primary-600: 8 145 178;
+ --tw-color-primary-700: 14 116 144;
+ --tw-color-primary-800: 21 94 117;
+ --tw-color-primary-900: 22 78 99;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #ecfeff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #cffafe */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #a5f3fc */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #67e8f9 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #22d3ee */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #06b6d4 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #0891b2 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #0e7490 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #155e75 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #164e63 */
+}
+
+.teal {
+ --tw-color-primary-50: 240 253 250;
+ --tw-color-primary-100: 204 251 241;
+ --tw-color-primary-200: 153 246 228;
+ --tw-color-primary-300: 94 234 212;
+ --tw-color-primary-400: 45 212 191;
+ --tw-color-primary-500: 20 184 166;
+ --tw-color-primary-600: 13 148 136;
+ --tw-color-primary-700: 15 118 110;
+ --tw-color-primary-800: 17 94 89;
+ --tw-color-primary-900: 19 78 74;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f0fdfa */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #ccfbf1 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #99f6e4 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #5eead4 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #2dd4bf */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #14b8a6 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #0d9488 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #0f766e */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #115e59 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #134e4a */
+}
+
+.emerald {
+ --tw-color-primary-50: 236 253 245;
+ --tw-color-primary-100: 209 250 229;
+ --tw-color-primary-200: 167 243 208;
+ --tw-color-primary-300: 110 231 183;
+ --tw-color-primary-400: 52 211 153;
+ --tw-color-primary-500: 16 185 129;
+ --tw-color-primary-600: 5 150 105;
+ --tw-color-primary-700: 4 120 87;
+ --tw-color-primary-800: 6 95 70;
+ --tw-color-primary-900: 6 78 59;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #ecfdf5 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #d1fae5 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #a7f3d0 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #6ee7b7 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #34d399 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #10b981 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #059669 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #047857 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #065f46 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #064e3b */
+}
+
+.green {
+ --tw-color-primary-50: 240 253 244;
+ --tw-color-primary-100: 220 252 231;
+ --tw-color-primary-200: 187 247 208;
+ --tw-color-primary-300: 134 239 172;
+ --tw-color-primary-400: 74 222 128;
+ --tw-color-primary-500: 34 197 94;
+ --tw-color-primary-600: 22 163 74;
+ --tw-color-primary-700: 21 128 61;
+ --tw-color-primary-800: 22 101 52;
+ --tw-color-primary-900: 20 83 45;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f0fdf4 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #dcfce7 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #bbf7d0 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #86efac */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #4ade80 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #22c55e */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #16a34a */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #15803d */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #166534 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #14532d */
+}
+
+.lime {
+ --tw-color-primary-50: 247 254 231;
+ --tw-color-primary-100: 236 252 203;
+ --tw-color-primary-200: 217 249 157;
+ --tw-color-primary-300: 190 242 100;
+ --tw-color-primary-400: 163 230 53;
+ --tw-color-primary-500: 132 204 22;
+ --tw-color-primary-600: 101 163 13;
+ --tw-color-primary-700: 77 124 15;
+ --tw-color-primary-800: 63 98 18;
+ --tw-color-primary-900: 54 83 20;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f7fee7 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #ecfccb */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #d9f99d */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #bef264 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #a3e635 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #84cc16 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #65a30d */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #4d7c0f */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #3f6212 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #365314 */
+}
+
+.yellow {
+ --tw-color-primary-50: 254 252 232;
+ --tw-color-primary-100: 254 249 195;
+ --tw-color-primary-200: 254 240 138;
+ --tw-color-primary-300: 253 224 71;
+ --tw-color-primary-400: 250 204 21;
+ --tw-color-primary-500: 234 179 8;
+ --tw-color-primary-600: 202 138 4;
+ --tw-color-primary-700: 161 98 7;
+ --tw-color-primary-800: 133 77 14;
+ --tw-color-primary-900: 113 63 18;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fefce8 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #fef9c3 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #fef08a */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #fde047 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #facc15 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #eab308 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #ca8a04 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #a16207 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #854d0e */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #713f12 */
+}
+
+.amber {
+ --tw-color-primary-50: 255 251 235;
+ --tw-color-primary-100: 254 243 199;
+ --tw-color-primary-200: 253 230 138;
+ --tw-color-primary-300: 252 211 77;
+ --tw-color-primary-400: 251 191 36;
+ --tw-color-primary-500: 245 158 11;
+ --tw-color-primary-600: 217 119 6;
+ --tw-color-primary-700: 180 83 9;
+ --tw-color-primary-800: 146 64 14;
+ --tw-color-primary-900: 120 53 15;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fffbeb */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #fef3c7 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #fde68a */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #fcd34d */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #fbbf24 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #f59e0b */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #d97706 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #b45309 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #92400e */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #78350f */
+}
+
+.orange {
+ --tw-color-primary-50: 255 247 237;
+ --tw-color-primary-100: 255 237 213;
+ --tw-color-primary-200: 254 215 170;
+ --tw-color-primary-300: 253 186 116;
+ --tw-color-primary-400: 251 146 60;
+ --tw-color-primary-500: 249 115 22;
+ --tw-color-primary-600: 234 88 12;
+ --tw-color-primary-700: 194 65 12;
+ --tw-color-primary-800: 154 52 18;
+ --tw-color-primary-900: 124 45 18;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fff7ed */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #ffedd5 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #fed7aa */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #fdba74 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #fb923c */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #f97316 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #ea580c */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #c2410c */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #9a3412 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #7c2d12 */
+}
+
+.red {
+ --tw-color-primary-50: 254 242 242;
+ --tw-color-primary-100: 254 226 226;
+ --tw-color-primary-200: 254 202 202;
+ --tw-color-primary-300: 252 165 165;
+ --tw-color-primary-400: 248 113 113;
+ --tw-color-primary-500: 239 68 68;
+ --tw-color-primary-600: 220 38 38;
+ --tw-color-primary-700: 185 28 28;
+ --tw-color-primary-800: 153 27 27;
+ --tw-color-primary-900: 127 29 29;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fef2f2 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #fee2e2 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #fecaca */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #fca5a5 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #f87171 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #ef4444 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #dc2626 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #b91c1c */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #991b1b */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #7f1d1d */
+}
+
+.stone {
+ --tw-color-primary-50: 250 250 249;
+ --tw-color-primary-100: 245 245 244;
+ --tw-color-primary-200: 231 229 228;
+ --tw-color-primary-300: 214 211 209;
+ --tw-color-primary-400: 168 162 158;
+ --tw-color-primary-500: 120 113 108;
+ --tw-color-primary-600: 87 83 78;
+ --tw-color-primary-700: 68 64 60;
+ --tw-color-primary-800: 41 37 36;
+ --tw-color-primary-900: 28 25 23;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fafaf9 */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #f5f5f4 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #e7e5e4 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #d6d3d1 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #a8a29e */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #78716c */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #57534e */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #44403c */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #292524 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #1c1917 */
+}
+
+.neutral {
+ --tw-color-primary-50: 250 250 250;
+ --tw-color-primary-100: 245 245 245;
+ --tw-color-primary-200: 229 229 229;
+ --tw-color-primary-300: 212 212 212;
+ --tw-color-primary-400: 163 163 163;
+ --tw-color-primary-500: 115 115 115;
+ --tw-color-primary-600: 82 82 82;
+ --tw-color-primary-700: 64 64 64;
+ --tw-color-primary-800: 38 38 38;
+ --tw-color-primary-900: 23 23 23;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fafafa */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #f5f5f5 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #e5e5e5 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #d4d4d4 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #a3a3a3 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #737373 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #525252 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #404040 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #262626 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #171717 */
+}
+
+.zinc {
+ --tw-color-primary-50: 250 250 250;
+ --tw-color-primary-100: 244 244 245;
+ --tw-color-primary-200: 228 228 231;
+ --tw-color-primary-300: 212 212 216;
+ --tw-color-primary-400: 161 161 170;
+ --tw-color-primary-500: 113 113 122;
+ --tw-color-primary-600: 82 82 91;
+ --tw-color-primary-700: 63 63 70;
+ --tw-color-primary-800: 39 39 42;
+ --tw-color-primary-900: 24 24 27;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #fafafa */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #f4f4f5 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #e4e4e7 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #d4d4d8 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #a1a1aa */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #71717a */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #52525b */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #3f3f46 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #27272a */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #18181b */
+}
+
+.gray {
+ --tw-color-primary-50: 249 250 251;
+ --tw-color-primary-100: 243 244 246;
+ --tw-color-primary-200: 229 231 235;
+ --tw-color-primary-300: 209 213 219;
+ --tw-color-primary-400: 156 163 175;
+ --tw-color-primary-500: 107 114 128;
+ --tw-color-primary-600: 75 85 99;
+ --tw-color-primary-700: 55 65 81;
+ --tw-color-primary-800: 31 41 55;
+ --tw-color-primary-900: 17 24 39;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f9fafb */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #f3f4f6 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #e5e7eb */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #d1d5db */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #9ca3af */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #6b7280 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #4b5563 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #374151 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #1f2937 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #111827 */
+}
+
+.slate {
+ --tw-color-primary-50: 248 250 252;
+ --tw-color-primary-100: 241 245 249;
+ --tw-color-primary-200: 226 232 240;
+ --tw-color-primary-300: 203 213 225;
+ --tw-color-primary-400: 148 163 184;
+ --tw-color-primary-500: 100 116 139;
+ --tw-color-primary-600: 71 85 105;
+ --tw-color-primary-700: 51 65 85;
+ --tw-color-primary-800: 30 41 59;
+ --tw-color-primary-900: 15 23 42;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f8fafc */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #f1f5f9 */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #e2e8f0 */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #cbd5e1 */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #94a3b8 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #64748b */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #475569 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #334155 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #1e293b */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #0f172a */
+}
diff --git a/src/styles/globals.css b/src/styles/globals.css
new file mode 100644
index 0000000..41b32eb
--- /dev/null
+++ b/src/styles/globals.css
@@ -0,0 +1,202 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+:root {
+ /* #region /**=========== Primary Color =========== */
+ /* !STARTERCONF Customize these variable, copy and paste from /styles/colors.css for list of colors */
+ --tw-color-primary-50: 240 249 255;
+ --tw-color-primary-100: 224 242 254;
+ --tw-color-primary-200: 186 230 253;
+ --tw-color-primary-300: 125 211 252;
+ --tw-color-primary-400: 56 189 248;
+ --tw-color-primary-500: 14 165 233;
+ --tw-color-primary-600: 2 132 199;
+ --tw-color-primary-700: 3 105 161;
+ --tw-color-primary-800: 7 89 133;
+ --tw-color-primary-900: 12 74 110;
+ --color-primary-50: rgb(var(--tw-color-primary-50)); /* #f0f9ff */
+ --color-primary-100: rgb(var(--tw-color-primary-100)); /* #e0f2fe */
+ --color-primary-200: rgb(var(--tw-color-primary-200)); /* #bae6fd */
+ --color-primary-300: rgb(var(--tw-color-primary-300)); /* #7dd3fc */
+ --color-primary-400: rgb(var(--tw-color-primary-400)); /* #38bdf8 */
+ --color-primary-500: rgb(var(--tw-color-primary-500)); /* #0ea5e9 */
+ --color-primary-600: rgb(var(--tw-color-primary-600)); /* #0284c7 */
+ --color-primary-700: rgb(var(--tw-color-primary-700)); /* #0369a1 */
+ --color-primary-800: rgb(var(--tw-color-primary-800)); /* #075985 */
+ --color-primary-900: rgb(var(--tw-color-primary-900)); /* #0c4a6e */
+ /* #endregion /**======== Primary Color =========== */
+}
+
+@layer base {
+ /* inter var - latin */
+ @font-face {
+ font-family: 'Inter';
+ font-style: normal;
+ font-weight: 100 900;
+ font-display: optional;
+ src: url('/fonts/inter-var-latin.woff2') format('woff2');
+ unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
+ U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
+ U+2215, U+FEFF, U+FFFD;
+ }
+
+ * {
+ font-family: 'Inter' !important;
+ @apply !font-primary;
+ }
+
+ h1,
+ h2 {
+ @apply text-slate-700;
+ }
+
+ .cursor-newtab {
+ cursor:
+ url('/images/new-tab.png') 10 10,
+ pointer;
+ }
+
+ .layout {
+ /* 1100px */
+ max-width: 68.75rem;
+ @apply mx-auto w-11/12;
+ }
+
+ .bg-dark a.custom-link {
+ @apply border-gray-200 hover:border-gray-200/0;
+ }
+
+ /* Class to adjust with sticky footer */
+ .min-h-main {
+ @apply min-h-[calc(100vh-56px)];
+ }
+
+ .study-faq[aria-expanded='true'] {
+ @apply bg-sky-50;
+ }
+}
+
+@layer components {
+ .debug {
+ @apply border border-red-500;
+ }
+
+ .horizontal {
+ @apply flex flex-row;
+ }
+
+ .vertical {
+ @apply flex flex-col;
+ }
+
+ .horizontal.center-v {
+ @apply items-center;
+ }
+
+ .horizontal.center-h {
+ @apply justify-center;
+ }
+
+ .horizontal.center {
+ @apply items-center justify-center;
+ }
+
+ .vertical.center-v {
+ @apply justify-center;
+ }
+
+ .vertical.center-h {
+ @apply items-center;
+ }
+
+ .vertical.center {
+ @apply items-center justify-center;
+ }
+
+ .space-between {
+ @apply justify-between;
+ }
+}
+
+@layer utilities {
+ .animated-underline {
+ background-image: linear-gradient(#33333300, #33333300),
+ linear-gradient(
+ to right,
+ var(--color-primary-400),
+ var(--color-primary-500)
+ );
+ background-size:
+ 100% 2px,
+ 0 2px;
+ background-position:
+ 100% 100%,
+ 0 100%;
+ background-repeat: no-repeat;
+ }
+ @media (prefers-reduced-motion: no-preference) {
+ .animated-underline {
+ transition: 0.3s ease;
+ transition-property: background-size, color, background-color,
+ border-color;
+ }
+ }
+ .animated-underline:hover,
+ .animated-underline:focus-visible {
+ background-size:
+ 0 2px,
+ 100% 2px;
+ }
+ .hero-cropped-clip-path {
+ clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0% 100%);
+ }
+}
+
+.overlay {
+ background: linear-gradient(0deg, var(--color-primary-700), transparent);
+}
+
+.xyz {
+ position: absolute;
+ bottom: 85px;
+ left: calc(68% - 12px);
+ z-index: 4;
+ width: 240px;
+}
+
+.xyz:after {
+ content: '';
+ position: absolute;
+ bottom: -34px;
+ left: 0;
+ width: 0px;
+ height: 0px;
+ border-style: solid;
+ border-width: 28px 16.5px 0 16.5px;
+ transform: rotate(0deg);
+
+ @apply border-b-transparent border-l-transparent border-r-transparent border-t-blue-400;
+}
+
+.zyx {
+ position: absolute;
+ top: 85px;
+ left: calc(36% - 12px);
+ z-index: 4;
+ width: 240px;
+}
+
+.zyx:after {
+ content: '';
+ position: absolute;
+ top: -34px;
+ left: 0;
+ width: 0px;
+ height: 0px;
+ border-style: solid;
+ border-width: 28px 16.5px 0 16.5px;
+ transform: rotate(180deg);
+
+ @apply border-b-transparent border-l-transparent border-r-transparent border-t-blue-600;
+}
diff --git a/src/types/common/functions.d.ts b/src/types/common/functions.d.ts
new file mode 100644
index 0000000..ff369e9
--- /dev/null
+++ b/src/types/common/functions.d.ts
@@ -0,0 +1 @@
+type GetFullName = (p: Person) => string;
diff --git a/src/types/common/index.d.ts b/src/types/common/index.d.ts
new file mode 100644
index 0000000..b45ae91
--- /dev/null
+++ b/src/types/common/index.d.ts
@@ -0,0 +1,3 @@
+/* eslint-disable @typescript-eslint/triple-slash-reference */
+///
+///
diff --git a/src/types/common/interfaces.d.ts b/src/types/common/interfaces.d.ts
new file mode 100644
index 0000000..12c3b7a
--- /dev/null
+++ b/src/types/common/interfaces.d.ts
@@ -0,0 +1,62 @@
+interface HeroContent {
+ title: string;
+ image: string;
+ goal?: string;
+ imageAlt?: string;
+ tagline?: string;
+ showButtons?: boolean;
+ primaryButton?: string;
+ secondaryButton?: string;
+}
+
+interface TextContent {
+ title: string;
+ text: string;
+ showButtons?: boolean;
+ primaryButton?: string;
+}
+
+interface TextWithImagesContent {
+ title: string;
+ text: string[];
+ image1: string;
+ image2: string;
+}
+
+interface ModuleMemberType {
+ name: string;
+ id: string;
+ roles: string[];
+ image: string;
+ modules: string[];
+ moduleImageParams: string;
+ blurDataURL: string;
+}
+
+type ModuleMembersType = ModuleMemberType[];
+
+type ModuleMembersPageProps = {
+ TeamMembers: ModuleMembersType;
+};
+
+interface EventItem {
+ slug: string;
+ timeToRead: number;
+
+ frontMatter: {
+ title: string;
+ startDateTime: string;
+ endDateTime: string;
+ heroImage: string;
+ subtitle: string;
+ location: string;
+ type: string;
+ timezone: string;
+ };
+
+ content: string;
+}
+
+interface EventsLayoutProps {
+ eventList: EventItem[];
+}
diff --git a/src/utils/framer.ts b/src/utils/framer.ts
new file mode 100644
index 0000000..86fdd7c
--- /dev/null
+++ b/src/utils/framer.ts
@@ -0,0 +1,31 @@
+export const FramerContainer = {
+ hidden: { opacity: 0 },
+ show: {
+ opacity: 1,
+ transition: {
+ staggerChildren: 0.25,
+ ease: 'easeOut',
+ },
+ },
+};
+
+export const FadeFramerItem = {
+ hidden: { opacity: 0, translateY: 100 },
+ show: { opacity: 1, translateY: 0 },
+};
+
+export const WidthFramerContainer = {
+ hidden: { opacity: 0 },
+ show: {
+ opacity: 1,
+ transition: {
+ staggerChildren: 0.5,
+ ease: 'easeOut',
+ },
+ },
+};
+
+export const WidthFramerItem = {
+ hidden: { width: 0, opacity: 0 },
+ show: { width: 'auto', opacity: 1 },
+};
diff --git a/src/utils/moduleMembersFilter.ts b/src/utils/moduleMembersFilter.ts
new file mode 100644
index 0000000..bd024a8
--- /dev/null
+++ b/src/utils/moduleMembersFilter.ts
@@ -0,0 +1,59 @@
+import { getPlaiceholder } from 'plaiceholder';
+
+import TEAM_JSON from '~/data/team.json';
+
+/**
+ *
+ * @param module
+ * @returns
+ */
+export default async function ModuleMembersFilter(
+ module: string,
+): Promise {
+ const AllTeamMembers: ModuleMemberType[] = await Promise.all(
+ TEAM_JSON.map(async (member) => {
+ const {
+ base64,
+ // eslint-disable-next-line unused-imports/no-unused-vars
+ img: { width, height, ...img },
+ } = await getPlaiceholder(member.image);
+
+ return {
+ ...img,
+ alt: `${member.name} profile picture`,
+ ...member,
+ blurDataURL: base64,
+ };
+ }),
+ ).then((values) => values);
+
+ const FilteredTeamMembers = AllTeamMembers.filter((member) =>
+ member.modules.includes(module),
+ );
+
+ FilteredTeamMembers.sort((a, b) => {
+ if (a.name < b.name) {
+ return -1;
+ }
+
+ if (a.name > b.name) {
+ return 1;
+ }
+
+ return 0;
+ });
+
+ return FilteredTeamMembers.map((member) => {
+ const item: ModuleMemberType = {
+ name: member.name,
+ id: member.id,
+ roles: member.roles,
+ modules: member.modules,
+ image: member.image,
+ moduleImageParams: member.moduleImageParams,
+ blurDataURL: member.blurDataURL,
+ };
+
+ return item;
+ });
+}
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..1a72a5c
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,68 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
+const { fontFamily } = require('tailwindcss/defaultTheme');
+
+/** @type {import('tailwindcss').Config} */
+module.exports = {
+ content: ['./src/**/*.{js,jsx,ts,tsx}'],
+ theme: {
+ extend: {
+ fontFamily: {
+ primary: ['Inter', ...fontFamily.sans],
+ },
+
+ backgroundImage: {
+ 'home-hero-image':
+ "url('https://images.unsplash.com/photo-1725733618892-78d6f3101b05?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D')",
+ },
+
+ colors: {
+ primary: {
+ // Customize it on globals.css :root
+ 50: 'rgb(var(--tw-color-primary-50) / )',
+ 100: 'rgb(var(--tw-color-primary-100) / )',
+ 200: 'rgb(var(--tw-color-primary-200) / )',
+ 300: 'rgb(var(--tw-color-primary-300) / )',
+ 400: 'rgb(var(--tw-color-primary-400) / )',
+ 500: 'rgb(var(--tw-color-primary-500) / )',
+ 600: 'rgb(var(--tw-color-primary-600) / )',
+ 700: 'rgb(var(--tw-color-primary-700) / )',
+ 800: 'rgb(var(--tw-color-primary-800) / )',
+ 900: 'rgb(var(--tw-color-primary-900) / )',
+ },
+ dark: '#222222',
+ },
+
+ keyframes: {
+ flicker: {
+ '0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%': {
+ opacity: 0.99,
+ filter:
+ 'drop-shadow(0 0 1px rgba(252, 211, 77)) drop-shadow(0 0 15px rgba(245, 158, 11)) drop-shadow(0 0 1px rgba(252, 211, 77))',
+ },
+ '20%, 21.999%, 63%, 63.999%, 65%, 69.999%': {
+ opacity: 0.4,
+ filter: 'none',
+ },
+ },
+ shimmer: {
+ '0%': {
+ backgroundPosition: '-700px 0',
+ },
+ '100%': {
+ backgroundPosition: '700px 0',
+ },
+ },
+ },
+
+ animation: {
+ flicker: 'flicker 3s linear infinite',
+ shimmer: 'shimmer 1.3s linear infinite',
+ },
+ },
+ },
+ plugins: [
+ require('@tailwindcss/forms'),
+ require('@tailwindcss/typography'),
+ require('tailwindcss-debug-screens'),
+ ],
+};
diff --git a/template/blog-template.md b/template/blog-template.md
new file mode 100644
index 0000000..63f4325
--- /dev/null
+++ b/template/blog-template.md
@@ -0,0 +1,51 @@
+---
+title: 'Enter the title for the article here'
+authors:
+ - 'Bhavesh-Patel'
+ - 'Unknown Author'
+ - 'ETAI Team'
+date: '2023-02-30'
+categories:
+ - 'Category 1'
+ - 'Category 2
+heroImage: 'https://image.com/image'
+subtitle: 'Add a subtitle here. This is shown under the title'
+tags:
+ - 'Tag 1'
+ - 'Tag 2
+ - 'Tag 3
+---
+
+## How to create a blog post
+
+> If you are familiar with how to use GitHub pull requests, you can create a clone of this repository and add your article to the `blog` folder. If you are not familiar with GitHub, you can follow the instructions below to create a blog post.
+
+You can use markdown to format your article. You can find a guide on how to use markdown here:
+
+### Images in your article
+
+You can add images to your article by uploading them to any image hosting platform(if not already hosted on the internet) and then using the link to the image in your article. You can also add links to other websites by using the following syntax: `[link text](https://www.example.com)`
+
+### Markdown editors
+
+You can also use a markdown editor to write your article. A few good ones are listed below:
+
+- [Stackedit](https://stackedit.io/app#)
+- [Dillinger](https://dillinger.io/)
+- [Markdown Editor](https://jbt.github.io/markdown-editor/)
+- [Markdown Live Preview](https://markdownlivepreview.com/)
+
+### How to
+
+Copy the contents of this file and paste it into the markdown editor of your choice. You should have a live preview of your article on the right side of the editor. Once you are done writing your article, send the source content to the Bhavesh Patel on basecamp and we will publish it on the website.
+
+The name of the file will be used as the URL for the article. For example, if you name the file `data-subject.md`, the URL for the article will be `https://aireadi.org/blog/data-subject`. Please make sure that the file name is in `kebab-case` and does not contain any special characters or spaces.
+
+An example of an already published article can be found here:
+
+### Important
+
+- Don't use a top level heading (#) in your article. The title of the article counts as a top level heading so you don't need to add one. Use second level headings (##) and below.
+- If you don't want to host your images on an online platform, you can send the images to Bhavesh Patel on basecamp and we will host them for you on the website itself.
+- If you are already on the AI-READI [team page](https://aireadi.org/team), your image will be used as the author image. Each person on the team has a unique ID(in the format `firstname-lastname`). Use this id to reference yourself in this instance. Any authors that are not on the team page will have a rendomly generated image as their author image.
+- The hero image will be zoomed in slightly on the website. Please make sure that the image you choose is high resolution and can be zoomed in without losing quality. Also make sure the main content takes the middle 60% of the image. This image should also be in landscape orientation.
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..22b6209
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,39 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./src/*"],
+ "~/*": ["./public/*"]
+ },
+ "incremental": true,
+ "types": ["node", "jest", "mocha", "@testing-library/jest-dom"],
+ "typeRoots": ["./src/types"],
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ]
+ },
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ "src/pages/api/contact.ts"
+ ],
+ "exclude": ["node_modules"],
+ "moduleResolution": ["node_modules", ".next", "node"]
+}
diff --git a/vercel.json b/vercel.json
new file mode 100644
index 0000000..603bfca
--- /dev/null
+++ b/vercel.json
@@ -0,0 +1,13 @@
+{
+ "headers": [
+ {
+ "source": "/fonts/inter-var-latin.woff2",
+ "headers": [
+ {
+ "key": "Cache-Control",
+ "value": "public, max-age=31536000, immutable"
+ }
+ ]
+ }
+ ]
+}