diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..5d8bda1 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v16.16.0 \ No newline at end of file diff --git a/README.md b/README.md index c87e042..d571615 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). +This is a [Next.js](https://nextjs.org/) project bootstrapped +with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). ## Getting Started @@ -14,9 +15,12 @@ Open [http://localhost:3000](http://localhost:3000) with your browser to see the You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. -[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. +[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed +on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited +in `pages/api/hello.ts`. -The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. +The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated +as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. ## Learn More @@ -25,10 +29,13 @@ To learn more about Next.js, take a look at the following resources: - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions +are welcome! ## Deploy on Vercel -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. +The easiest way to deploy your Next.js app is to use +the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) +from the creators of Next.js. Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/next-sitemap.config.js b/next-sitemap.config.js index dd8b2c2..813f62e 100644 --- a/next-sitemap.config.js +++ b/next-sitemap.config.js @@ -1,6 +1,6 @@ /** @type {import('next-sitemap').IConfig} */ module.exports = { - siteUrl: process.env.NEXT_PUBLIC_URL || 'https://colabo.ai', + siteUrl: process.env.NEXT_PUBLIC_URL || 'https://loop.colabo.ai', generateRobotsTxt: true, }; diff --git a/next.config.js b/next.config.js index 5ec5cce..7fadd32 100755 --- a/next.config.js +++ b/next.config.js @@ -8,6 +8,9 @@ const nextConfig = { sassOptions: { includePaths: [path.join(__dirname, 'styles')], }, + images: { + domains: ['colaboai-server-v1.s3.ap-northeast-2.amazonaws.com'], + }, i18n, }; diff --git a/package.json b/package.json index 0f70f39..2adbe7e 100644 --- a/package.json +++ b/package.json @@ -18,22 +18,35 @@ "prepare": "husky install" }, "dependencies": { + "@emotion/react": "^11.9.3", + "@emotion/styled": "^11.9.3", + "@mui/material": "^5.9.2", "@tanstack/react-query": "^4.0.8", + "@types/react-lottie": "^1.2.6", + "@types/react-responsive": "^8.0.5", + "axios": "^0.27.2", + "file-loader": "^6.2.0", "next": "^12.2.2", "next-i18next": "^11.2.2", "next-seo": "^5.5.0", "next-sitemap": "^3.1.11", "react": "^18.2.0", "react-dom": "^18.2.0", + "react-h5-audio-player": "^3.8.6", + "react-hot-toast": "^2.3.0", + "react-icons": "^4.4.0", + "react-lottie": "^1.2.3", + "react-responsive": "^9.0.0", "recoil": "^0.7.4", "sass": "^1.53.0" }, "devDependencies": { - "@testing-library/dom": "^8.16.0", - "@testing-library/jest-dom": "^5.16.4", + "@tanstack/react-query-devtools": "^4.2.3", + "@testing-library/dom": "^8.17.1", + "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.3.0", "@testing-library/react-hooks": "^8.0.1", - "@testing-library/user-event": "^14.3.0", + "@testing-library/user-event": "^14.4.3", "@types/node": "18.0.6", "@types/react": "18.0.15", "@types/react-dom": "18.0.6", @@ -50,12 +63,12 @@ "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.30.1", "eslint-plugin-react-hooks": "^4.6.0", + "husky": "^8.0.0", "jest": "^28.1.3", "jest-dom": "^4.0.0", "jest-environment-jsdom": "^28.1.3", "prettier": "^2.7.1", "ts-jest": "^28.0.7", - "typescript": "4.7.4", - "husky": "^8.0.0" + "typescript": "4.7.4" } } diff --git a/pages/_app.tsx b/pages/_app.tsx index c65047f..6f93951 100755 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,4 +1,4 @@ -import '../styles/globals.scss'; +import '@styles/common/globals.scss'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { RecoilRoot } from 'recoil'; import type { ReactElement, ReactNode } from 'react'; @@ -8,9 +8,12 @@ import { DefaultSeo } from 'next-seo'; import SEO from 'seo.config'; import { appWithTranslation } from 'next-i18next'; import '/public/static/fonts/styles.scss'; +import 'react-h5-audio-player/src/styles.scss'; +import { Toaster } from 'react-hot-toast'; -const queryClient = new QueryClient(); - +const queryClient = new QueryClient({ + defaultOptions: { queries: { retry: false, refetchOnWindowFocus: false } }, +}); export type NextPageWithLayout = NextPage & { getLayout?: (page: ReactElement) => ReactNode; }; @@ -27,6 +30,7 @@ function MyApp({ Component, pageProps }: AppPropsWithLayout) { {getLayout()} + ); diff --git a/pages/api/client.ts b/pages/api/client.ts new file mode 100755 index 0000000..011f0cf --- /dev/null +++ b/pages/api/client.ts @@ -0,0 +1,3 @@ +import axios from 'axios'; + +axios.defaults.withCredentials = true; diff --git a/pages/api/hello.ts b/pages/api/hello.ts deleted file mode 100755 index eb4cc66..0000000 --- a/pages/api/hello.ts +++ /dev/null @@ -1,10 +0,0 @@ -// Next.js API route support: https://nextjs.org/docs/api-routes/introduction -import type { NextApiRequest, NextApiResponse } from 'next'; - -type Data = { - name: string; -}; - -export default function handler(req: NextApiRequest, res: NextApiResponse) { - res.status(200).json({ name: 'John Doe' }); -} diff --git a/pages/favorites.tsx b/pages/favorites.tsx index ad92ba4..ac71188 100644 --- a/pages/favorites.tsx +++ b/pages/favorites.tsx @@ -1,5 +1,5 @@ import type { ReactElement } from 'react'; -import Layout from '../src/components/layout'; +import Layout from '@src/components/layout/layout'; import type { NextPageWithLayout } from './_app'; import { NextSeo } from 'next-seo'; diff --git a/pages/index.tsx b/pages/index.tsx index 552bf27..ef53b2d 100755 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,9 +1,48 @@ import type { ReactElement } from 'react'; -import Layout from '../src/components/layout'; +import Layout from '@src/components/layout/layout'; import type { NextPageWithLayout } from './_app'; import { NextSeo } from 'next-seo'; +import usePlay from '@src/hooks/usePlay'; +import { + IoMdArrowRoundDown, + IoMdHeartEmpty, + IoMdHeart, + IoMdPause, + IoMdPlay, + IoMdShare, + IoMdStarOutline, + IoMdStar, +} from 'react-icons/io'; +import styles from '/styles/index.module.scss'; +import useHeart from '@src/hooks/useHeart'; +import useStar from '@src/hooks/useStar'; +import useMusicQuery from '@src/queries/music.queries'; +import Image from 'next/image'; +import { Mobile, DesktopOrTablet } from '@src/hooks/useMediaQuery'; +import MusicLottie from '@src/utils/lotties/musicLottie'; +import Proto from '@src/utils/proto'; +import { useRecoilState } from 'recoil'; +import { currentIndexState } from '@src/store/atom'; +import { useEffect, useRef } from 'react'; + +const Index: NextPageWithLayout = () => { + const [start, stop, restart, play, musicId] = usePlay(); + const [heart, fillHeart, unFillHeart] = useHeart(); + const [star, fillStar, unFillStar] = useStar(); + const [currentIndex, setCurrentIndex] = useRecoilState(currentIndexState); + const { data, isLoading } = useMusicQuery(); + const divRef = useRef(null); + + useEffect(() => { + if (currentIndex !== -1 && data !== undefined) { + start(data[currentIndex]); + } + }, [currentIndex]); + + if (isLoading || data === undefined) { + return
로딩 중...
; + } -const Home: NextPageWithLayout = () => { return (
{ url: 'https://colabo.ai', }} /> -
-

인공지능으로 작곡한 음악 저작권 걱정없이 무료로 이용하세요.

-

- This example adds a property getLayout to your page, allowing you to return a React component for - the layout. This allows you to define the layout on a per-page basis. Since we are returning a function, we - can have complex nested layouts if desired. -

-

- When navigating between pages, we want to persist page state (input values, scroll position, etc) for a - Single-Page Application (SPA) experience. -

-

- This layout pattern will allow for state persistence because the React component tree is persisted between - page transitions. To preserve state, we need to prevent the React component tree from being discarded between - page transitions. -

-

Try It Out

-

- To visualize this, try tying in the search input in the Sidebar and then changing routes. You - will notice the input state is persisted. -

-
+ + <> +
+ +
+
+

+ 인공지능으로 작곡한 음악
+ 저작권 걱정없이 무료로 이용하세요 +

+ {/**/} + + {/**/} +
+
+
+

AI BGM SAMPLE

+
+ {data.map((music, currentIndex) => ( +
+
{music.id}
+
+ +
+
+ {musicId === music.id && play ? ( + + ) : ( + { + setCurrentIndex(currentIndex); + restart(); + }} + /> + )} +
+
{music.title}
+
{music.artist_name}
+
+ {!heart ? ( +
+ +
+ ) : ( +
+ +
+ )} +
+ +
+ {!star ? ( +
+ +
+ ) : ( +
+ +
+ )} +
+ +
+
+
+ ))} +
+ +
+
+ +
+ + <> +
+ +
+
+

+ 인공지능 + 으로 작곡한 음악
+ 이제는 저작권 + 걱정없이 +

+
+

+ 숏폼 콘텐츠 제작에 필요한 배경음악 +
+ 이제 무제한으로 즐기세요 +

+
+ +
+
+
+

AI MUSIC

+
+ {data.map((music, currentIndex) => ( +
+
+ +
+
+ {musicId === music.id && play ? ( + + ) : ( + { + setCurrentIndex(currentIndex); + restart(); + }} + /> + )} +
+
{music.title}
+
{music.artist_name}
+
+ ))} +
+ +
+
+ +
); }; -Home.getLayout = function getLayout(page: ReactElement) { +Index.getLayout = function getLayout(page: ReactElement) { return {page}; }; -export default Home; +export default Index; diff --git a/pages/login.tsx b/pages/login.tsx new file mode 100644 index 0000000..ddde997 --- /dev/null +++ b/pages/login.tsx @@ -0,0 +1,69 @@ +import type { ReactElement } from 'react'; +import Layout from '@src/components/layout/layout'; +import type { NextPageWithLayout } from './_app'; +import { NextSeo } from 'next-seo'; +import styles from '/styles/login.module.scss'; +import Link from 'next/link'; +import { useLogin } from '@src/hooks/useLogin'; + +const Login: NextPageWithLayout = () => { + const [username, password, onChangeUsername, onChangePassword, login] = useLogin(); + return ( +
+ +
+ +
+
+

음악의 새로운 패러다임

+
+
+ onChangeUsername(e)} + placeholder="이메일" + /> +
+
+ onChangePassword(e)} + placeholder="비밀번호" + /> +
+
+ +
+
+

루프에이아이가 처음이세요?

+
+ + + +
+
+
+
+ ); +}; + +Login.getLayout = function getLayout(page: ReactElement) { + return {page}; +}; + +export default Login; diff --git a/pages/register.tsx b/pages/register.tsx new file mode 100644 index 0000000..58c119f --- /dev/null +++ b/pages/register.tsx @@ -0,0 +1,95 @@ +import type { ReactElement } from 'react'; +import Layout from '@src/components/layout/layout'; +import type { NextPageWithLayout } from './_app'; +import { NextSeo } from 'next-seo'; +import styles from '/styles/register.module.scss'; +import { useRegister } from 'src/hooks/useRegister'; + +const Register: NextPageWithLayout = () => { + const [ + email, + password, + confirmPassword, + emailMessage, + passwordMessage, + confirmPasswordMessage, + isEmail, + isPassword, + isConfirmPassword, + onChangeEmail, + onChangePassword, + onChangeConfirmPassword, + mutation, + ] = useRegister(); + + return ( +
+ +
+ +
+
+

+ 지금 바로 회원가입하세요 +
+

+
+
+ onChangeEmail(e)} + placeholder="이메일" + /> + {email.length > 0 && isEmail ? null :

{emailMessage}

} +
+
+ onChangePassword(e)} + placeholder="비밀번호" + /> + {password.length > 0 && isPassword ? null :

{passwordMessage}

} +
+
+ onChangeConfirmPassword(e)} + placeholder="비밀번호 확인" + /> + {confirmPassword.length > 0 && isConfirmPassword ? null :

{confirmPasswordMessage}

} +
+
+ +
+
+
+
+ ); +}; + +Register.getLayout = function getLayout(page: ReactElement) { + return {page}; +}; + +export default Register; diff --git a/pages/search.tsx b/pages/search.tsx index 91f6ac2..dab9474 100644 --- a/pages/search.tsx +++ b/pages/search.tsx @@ -1,5 +1,5 @@ import type { ReactElement } from 'react'; -import Layout from '../src/components/layout'; +import Layout from '@src/components/layout/layout'; import type { NextPageWithLayout } from './_app'; import { NextSeo } from 'next-seo'; diff --git a/public/favicon.ico b/public/favicon.ico old mode 100755 new mode 100644 index 718d6fe..cb51c0e Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/image/LoopAI.png b/public/image/LoopAI.png new file mode 100644 index 0000000..2412722 Binary files /dev/null and b/public/image/LoopAI.png differ diff --git a/public/image/background.jpg b/public/image/background.jpg new file mode 100644 index 0000000..b65d9f3 Binary files /dev/null and b/public/image/background.jpg differ diff --git a/public/lottie/congratulations.json b/public/lottie/congratulations.json new file mode 100644 index 0000000..7e33b34 --- /dev/null +++ b/public/lottie/congratulations.json @@ -0,0 +1,7342 @@ +{ + "v": "5.9.2", + "fr": 24, + "ip": 0, + "op": 50, + "w": 512, + "h": 512, + "nm": "Comp 1", + "ddd": 0, + "assets": [ + { + "id": "comp_0", + "nm": "Effect", + "fr": 29.9700012207031, + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "Shape Layer 34", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [249, 254, 0], + "to": [20, -26.667, 0], + "ti": [-20, 26.667, 0] + }, + { "t": 42.4424424424424, "s": [369, 94, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [79, -116, 0], "ix": 1, "l": 2 }, + "s": { + "a": 1, + "k": [ + { + "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": 1.602, + "s": [0, 0, 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": 20.02, + "s": [80, 80, 100] + }, + { "t": 44.044044044044, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [78, -138], + [62, -116], + [80, -94], + [96, -116] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-48, -34], + [-32, -64], + [-6, -44], + [-26, -24] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 23.223, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [34, -34], + [44, -12], + [20, -8], + [6, -26] + ], + "c": true + } + ] + }, + { + "t": 34.4344344344344, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18, 44], + [34, 58], + [54, 36], + [34, 26] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0, 0, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 6, "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, 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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Shape Layer 33", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [249, 254, 0], + "to": [-61.333, 82.667, 0], + "ti": [53.333, -98.667, 0] + }, + { "t": 42.4424424424424, "s": [250.156, 498.914, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [79, -116, 0], "ix": 1, "l": 2 }, + "s": { + "a": 1, + "k": [ + { + "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": 1.602, + "s": [0, 0, 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": 14.414, + "s": [40, 40, 100] + }, + { "t": 44.8448448448448, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [78, -138], + [62, -116], + [80, -94], + [96, -116] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [11.625, -146.625], + [34.25, -196.5], + [3.938, -199.687], + [-19.375, -159.812] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 23.223, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [156.308, -273.519], + [156.115, -241.327], + [111.731, -237.327], + [97.731, -275.712] + ], + "c": true + } + ] + }, + { + "t": 34.4344344344344, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18, 44], + [34, 58], + [54, 36], + [34, 26] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.988235294118, 0.01568627451, 0.313725490196, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 6, "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, 0, 0.220220438639, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Shape Layer 32", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [249, 254, 0], + "to": [67.667, -85.333, 0], + "ti": [-17.667, 57.333, 0] + }, + { "t": 42.4424424424424, "s": [174.083, 20, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [79, -116, 0], "ix": 1, "l": 2 }, + "s": { + "a": 1, + "k": [ + { + "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": 1.602, + "s": [0, 0, 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.813, + "s": [80, 80, 100] + }, + { "t": 44.044044044044, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [78, -138], + [62, -116], + [80, -94], + [96, -116] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-48, -34], + [-32, -64], + [-6, -44], + [-26, -24] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 23.223, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [34, -34], + [44, -12], + [20, -8], + [6, -26] + ], + "c": true + } + ] + }, + { + "t": 34.4344344344344, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18, 44], + [34, 58], + [54, 36], + [34, 26] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.01568627451, 0.039215686275, 0.988235294118, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 6, "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": [0.01568627451, 0.038569682252, 0.988235294118, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "Shape Layer 31", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [249, 254, 0], + "to": [-15.823, 68, 0], + "ti": [37.823, -42, 0] + }, + { "t": 42.4424424424424, "s": [250.062, 446, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [79, -116, 0], "ix": 1, "l": 2 }, + "s": { + "a": 1, + "k": [ + { + "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": 1.602, + "s": [0, 0, 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": 14.414, + "s": [60, 60, 100] + }, + { "t": 44.044044044044, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [78, -138], + [62, -116], + [80, -94], + [96, -116] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [205.232, -216.563], + [203.565, -240.674], + [229.565, -220.674], + [209.565, -200.674] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 23.223, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-68.912, -136.912], + [-58.912, -114.912], + [-82.912, -110.912], + [-96.912, -128.912] + ], + "c": true + } + ] + }, + { + "t": 34.4344344344344, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18, 44], + [34, 58], + [54, 36], + [34, 26] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.988235294118, 0.01568627451, 0.313725490196, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 6, "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, 0, 0.220220438639, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 4, + "nm": "Shape Layer 30", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 4.805, + "s": [249, 254, 0], + "to": [-26.333, -26.333, 0], + "ti": [26.333, 26.333, 0] + }, + { "t": 42.4424424424424, "s": [91, 96, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [79, -116, 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": 1.602, + "s": [40, 40, 100] + }, + { "t": 44.044044044044, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [78, -50.5], + [84.5, -98.5], + [80, -94], + [118.5, -71] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-39.166, -22.222], + [-73.224, -22.776], + [-70.78, -58.723], + [-40.723, -50.501] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 23.223, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [90.602, -59.728], + [64.582, 3.437], + [4.563, -23.437], + [6, -77.456] + ], + "c": true + } + ] + }, + { + "t": 34.4344344344344, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18, 44], + [34, 58], + [54, 36], + [34, 26] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078431373, 1, 0, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 6, "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": [0.997647633272, 1, 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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "Shape Layer 29", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 4.004, + "s": [249, 254, 0], + "to": [27.333, 25.333, 0], + "ti": [-27.333, -25.333, 0] + }, + { "t": 42.4424424424424, "s": [413, 406, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [79, -116, 0], "ix": 1, "l": 2 }, + "s": { + "a": 1, + "k": [ + { + "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": 1.602, + "s": [0, 0, 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.215, + "s": [80, 80, 100] + }, + { "t": 44.044044044044, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [78, -138], + [62, -116], + [80, -94], + [96, -116] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-48, -34], + [-32, -64], + [-6, -44], + [-26, -24] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 23.223, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [34, -34], + [44, -12], + [20, -8], + [6, -26] + ], + "c": true + } + ] + }, + { + "t": 34.4344344344344, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18, 44], + [34, 58], + [54, 36], + [34, 26] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0, 0.964705882353, 1, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 6, "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": [0, 0.964705642999, 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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "Shape Layer 28", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 4.805, + "s": [248.983, 254.016, 0], + "to": [0, 0, 0], + "ti": [-26.123, -20.705, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 9.61, + "s": [249, 254, 0], + "to": [90, 71.333, 0], + "ti": [-109.667, -10, 0] + }, + { "t": 37.6376376376376, "s": [425, 424, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [77.476, -114.535, 0], "ix": 1, "l": 2 }, + "s": { + "a": 1, + "k": [ + { + "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": 1.602, + "s": [0, 0, 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.012, + "s": [20, 20, 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": 20.821, + "s": [70, 70, 100] + }, + { "t": 42.4424424424424, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [78, -138], + [62, -116], + [80, -94], + [96, -116] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-43, -34], + [-17, -36.5], + [14, -24], + [-6, -9] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 18.418, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-33.087, -34], + [-8.038, -34.535], + [-8.009, -34.118], + [-14.736, -7.963] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 28.028, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [34, -34], + [44, -12], + [20, -8], + [6, -26] + ], + "c": true + } + ] + }, + { + "t": 39.2392392392392, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [18, 44], + [34, 58], + [54, 36], + [34, 26] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.988235294118, 0.01568627451, 0.313725490196, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 6, "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, 0, 0.220220438639, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [82.598, -117.91], "ix": 2 }, + "a": { "a": 0, "k": [82.598, -117.91], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 8, + "ty": 4, + "nm": "circleStay 5", + "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.602, "s": [0] }, + { "t": 41.6416416416416, "s": [1805] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.291, "y": 1 }, + "o": { "x": 0.837, "y": 0 }, + "t": 5.606, + "s": [253.635, 252.297, 0], + "to": [-20, -26.667, 0], + "ti": [20, 26.667, 0] + }, + { "t": 37.6376376376376, "s": [133.635, 92.297, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-117.906, -150.703, 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": 1.602, + "s": [0, 0, 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": 32.833, + "s": [100, 100, 100] + }, + { "t": 41.6416416416416, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [12.188, 14.594], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.964705882353, 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": [-117.906, -150.703], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 9, + "ty": 4, + "nm": "circleStay 4", + "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.602, "s": [0] }, + { "t": 41.6416416416416, "s": [1085] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.044, "y": 1 }, + "o": { "x": 0.479, "y": 0 }, + "t": 5.606, + "s": [253.635, 252.297, 0], + "to": [-33, 0.333, 0], + "ti": [111, 43.667, 0] + }, + { "t": 37.6376376376376, "s": [55.635, 254.297, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-117.906, -150.703, 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": 1.602, + "s": [0, 0, 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": 24.825, + "s": [100, 100, 100] + }, + { "t": 41.6416416416416, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [12.188, 7] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 7.207, + "s": [7, 10.544] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 13.614, + "s": [12.188, 14.594] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 21.622, + "s": [7, 9] + }, + { "t": 32.032032032032, "s": [10, 12] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.663529698989, 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": [-117.906, -150.703], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 10, + "ty": 4, + "nm": "circleStay 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.602, "s": [0] }, + { "t": 41.6416416416416, "s": [2525] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.493, "y": 0 }, + "t": 5.606, + "s": [253.635, 252.297, 0], + "to": [16.667, -6.667, 0], + "ti": [-16.667, 6.667, 0] + }, + { "t": 37.6376376376376, "s": [353.635, 212.297, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-117.906, -150.703, 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": 1.602, + "s": [0, 0, 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": 32.833, + "s": [100, 100, 100] + }, + { "t": 41.6416416416416, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [12.188, 14.594], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.08630843817, 0.590588259229, 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": [-117.906, -150.703], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 11, + "ty": 4, + "nm": "circleStay 2", + "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.602, "s": [0] }, + { "t": 41.6416416416416, "s": [725] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0, "y": 0 }, + "t": 5.606, + "s": [253.635, 252.297, 0], + "to": [13.333, 13.333, 0], + "ti": [-13.333, -13.333, 0] + }, + { "t": 37.6376376376376, "s": [333.635, 332.297, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-117.906, -150.703, 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": 1.602, + "s": [0, 0, 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": 32.833, + "s": [100, 100, 100] + }, + { "t": 41.6416416416416, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [12.188, 14.594], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0, 0.305882263184, 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": [-117.906, -150.703], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 12, + "ty": 4, + "nm": "circleStay", + "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.602, "s": [0] }, + { "t": 41.6416416416416, "s": [2165] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.236, "y": 1 }, + "o": { "x": 0, "y": 0 }, + "t": 5.606, + "s": [253.635, 252.297, 0], + "to": [-12.667, 22, 0], + "ti": [12.667, -22, 0] + }, + { "t": 37.6376376376376, "s": [177.635, 384.297, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-117.906, -150.703, 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": 1.602, + "s": [0, 0, 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": 32.833, + "s": [100, 100, 100] + }, + { "t": 41.6416416416416, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [12.188, 14.594], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.982745121975, 0.748803890453, 0.435490686753, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-117.906, -150.703], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 13, + "ty": 4, + "nm": "boxStay", + "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.602, "s": [0] }, + { "t": 43.2432432432432, "s": [7] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [252.41, 252.863, 0], + "to": [30, -10, 0], + "ti": [-30, 10, 0] + }, + { "t": 41.6416416416416, "s": [432.41, 192.863, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-77.59, -147.137, 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": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 20.821, + "s": [12.82, 9.727] + }, + { "t": 43.2432432432432, "s": [0, 0] } + ], + "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": "fl", + "c": { "a": 0, "k": [0.314509881711, 0.334797369265, 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": [-77.59, -147.137], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 14, + "ty": 4, + "nm": "boxStay", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 4.004, + "s": [256.41, 254.863, 0], + "to": [-26.667, 0, 0], + "ti": [26.667, 0, 0] + }, + { "t": 37.6376376376376, "s": [96.41, 254.863, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-77.59, -147.137, 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": 1.602, + "s": [10, 10, 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": 14.414, + "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": 30.43, + "s": [30, 30, 100] + }, + { "t": 46.4464464464464, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [12.82, 9.727], "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": "fl", + "c": { "a": 0, "k": [0.477647010953, 0.369147805607, 0.003371614335, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-77.59, -147.137], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 15, + "ty": 4, + "nm": "boxStay", + "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": 8.008, "s": [0] }, + { "t": 36.8368368368368, "s": [1800] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [252.41, 248.863, 0], + "to": [21.667, -25, 0], + "ti": [-11.667, 95, 0] + }, + { "t": 31.2312312312312, "s": [382.41, 98.863, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-77.59, -147.137, 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": 6.406, + "s": [100, 100, 100] + }, + { "t": 27.2272272272272, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { "a": 0, "k": [12.82, 9.727], "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": "fl", + "c": { "a": 0, "k": [0, 1, 0.12150739782, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-77.59, -147.137], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 16, + "ty": 4, + "nm": "boxStay", + "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, "y": 0 }, + "t": 1.602, + "s": [252.41, 252.863, 0], + "to": [-20, 20, 0], + "ti": [20, -20, 0] + }, + { "t": 40.04004004004, "s": [132.41, 372.863, 0] } + ], + "ix": 2, + "l": 2, + "x": "var $bm_rt;\n$bm_rt = wiggle(4, 4);" + }, + "a": { "a": 0, "k": [-77.59, -147.137, 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": [12.82, 9.727], "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": "fl", + "c": { "a": 0, "k": [0.008202084373, 0.934865255917, 0.987882965686, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-77.59, -147.137], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 16.016, + "s": [63, 79] + }, + { "t": 36.036036036036, "s": [0, 0] } + ], + "ix": 3 + }, + "r": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 1.602, "s": [35] }, + { "t": 32.8328328328328, "s": [564] } + ], + "ix": 6 + }, + "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": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 17, + "ty": 4, + "nm": "boxStay", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [252.41, 250.863, 0], + "to": [-84, -22.667, 0], + "ti": [25, 21.667, 0] + }, + { "t": 35.2352352352352, "s": [102.41, 120.863, 0] } + ], + "ix": 2, + "l": 2, + "x": "var $bm_rt;\n$bm_rt = wiggle(4, 6);" + }, + "a": { "a": 0, "k": [-77.59, -147.137, 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": 3, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [12.82, 9.727] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 20.821, + "s": [10.82, 8.209] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "t": 31.231, + "s": [10.82, 8.209] + }, + { "t": 38.4384384384384, "s": [0, 0] } + ], + "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": "fl", + "c": { + "a": 1, + "k": [ + { + "i": { "x": [0.667], "y": [-14.321] }, + "o": { "x": [0.333], "y": [0] }, + "t": 6.406, + "s": [0.988817401961, 0.015253359664, 0.313317721498, 1] + }, + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [-5.356] }, + "t": 12.813, + "s": [1, 0, 0.306157968559, 1] + }, + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [0] }, + "t": 16.016, + "s": [0.984007358551, 0.490993767977, 0.64193379879, 1] + }, + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [0] }, + "t": 25.626, + "s": [0.896415412426, 0.578303277493, 0.675695836544, 1] + }, + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [0] }, + "t": 35.235, + "s": [0.988449752331, 0.137214049697, 0.397826641798, 1] + }, + { "t": 44.8448448448448, "s": [0.96632963419, 0.602031648159, 0.713564395905, 1] } + ], + "ix": 4 + }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-77.59, -147.137], "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": 1.602, "s": [0] }, + { "t": 30.4304304304304, "s": [720] } + ], + "ix": 6 + }, + "o": { "a": 0, "k": 78.003, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 45, "ix": 5 }, + "nm": "Transform" + } + ], + "nm": "Rectangle 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 18, + "ty": 4, + "nm": "boxStay", + "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": 8.008, "s": [0] }, + { "t": 48.0480480480481, "s": [1080] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [252.41, 252.863, 0], + "to": [20, 16.667, 0], + "ti": [-56, 5.333, 0] + }, + { "t": 40.04004004004, "s": [372.41, 352.863, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-77.59, -147.137, 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": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 4.004, + "s": [12.82, 9.727] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 20.02, + "s": [6, 9.727] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 32.833, + "s": [10, 8] + }, + { "t": 44.044044044044, "s": [0, 0] } + ], + "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": "fl", + "c": { "a": 0, "k": [0.691764801624, 0, 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": [-77.59, -147.137], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 19, + "ty": 4, + "nm": "Shape Layer 26", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [350, 263.465, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [100, 13.465, 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], + [-14, -32], + [0, 0], + [14.5, -47], + [-7, 8], + [-2.719, 1.269], + [-6, -9] + ], + "o": [ + [0, 0], + [17, 24], + [0, 0], + [-5, 23], + [7, -8], + [3.75, -1.75], + [6, 9] + ], + "v": [ + [-8, 1], + [27, 1], + [52, 6], + [26, 24], + [51, 33], + [77, 10], + [100, 15] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.077022073783, 0.409141660204, 1, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 4.805, "s": [2] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 14.414, "s": [6] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 22.422, "s": [3] }, + { "t": 30.4304304304304, "s": [1] } + ], + "ix": 5, + "x": "var $bm_rt;\n$bm_rt = content('Shape 1').content('Stroke 1').strokeWidth;" + }, + "lc": 2, + "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.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [100] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 14.414, "s": [46] }, + { "t": 22.4224224224224, "s": [0] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 14.414, "s": [100] }, + { "i": { "x": [0], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 22.422, "s": [59] }, + { "t": 30.4304304304304, "s": [0] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "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": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 20, + "ty": 4, + "nm": "Shape Layer 25", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [234.054, 256, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [-15.946, 6, 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], + [-28, 26], + [13, -5], + [-17.5, 9.5], + [17.182, 0.881], + [0, 0], + [-18, 7] + ], + "o": [ + [0, 0], + [13, -13], + [-13, 5], + [10, -6], + [-19.5, -1], + [0, 0], + [15, -7] + ], + "v": [ + [-2, 6], + [-4, -29], + [-12, -54], + [21, -35], + [22, -66], + [-8, -78], + [-5, -103] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.441437096689, 0.807628676471, 0.033527497684, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 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": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 15.215, "s": [0] }, + { "i": { "x": [0], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 28.829, "s": [20] }, + { "t": 42.4424424424424, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 22.422, "s": [46] }, + { "t": 36.036036036036, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 21, + "ty": 4, + "nm": "Shape Layer 24", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [230, 261, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [-20, 11, 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], + [-11, -6], + [-9, 19], + [3, 0], + [-17, -16], + [-11, 0], + [4, 20], + [-5, 4] + ], + "o": [ + [0, 0], + [11, 6], + [9, -19], + [-3, 0], + [16, 5], + [11, 0], + [-4, -20], + [5, -4] + ], + "v": [ + [-20, 11], + [43, -5], + [76, -16], + [62, -40], + [55, -16], + [88, -13], + [106, -48], + [112, -79] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078491211, 0.89019613827, 0.109803929048, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 6.406, "s": [3] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 32.833, "s": [7] }, + { "t": 42.4424424424424, "s": [0] } + ], + "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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 14.414, "s": [7] }, + { "t": 26.4264264264264, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 20.821, "s": [29] }, + { "t": 34.4344344344344, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 22, + "ty": 4, + "nm": "Shape Layer 23", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [189, 164, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [-61, -86, 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], + [-62, 4], + [-8, -19], + [24, -16], + [-49, 9], + [-9, -5] + ], + "o": [ + [0, 0], + [52, -4], + [8, 19], + [-35.262, 23.508], + [25, 5], + [9, 5] + ], + "v": [ + [-61, -86], + [10, -4], + [72, 41], + [42, 120], + [29, 65], + [112, 121] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.996078491211, 0.101960791794, 0.376470618154, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 4.805, "s": [4] }, + { "i": { "x": [0.667], "y": [-2.709] }, "o": { "x": [0.333], "y": [0] }, "t": 19.219, "s": [4] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [2.68] }, "t": 25.626, "s": [3] }, + { "t": 30.2542542542543, "s": [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": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 19.297, "s": [0] }, + { "t": 30.2542542542543, "s": [50] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 16.075, "s": [47] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 30.254, "s": [47] }, + { "t": 32.8328328328328, "s": [50] } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 8.985, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 23.164, "s": [166] }, + { "t": 30.2542542542543, "s": [180] } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 23, + "ty": 4, + "nm": "yelloLine", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [237, 233, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [-13, -17, 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], + [14, -17], + [-7, 0], + [18, 12], + [-9, -8], + [-16, -2], + [-9, -10] + ], + "o": [ + [0, 0], + [-14, 17], + [7, 0], + [-18, -12], + [4, 13], + [16, 2], + [9, 10] + ], + "v": [ + [-13, -17], + [-5, 43], + [6, 75], + [16, 53], + [0, 90], + [28, 111], + [60, 126] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.997150735294, 0.749501426547, 0.060611148909, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.167], "y": [0] }, "t": 4.805, "s": [4] }, + { "i": { "x": [0.667], "y": [0.25] }, "o": { "x": [0.333], "y": [0] }, "t": 28.829, "s": [6] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [1.125] }, "t": 36.036, "s": [3] }, + { "t": 43.2432432432432, "s": [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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 15.037, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 26.426, "s": [9] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 32.833, "s": [79] }, + { "t": 42.4424424424424, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 7.207, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 20.91, "s": [18] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 34.613, "s": [92] }, + { "t": 41.6416416416416, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 24, + "ty": 4, + "nm": "Shape Layer 21", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [129, 331.045, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [-121, 81.045, 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], + [-14, -61], + [21, 16], + [-20, 0], + [10, -6], + [0, 1] + ], + "o": [ + [0, 0], + [-5, 27], + [-21, -16], + [20, 0], + [-10, 6], + [0, -1] + ], + "v": [ + [12, 7], + [-36, 38], + [-78, 47], + [-82, 25], + [-86, 60], + [-121, 81] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [1, 0, 0.950587972005, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [2.938] }, "o": { "x": [0.333], "y": [0] }, "t": 18.418, "s": [7] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0.188] }, "t": 25.626, "s": [6] }, + { "t": 31.2312312312312, "s": [14] } + ], + "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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [100] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 22.867, "s": [32] }, + { "t": 36.036036036036, "s": [0] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.833], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 14.088, "s": [100] }, + { "t": 30.5495495495496, "s": [0] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 25, + "ty": 4, + "nm": "Shape Layer 20", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [122, 376.063, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [-128, 126.063, 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], + [9, -18.5], + [0, 0], + [-22.946, -3.386], + [81, 26.5], + [-3, -16], + [17, -10], + [1, 1] + ], + "o": [ + [0, 0], + [-19.5, 6], + [0, 0], + [30.5, 4.5], + [-25.5, -5], + [3, 16], + [-17, 10], + [-1, -1] + ], + "v": [ + [-16, -12], + [8, 30], + [-44, 49], + [-57, 74], + [-69, 0], + [-105, 42], + [-100, 106], + [-128, 126] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.797710164388, 0.918106617647, 0.263477430157, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { "a": 0, "k": 8, "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": 1, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.321], "y": [1] }, "o": { "x": [0.636], "y": [0] }, "t": 6.406, "s": [100] }, + { "t": 33.4334334334334, "s": [0] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0], "y": [1] }, "o": { "x": [0.346], "y": [0] }, "t": 19.92, "s": [100] }, + { "t": 39.2392392392392, "s": [0] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 26, + "ty": 4, + "nm": "torque", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [253, 261, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [3, 11, 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], + [63, -12], + [26, 4], + [0, 0], + [-21, 9], + [0, -11], + [35, 18], + [0, 0] + ], + "o": [ + [0, 0], + [-42, 12], + [-23, -5], + [0, 0], + [18, -4], + [0, 14.142], + [-35, -18], + [0, 0] + ], + "v": [ + [3, 11], + [-65, -39], + [-120, -9], + [-144, -44], + [-143, -119], + [-117, -100], + [-177, -73], + [-193, -69] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.309803921569, 0.89019613827, 0.866980219822, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [0.616] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [20] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0.768] }, "t": 16.016, "s": [8] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 22.422, "s": [4] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 30.43, "s": [4] }, + { "t": 42.4424424424424, "s": [0] } + ], + "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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 28.428, "s": [0] }, + { "t": 42.4424424424424, "s": [25] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "t": 21.4214214214214, "s": [25] } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "t": 36.4364364364364, "s": [261] } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 27, + "ty": 4, + "nm": "Shape Layer 18", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [250, 250, 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], + [15, -6], + [-1, 35], + [11, -14], + [-40.496, 45.355], + [11, 33], + [21.604, 31.973], + [11, -8], + [-7, 6] + ], + "o": [ + [0, 0], + [-15, 6], + [1, -35], + [-11, 14], + [25, -28], + [-11, -33], + [-25, -37], + [-11, 8], + [7, -6] + ], + "v": [ + [4, 16], + [-18, 4], + [-37, -34], + [-59, -75], + [-11, -42], + [12, -103], + [-64, -108], + [-102, -129], + [-105, -151] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.647058823529, 0.098039223166, 0.89019613827, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [5] }, + { "i": { "x": [0.667], "y": [1.59] }, "o": { "x": [0.333], "y": [0] }, "t": 18.418, "s": [7] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0.109] }, "t": 25.626, "s": [3] }, + { "i": { "x": [0.667], "y": [0.785] }, "o": { "x": [0.333], "y": [0] }, "t": 29.63, "s": [15] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [-3.322] }, "t": 35.235, "s": [3] }, + { "t": 42.4424424424424, "s": [3] } + ], + "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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 29.83, "s": [0] }, + { "t": 42.4424424424424, "s": [14] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "t": 19.019019019019, "s": [14] } + ], + "ix": 2 + }, + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "t": 33.4334334334334, "s": [308] } + ], + "ix": 3 + }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 28, + "ty": 4, + "nm": "torquise", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [250, 276, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [0, 26, 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], + [24, 58], + [-14, 24], + [-14, -10], + [24, -8], + [-6.81, 28.942] + ], + "o": [ + [0, 0], + [-13.355, -32.275], + [20.066, -34.4], + [24.466, 17.476], + [-36.84, 12.28], + [8, -34] + ], + "v": [ + [0, 26], + [50, -52], + [42, -110], + [102, -132], + [98, -84], + [32, -182] + ], + "c": false + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "st", + "c": { "a": 0, "k": [0.991636029412, 0.045814566519, 0.270707912071, 1], "ix": 3 }, + "o": { "a": 0, "k": 100, "ix": 4 }, + "w": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [10] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 16.416, "s": [5] }, + { "i": { "x": [0.667], "y": [1.002] }, "o": { "x": [0.333], "y": [0] }, "t": 21.622, "s": [5] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0.047] }, "t": 22.422, "s": [15] }, + { "t": 34.4344344344344, "s": [8] } + ], + "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 + }, + { + "ty": "tm", + "s": { + "a": 1, + "k": [ + { "i": { "x": [0.276], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 6.406, "s": [0] }, + { "t": 39.2392392392392, "s": [100] } + ], + "ix": 1 + }, + "e": { + "a": 1, + "k": [ + { "i": { "x": [0.017], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 9.376, "s": [0] }, + { "i": { "x": [0.026], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 20.266, "s": [52] }, + { "i": { "x": [0], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 33.634, "s": [90] }, + { "t": 38.4384384384384, "s": [100] } + ], + "ix": 2 + }, + "o": { "a": 0, "k": 0, "ix": 3 }, + "m": 1, + "ix": 2, + "nm": "Trim Paths 1", + "mn": "ADBE Vector Filter - Trim", + "hd": false + } + ], + "ip": 6.40640640640641, + "op": 54.4544544544545, + "st": 6.40640640640641, + "bm": 0 + }, + { + "ddd": 0, + "ind": 29, + "ty": 4, + "nm": "Shape Layer 16", + "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.602, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 25.626, "s": [360] }, + { "t": 49.6496496496496, "s": [720] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.161, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [250.25, 249.75, 0], + "to": [3.333, -11.667, 0], + "ti": [-27.757, 7.783, 0] + }, + { + "i": { "x": 0.243, "y": 1 }, + "o": { "x": 0.602, "y": 0 }, + "t": 12.613, + "s": [270.25, 179.75, 0], + "to": [20.443, -5.732, 0], + "ti": [-23.596, 6.488, 0] + }, + { + "i": { "x": 0.204, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 23.624, + "s": [320.25, 219.75, 0], + "to": [46.608, -12.816, 0], + "ti": [-22.333, 8.333, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.686, "y": 0 }, + "t": 34.635, + "s": [325, 143.5, 0], + "to": [11.042, -4.12, 0], + "ti": [-9.875, -36.458, 0] + }, + { "t": 45.6456456456456, "s": [401.25, 169.75, 0] } + ], + "ix": 2, + "l": 2, + "x": "var $bm_rt;\n$bm_rt = wiggle(2, 5);" + }, + "a": { "a": 0, "k": [10.75, -15.25, 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": 13.614, + "s": [120, 120, 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": 21.622, + "s": [90, 90, 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": 29.63, + "s": [75, 75, 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": 37.638, + "s": [50, 50, 100] + }, + { "t": 45.6456456456456, "s": [3, 3, 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": [ + [5.5, -20], + [3.5, -13.5], + [14, -10.5], + [18, -16.5] + ], + "c": true + }, + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0, 1, 0.159191146551, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 30, + "ty": 4, + "nm": "Shape Layer 15", + "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.602, "s": [0] }, + { "t": 38.4384384384384, "s": [180] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [250.75, 249.25, 0], + "to": [-53.667, 14.333, 0], + "ti": [11.741, -21.159, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 10.811, + "s": [248.232, 327.25, 0], + "to": [-14.713, 26.515, 0], + "ti": [12.873, 0.475, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 20.02, + "s": [182.75, 283.25, 0], + "to": [-31.328, -1.155, 0], + "ti": [11.848, -12.412, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 29.229, + "s": [124.75, 305.25, 0], + "to": [-14, 14.667, 0], + "ti": [0, 1.667, 0] + }, + { "t": 38.4384384384384, "s": [92.75, 373.25, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [0.75, 10.25, 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": 1.602, + "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.626, + "s": [80, 80, 100] + }, + { "t": 41.6416416416416, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-3, -0.5], + [-4, 20.5], + [4, 21], + [5.5, 0] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 20.02, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-3, -0.5], + [-4, 13.5], + [5, 13], + [5.5, 0] + ], + "c": true + } + ] + }, + { + "t": 37.6376376376376, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-5, 24.5], + [-1, 16.5], + [11, 20], + [3.5, 31] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.09976867227, 0.698284313725, 0.195047071868, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 31, + "ty": 4, + "nm": "Shape Layer 14", + "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.602, "s": [0] }, + { "t": 41.6416416416416, "s": [720] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [243.25, 267.75, 0], + "to": [1.917, 14, 0], + "ti": [53.841, -37.113, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 17.618, + "s": [254.75, 351.75, 0], + "to": [-41.138, 28.357, 0], + "ti": [11.25, -83.333, 0] + }, + { "t": 40.04004004004, "s": [337.25, 407.75, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-6.75, 17.75, 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": 1.602, + "s": [0, 0, 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": 4.805, + "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": 26.426, + "s": [100, 100, 100] + }, + { "t": 42.4424424424424, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-11.5, 12], + [-11.5, 23.5], + [-2, 17.5] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 9.61, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-11.5, 12], + [-11.5, 23.5], + [-2, 17.5] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 17.618, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-20.726, 19.203], + [-20.726, 30.703], + [-9.632, 23.134] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 25.626, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-11.953, 8.385], + [-19.204, 22.786], + [-9.632, 23.134] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 33.634, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-11.953, 8.385], + [-22.952, 19.329], + [-5.663, 25.195] + ], + "c": true + } + ] + }, + { + "t": 41.6416416416416, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [0.047, 10.385], + [-8.952, 28.329], + [5.337, 25.195] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0, 1, 0.159191146551, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 32, + "ty": 4, + "nm": "Shape Layer 13", + "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.602, "s": [0] }, + { "t": 37.6376376376376, "s": [360] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [241.25, 275.25, 0], + "to": [10, -13.333, 0], + "ti": [-18.333, 13.333, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.012, + "s": [301.25, 195.25, 0], + "to": [18.333, -13.333, 0], + "ti": [-8.333, 5, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 36.036, + "s": [351.25, 195.25, 0], + "to": [8.333, -5, 0], + "ti": [0, 5, 0] + }, + { "t": 44.044044044044, "s": [351.25, 165.25, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-8.75, 25.25, 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": 1.602, + "s": [0, 0, 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": 4.004, + "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": 37.638, + "s": [100, 100, 100] + }, + { "t": 44.044044044044, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-15.5, 18], + [-15.5, 32.5], + [-2, 25.5] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 8.008, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-2.5, 40], + [11.5, 32.5], + [-2, 25.5] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 27.227, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-14.5, 21], + [9.5, 28.5], + [-4, 36.5] + ], + "c": true + } + ] + }, + { + "t": 38.4384384384384, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-3.5, 27], + [10.5, 21.5], + [4, 33.5] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.09976867227, 0.698284313725, 0.195047071868, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 33, + "ty": 4, + "nm": "Shape Layer 12", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [265.9, 283.667, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [15.9, 33.667, 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": 37.638, + "s": [100, 100, 100] + }, + { "t": 47.2472472472472, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [39.75, -12], + [33, -7.5], + [49.5, -5], + [55, -10.5] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 25.626, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [44.75, -37], + [47, -28.5], + [59.5, -26], + [63, -40.5] + ], + "c": true + } + ] + }, + { + "t": 56.0560560560561, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [101.75, -193], + [103, -195.5], + [103.5, -195], + [104, -195.5] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0, 0.734467089176, 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": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [29.5, 12], + [30, 23.5], + [40.5, 18.5] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 20.02, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [62.5, 52], + [48, 41.5], + [58.5, 36.5] + ], + "c": true + } + ] + }, + { + "t": 41.6416416416416, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [73.5, 116], + [66, 100.5], + [80.5, 100.5] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.931678950787, 0.057644788176, 0.057644788176, 1], "ix": 4 }, + "o": { "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": 1.602, + "s": [0, 0], + "to": [0, 5], + "ti": [5, -8.333] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 22.422, + "s": [0, 30], + "to": [-5, 8.333], + "ti": [5, -3.333] + }, + { "t": 41.6416416416416, "s": [-30, 50] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 28.829, + "s": [100, 100] + }, + { "t": 40.04004004004, "s": [0, 0] } + ], + "ix": 3 + }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "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": 4, + "mn": "ADBE Vector Group", + "hd": false + }, + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-28.5, 30], + [-27.5, 40], + [-16.5, 35] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 22.422, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-99.5, 63], + [-83.5, 60], + [-92.5, 73] + ], + "c": true + } + ] + }, + { + "t": 44.044044044044, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-159.5, 86], + [-158.5, 97], + [-171.5, 90] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.977068006992, 0.681971907616, 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": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [0, 0], + "to": [-3.333, 8.333], + "ti": [-8.333, -13.333] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 22.422, + "s": [-20, 50], + "to": [8.333, 13.333], + "ti": [-11.667, -5] + }, + { "t": 38.4384384384384, "s": [50, 80] } + ], + "ix": 2 + }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [100, 100] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 28.829, + "s": [100, 100] + }, + { "t": 45.6456456456456, "s": [1, 1] } + ], + "ix": 3 + }, + "r": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 2.402, "s": [0] }, + { "t": 37.6376376376376, "s": [2] } + ], + "ix": 6 + }, + "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": 5, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 40.04004004004, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 34, + "ty": 4, + "nm": "Shape Layer 11", + "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": 1.602, + "s": [247, 241.875, 0], + "to": [-16.667, -16, 0], + "ti": [27.794, 11.291, 0] + }, + { + "i": { "x": 0, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 17.618, + "s": [147, 145.875, 0], + "to": [-64, -26, 0], + "ti": [-16.667, 14, 0] + }, + { "t": 28.028028028028, "s": [247, 61.875, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [15, 95.875, 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": 1.602, + "s": [2, 2, 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": 4.805, + "s": [70, 70, 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": 21.622, + "s": [100, 100, 100] + }, + { "t": 36.036036036036, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [11, 88.75], + [4, 97], + [21, 103], + [26, 91] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 10.41, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-13, 86.75], + [8, 79], + [21, 57], + [-10, 65] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 20.821, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-29, 84.75], + [-6, 81], + [5, 67], + [-24, 71] + ], + "c": true + } + ] + }, + { + "t": 28.028028028028, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-25, 94.75], + [-6, 93], + [-11, 107], + [-26, 109] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.09976867227, 0.698284313725, 0.195047071868, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 35, + "ty": 4, + "nm": "Shape Layer 10", + "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": 4.805, "s": [0] }, + { "t": 40.8408408408408, "s": [720] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [251.811, 244.451, 0], + "to": [-16.667, 16.667, 0], + "ti": [6.667, -30, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 20.821, + "s": [151.811, 344.451, 0], + "to": [-6.667, 30, 0], + "ti": [-10, -13.333, 0] + }, + { "t": 36.8368368368368, "s": [211.811, 424.451, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-135.189, 8.451, 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": 1.602, + "s": [0, 0, 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": 4.805, + "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": 31.231, + "s": [100, 100, 100] + }, + { "t": 40.8408408408408, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [11.621, 10.902] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 9.61, + "s": [5.33, 5] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 21.622, + "s": [12.791, 12] + }, + { "t": 32.8328328328328, "s": [0, 0] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 1.602, "s": [0] }, + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 13.614, "s": [13] }, + { "t": 30.4304304304304, "s": [2] } + ], + "ix": 4 + }, + "nm": "Rectangle Path 1", + "mn": "ADBE Vector Shape - Rect", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.09976867227, 0.698284313725, 0.195047071868, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-135.189, 8.451], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 43.023, "ix": 6 }, + "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": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 36, + "ty": 4, + "nm": "Shape Layer 9", + "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.602, "s": [0] }, + { "t": 31.2312312312312, "s": [360] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [250.5, 249.5, 0], + "to": [108, 26.667, 0], + "ti": [-26.667, 6.667, 0] + }, + { "t": 37.6376376376376, "s": [410.5, 209.5, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [-12.5, -18.5, 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": 1.602, + "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": 31.231, + "s": [100, 100, 100] + }, + { "t": 39.2392392392392, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-1, -24], + [-24, -17], + [-8, -13] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 12.813, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [-1, -24], + [18, -45], + [-8, -45] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 25.626, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [3, -18], + [12, 7], + [24, -17] + ], + "c": true + } + ] + }, + { + "t": 37.6376376376376, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [35, 16], + [14, -1], + [38, -7] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.494906885484, 0.092417301851, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 37, + "ty": 4, + "nm": "Shape Layer 8", + "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.602, "s": [0] }, + { "t": 41.6416416416416, "s": [720] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [252.5, 245.25, 0], + "to": [-36.667, 6.667, 0], + "ti": [-35.444, -22.095, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 17.618, + "s": [32.5, 285.25, 0], + "to": [51.333, 32, 0], + "ti": [-10, -30, 0] + }, + { "t": 47.2472472472472, "s": [92.5, 465.25, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [26.5, 43.25, 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": 1.602, + "s": [0, 0, 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": 11.211, + "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": 32.833, + "s": [100, 100, 100] + }, + { "t": 45.6456456456456, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ind": 0, + "ty": "sh", + "ix": 1, + "ks": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [31, 36.5], + [21, 42.5], + [21.5, 50], + [32, 44.5] + ], + "c": true + } + ] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 18.418, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [8.931, 54.247], + [16.542, 50.254], + [21.209, 54.992], + [14.69, 66.531] + ], + "c": true + } + ] + }, + { + "t": 37.6376376376376, + "s": [ + { + "i": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "o": [ + [0, 0], + [0, 0], + [0, 0], + [0, 0] + ], + "v": [ + [37.058, 55.614], + [28.405, 47.56], + [19.155, 54.11], + [27.377, 60.783] + ], + "c": true + } + ] + } + ], + "ix": 2 + }, + "nm": "Path 1", + "mn": "ADBE Vector Shape - Group", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.016341430066, 0.884243535061, 0.992156862745, 1], "ix": 4 }, + "o": { "a": 0, "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": "Shape 1", + "np": 3, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 38, + "ty": 4, + "nm": "Shape Layer 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.602, "s": [0] }, + { "t": 30.4304304304304, "s": [360] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [250.637, 249.557, 0], + "to": [-13.333, 20, 0], + "ti": [-32.667, -82, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 19.219, + "s": [170.637, 369.557, 0], + "to": [8.896, 22.33, 0], + "ti": [-3.333, 0, 0] + }, + { + "i": { "x": 0.526, "y": 1 }, + "o": { "x": 0.167, "y": 0.365 }, + "t": 27.227, + "s": [250, 457.557, 0], + "to": [3.333, 0, 0], + "ti": [0, -3.333, 0] + }, + { "t": 46.4464464464464, "s": [290.637, 509.557, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [29.637, 20.057, 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": 1.602, + "s": [0, 0, 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": 14.414, + "s": [90, 63.776, 100] + }, + { "t": 30.4304304304304, "s": [30, 21.259, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [9.273, 10.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 16.016, + "s": [8, 13.087] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 31.231, + "s": [12, 22.087] + }, + { "t": 44.044044044044, "s": [12, 10.087] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.973651960784, 0.13040192548, 0.599847471948, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [29.637, 20.057], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 133.859], "ix": 3 }, + "r": { "a": 0, "k": -1.505, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 39, + "ty": 4, + "nm": "Shape Layer 6", + "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.602, "s": [0] }, + { "t": 25.6256256256256, "s": [360] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [251.637, 249.557, 0], + "to": [0, 0, 0], + "ti": [20.933, 11.814, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 7.207, + "s": [251.637, 249.557, 0], + "to": [-67.333, -38, 0], + "ti": [61.333, 10, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.167, "y": 0 }, + "t": 32.032, + "s": [75.637, 0, 0], + "to": [-23.724, -3.868, 0], + "ti": [0, 3.333, 0] + }, + { "t": 42.4424424424424, "s": [75.637, -60, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [29.637, 20.057, 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": 1.602, + "s": [0, 0, 100] + }, + { "t": 22.4224224224224, "s": [151.944, 100, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [9.273, 10.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 11.211, + "s": [9.273, 16.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 21.622, + "s": [9.273, 16.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 32.032, + "s": [9.273, 8] + }, + { "t": 40.04004004004, "s": [0, 8] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.996660539216, 0.828883571251, 0.058627087462, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [29.637, 20.057], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 133.859], "ix": 3 }, + "r": { "a": 0, "k": -1.505, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 40, + "ty": 4, + "nm": "Shape Layer 5", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 1.602, "s": [0] }, + { "t": 9.60960960960961, "s": [100] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [247.637, 243.057, 0], + "to": [10, 6.667, 0], + "ti": [20.427, -23.51, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 14.414, + "s": [307.637, 283.057, 0], + "to": [-53, 61, 0], + "ti": [72.581, -103.076, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 27.227, + "s": [373.637, 381.057, 0], + "to": [-27.98, 39.735, 0], + "ti": [-20.419, -20.742, 0] + }, + { "t": 42.4424424424424, "s": [496.15, 505.511, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [29.637, 20.057, 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": 1.602, + "s": [0, 0, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 24.024, + "s": [80, 80, 100] + }, + { "t": 42.4424424424424, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [9.273, 10.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 11.211, + "s": [12, 6] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 26.426, + "s": [8, 14] + }, + { "t": 40.8408408408408, "s": [10, 6] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.977772653103, 0.882668793201, 0.22633458674, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [29.637, 20.057], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 133.859], "ix": 3 }, + "r": { + "a": 1, + "k": [ + { + "i": { "x": [0.667], "y": [0.975] }, + "o": { "x": [0.333], "y": [0] }, + "t": 4.805, + "s": [-1.505] + }, + { + "i": { "x": [0.667], "y": [1] }, + "o": { "x": [0.333], "y": [-0.006] }, + "t": 36.036, + "s": [1195.709] + }, + { "t": 42.4424424424424, "s": [125.495] } + ], + "ix": 6 + }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 41, + "ty": 4, + "nm": "Shape Layer 27", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 1.602, "s": [0] }, + { "t": 5.60560560560561, "s": [100] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 88.352, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 1.602, + "s": [250.137, 247.057, 0], + "to": [-9.667, -10.667, 0], + "ti": [61, -4.667, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 13.614, + "s": [192.137, 183.057, 0], + "to": [-31.3, 2.395, 0], + "ti": [-38.333, 58, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 29.63, + "s": [124.137, 107.057, 0], + "to": [24.684, -37.347, 0], + "ti": [12.333, 25.333, 0] + }, + { "t": 45.6456456456456, "s": [50.137, -44.943, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [29.637, 20.057, 0], "ix": 1, "l": 2 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] }, + "o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] }, + "t": 1.602, + "s": [99.991, 85.482, 100] + }, + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 0.833] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0.167] }, + "t": 27.227, + "s": [99.991, 85.482, 100] + }, + { "t": 47.2472472472472, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [0.833, 0.833] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [9.273, 10.113] + }, + { + "i": { "x": [0.833, 0.833], "y": [0.833, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0.167, 0.167] }, + "t": 19.219, + "s": [16.273, 6.113] + }, + { + "i": { "x": [0.833, 0.833], "y": [0.833, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0.167, 0.167] }, + "t": 34.434, + "s": [11.273, 11.113] + }, + { "t": 45.6456456456456, "s": [5.273, 5.113] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.984451593137, 0.027717848385, 0.027717848385, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [29.637, 20.057], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 133.859], "ix": 3 }, + "r": { "a": 0, "k": -1.505, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 42, + "ty": 4, + "nm": "Shape Layer 4", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { "i": { "x": [0.667], "y": [1] }, "o": { "x": [0.333], "y": [0] }, "t": 1.602, "s": [0] }, + { "t": 5.60560560560561, "s": [100] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 88.352, "ix": 10 }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [250.137, 247.057, 0], + "to": [10, -20, 0], + "ti": [-20, 20, 0] + }, + { + "i": { "x": 0.833, "y": 0.833 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 13.614, + "s": [310.137, 127.057, 0], + "to": [20, -20, 0], + "ti": [-20, 23.333, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.167, "y": 0.167 }, + "t": 29.63, + "s": [370.137, 127.057, 0], + "to": [20, -23.333, 0], + "ti": [-10, 23.333, 0] + }, + { "t": 45.6456456456456, "s": [430.137, -12.943, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [29.637, 20.057, 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": 1.602, + "s": [99.991, 85.482, 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": 27.227, + "s": [99.991, 85.482, 100] + }, + { "t": 47.2472472472472, "s": [0, 0, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [9.273, 10.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 17.618, + "s": [16.273, 6.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 34.434, + "s": [11.273, 11.113] + }, + { "t": 45.6456456456456, "s": [5.273, 5.113] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.564430206897, 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": [29.637, 20.057], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 133.859], "ix": 3 }, + "r": { "a": 0, "k": -1.505, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 43, + "ty": 4, + "nm": "Shape Layer 2", + "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.602, "s": [0] }, + { "t": 39.2392392392392, "s": [1440] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [251.637, 249.057, 0], + "to": [-6.667, 6.667, 0], + "ti": [16.667, -43.333, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 7.207, + "s": [211.637, 289.057, 0], + "to": [-16.667, 43.333, 0], + "ti": [10, -36.667, 0] + }, + { "t": 31.2312312312312, "s": [151.637, 509.057, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [29.637, 20.057, 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": 1.602, + "s": [0, 0, 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": 11.211, + "s": [100, 100, 100] + }, + { "t": 39.2392392392392, "s": [110, 110, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 1.602, + "s": [12.443, 13.57] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 19.219, + "s": [6, 7] + }, + { "t": 38.4384384384384, "s": [11, 9] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.543504901961, 0.683264519187, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [29.637, 20.057], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 133.859], "ix": 3 }, + "r": { "a": 0, "k": -1.505, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + }, + { + "ddd": 0, + "ind": 44, + "ty": 4, + "nm": "Shape Layer 7", + "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.602, "s": [0] }, + { "t": 43.2432432432432, "s": [720] } + ], + "ix": 10 + }, + "p": { + "a": 1, + "k": [ + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 1.602, + "s": [248.637, 249.557, 0], + "to": [13.333, -3.333, 0], + "ti": [-46.667, -10, 0] + }, + { + "i": { "x": 0.667, "y": 1 }, + "o": { "x": 0.333, "y": 0 }, + "t": 6.406, + "s": [328.637, 229.557, 0], + "to": [46.667, 10, 0], + "ti": [-33.333, -13.333, 0] + }, + { "t": 41.6416416416416, "s": [528.637, 309.557, 0] } + ], + "ix": 2, + "l": 2 + }, + "a": { "a": 0, "k": [29.637, 20.057, 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": 1.602, + "s": [10, 9.874, 100] + }, + { "t": 6.40640640640641, "s": [91.149, 90, 100] } + ], + "ix": 6, + "l": 2 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 4.004, + "s": [9.273, 10.113] + }, + { + "i": { "x": [0.667, 0.667], "y": [1, 1] }, + "o": { "x": [0.333, 0.333], "y": [0, 0] }, + "t": 20.821, + "s": [12, 15] + }, + { "t": 41.6416416416416, "s": [15, 8] } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.277022028904, 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": [29.637, 20.057], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 133.859], "ix": 3 }, + "r": { "a": 0, "k": -1.505, "ix": 6 }, + "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": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 1.6016016016016, + "op": 49.6496496496496, + "st": 1.6016016016016, + "bm": 0 + } + ] + } + ], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 0, + "nm": "Effect", + "refId": "comp_0", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [256, 256, 0], "ix": 2, "l": 2 }, + "a": { "a": 0, "k": [250, 250, 0], "ix": 1, "l": 2 }, + "s": { "a": 0, "k": [90, 90, 100], "ix": 6, "l": 2 } + }, + "ao": 0, + "w": 500, + "h": 500, + "ip": 0, + "op": 49.6496496496496, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/lottie/musicWave.json b/public/lottie/musicWave.json new file mode 100644 index 0000000..b067353 --- /dev/null +++ b/public/lottie/musicWave.json @@ -0,0 +1,9810 @@ +{ + "v": "5.4.2", + "fr": 60, + "ip": 0, + "op": 120, + "w": 700, + "h": 300, + "nm": "合成 1", + "ddd": 0, + "assets": [], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 4, + "nm": "形状图层 36", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [1013.75, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.458] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p458_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.951] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.098] }, + "n": ["0p833_1_0p167_0", "0p833_0p951_0p167_0p098"], + "t": 5, + "s": [10, 36], + "e": [10, 14] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.019] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.12] }, + "n": ["0p833_1_0p167_0", "0p833_1p019_0p167_-0p12"], + "t": 10, + "s": [10, 14], + "e": [10, 23] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.182] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.015] }, + "n": ["0p833_1_0p167_0", "0p833_1p182_0p167_0p015"], + "t": 15, + "s": [10, 23], + "e": [10, 12] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.057] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p057"], + "t": 20, + "s": [10, 12], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.986] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p986_0p167_-0p038"], + "t": 25, + "s": [10, 47], + "e": [10, 23] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.042] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.017] }, + "n": ["0p833_1_0p167_0", "0p833_1p042_0p167_-0p017"], + "t": 30, + "s": [10, 23], + "e": [10, 43] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.011] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.028] }, + "n": ["0p833_1_0p167_0", "0p833_1p011_0p167_0p028"], + "t": 35, + "s": [10, 43], + "e": [10, 13] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.99] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.01] }, + "n": ["0p833_1_0p167_0", "0p833_0p99_0p167_0p01"], + "t": 40, + "s": [10, 13], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.958] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.011] }, + "n": ["0p833_1_0p167_0", "0p833_0p958_0p167_-0p011"], + "t": 45, + "s": [10, 47], + "e": [10, 17] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.011] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.083] }, + "n": ["0p833_1_0p167_0", "0p833_1p011_0p167_-0p083"], + "t": 50, + "s": [10, 17], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.995] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.01] }, + "n": ["0p833_1_0p167_0", "0p833_0p995_0p167_0p01"], + "t": 55, + "s": [10, 32], + "e": [10, 15] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.729] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.005] }, + "n": ["0p833_1_0p167_0", "0p833_0p729_0p167_-0p005"], + "t": 60, + "s": [10, 15], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.998] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.12] }, + "n": ["0p833_1_0p167_0", "0p833_0p998_0p167_0p12"], + "t": 65, + "s": [10, 31], + "e": [10, 67] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.976] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.002] }, + "n": ["0p833_1_0p167_0", "0p833_0p976_0p167_-0p002"], + "t": 70, + "s": [10, 67], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.02] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.033] }, + "n": ["0p833_1_0p167_0", "0p833_1p02_0p167_-0p033"], + "t": 75, + "s": [10, 32], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.011] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.016] }, + "n": ["0p833_1_0p167_0", "0p833_1p011_0p167_0p016"], + "t": 80, + "s": [10, 57], + "e": [10, 26] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.026] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.01] }, + "n": ["0p833_1_0p167_0", "0p833_1p026_0p167_0p01"], + "t": 85, + "s": [10, 26], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.949] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.02] }, + "n": ["0p833_1_0p167_0", "0p833_0p949_0p167_0p02"], + "t": 90, + "s": [10, 61], + "e": [10, 15] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.796] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.13] }, + "n": ["0p833_1_0p167_0", "0p833_0p796_0p167_-0p13"], + "t": 95, + "s": [10, 15], + "e": [10, 33] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.042] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.141] }, + "n": ["0p833_1_0p167_0", "0p833_1p042_0p167_0p141"], + "t": 100, + "s": [10, 33], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.006] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.028] }, + "n": ["0p833_1_0p167_0", "0p833_1p006_0p167_0p028"], + "t": 105, + "s": [10, 59], + "e": [10, 20] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.951] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.006] }, + "n": ["0p833_1_0p167_0", "0p833_0p951_0p167_0p006"], + "t": 110, + "s": [10, 20], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.081] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p081"], + "t": 115, + "s": [10, 62], + "e": [10, 42] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.078431375325, 0.568627476692, 0.611764729023, 0.992156922817], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "形状图层 35", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [994.879, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.95] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p95_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.8] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.123] }, + "n": ["0p833_1_0p167_0", "0p833_0p8_0p167_-0p123"], + "t": 5, + "s": [10, 102], + "e": [10, 77] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.014] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.143] }, + "n": ["0p833_1_0p167_0", "0p833_1p014_0p167_0p143"], + "t": 10, + "s": [10, 77], + "e": [10, 42] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.02] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.012] }, + "n": ["0p833_1_0p167_0", "0p833_1p02_0p167_0p012"], + "t": 15, + "s": [10, 42], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.966] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.016] }, + "n": ["0p833_1_0p167_0", "0p833_0p966_0p167_0p016"], + "t": 20, + "s": [10, 83], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.917] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.058] }, + "n": ["0p833_1_0p167_0", "0p833_0p917_0p167_-0p058"], + "t": 25, + "s": [10, 32], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 3.667] }, + "o": { "x": [0.167, 0.167], "y": [0, 2.5] }, + "n": ["0p833_1_0p167_0", "0p833_3p667_0p167_2p5"], + "t": 30, + "s": [10, 62], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.914] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.083] }, + "n": ["0p833_1_0p167_0", "0p833_0p914_0p167_0p083"], + "t": 35, + "s": [10, 62], + "e": [10, 30] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 3.167] }, + "o": { "x": [0.167, 0.167], "y": [0, 2.75] }, + "n": ["0p833_1_0p167_0", "0p833_3p167_0p167_2p75"], + "t": 40, + "s": [10, 30], + "e": [10, 29] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.941] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.08] }, + "n": ["0p833_1_0p167_0", "0p833_0p941_0p167_0p08"], + "t": 45, + "s": [10, 29], + "e": [10, 56] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.76] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.198] }, + "n": ["0p833_1_0p167_0", "0p833_0p76_0p167_-0p198"], + "t": 50, + "s": [10, 56], + "e": [10, 48] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.028] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.128] }, + "n": ["0p833_1_0p167_0", "0p833_1p028_0p167_0p128"], + "t": 55, + "s": [10, 48], + "e": [10, 33] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.762] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p762_0p167_0p021"], + "t": 60, + "s": [10, 33], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.973] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.128] }, + "n": ["0p833_1_0p167_0", "0p833_0p973_0p167_0p128"], + "t": 65, + "s": [10, 53], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.823] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.04] }, + "n": ["0p833_1_0p167_0", "0p833_0p823_0p167_-0p04"], + "t": 70, + "s": [10, 90], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.158] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p158"], + "t": 75, + "s": [10, 65], + "e": [10, 37] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.804] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p804_0p167_0"], + "t": 80, + "s": [10, 37], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.086] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.145] }, + "n": ["0p833_1_0p167_0", "0p833_1p086_0p167_0p145"], + "t": 85, + "s": [10, 65], + "e": [10, 103] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.948] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.042] }, + "n": ["0p833_1_0p167_0", "0p833_0p948_0p167_0p042"], + "t": 90, + "s": [10, 103], + "e": [10, 26] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.014] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.138] }, + "n": ["0p833_1_0p167_0", "0p833_1p014_0p167_-0p138"], + "t": 95, + "s": [10, 26], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.059] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.012] }, + "n": ["0p833_1_0p167_0", "0p833_1p059_0p167_0p012"], + "t": 100, + "s": [10, 55], + "e": [10, 21] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.966] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p966_0p167_0p034"], + "t": 105, + "s": [10, 21], + "e": [10, 79] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.856] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.059] }, + "n": ["0p833_1_0p167_0", "0p833_0p856_0p167_-0p059"], + "t": 110, + "s": [10, 79], + "e": [10, 45] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.207] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p207"], + "t": 115, + "s": [10, 45], + "e": [10, 26] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.078431375325, 0.568627476692, 0.611764729023, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "形状图层 34", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [976.007, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 1.053] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_1p053_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.004] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.033] }, + "n": ["0p833_1_0p167_0", "0p833_1p004_0p167_0p033"], + "t": 5, + "s": [10, 65], + "e": [10, 24] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.971] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.004] }, + "n": ["0p833_1_0p167_0", "0p833_0p971_0p167_0p004"], + "t": 10, + "s": [10, 24], + "e": [10, 67] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.973] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.045] }, + "n": ["0p833_1_0p167_0", "0p833_0p973_0p167_-0p045"], + "t": 15, + "s": [10, 67], + "e": [10, 39] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.763] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.039] }, + "n": ["0p833_1_0p167_0", "0p833_0p763_0p167_-0p039"], + "t": 20, + "s": [10, 39], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.067] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.129] }, + "n": ["0p833_1_0p167_0", "0p833_1p067_0p167_0p129"], + "t": 25, + "s": [10, 58], + "e": [10, 93] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.955] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p955_0p167_0p037"], + "t": 30, + "s": [10, 93], + "e": [10, 30] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.899] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.098] }, + "n": ["0p833_1_0p167_0", "0p833_0p899_0p167_-0p098"], + "t": 35, + "s": [10, 30], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.403] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.486] }, + "n": ["0p833_1_0p167_0", "0p833_1p403_0p167_0p486"], + "t": 40, + "s": [10, 59], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.89] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.069] }, + "n": ["0p833_1_0p167_0", "0p833_0p89_0p167_0p069"], + "t": 45, + "s": [10, 65], + "e": [10, 30] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.212] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.348] }, + "n": ["0p833_1_0p167_0", "0p833_1p212_0p167_0p348"], + "t": 50, + "s": [10, 30], + "e": [10, 19] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.859] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.06] }, + "n": ["0p833_1_0p167_0", "0p833_0p859_0p167_0p06"], + "t": 55, + "s": [10, 19], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.759] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.204] }, + "n": ["0p833_1_0p167_0", "0p833_0p759_0p167_0p204"], + "t": 60, + "s": [10, 58], + "e": [10, 85] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.912] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.127] }, + "n": ["0p833_1_0p167_0", "0p833_0p912_0p167_0p127"], + "t": 65, + "s": [10, 85], + "e": [10, 136] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 2.333] }, + "o": { "x": [0.167, 0.167], "y": [0, 1.5] }, + "n": ["0p833_1_0p167_0", "0p833_2p333_0p167_1p5"], + "t": 70, + "s": [10, 136], + "e": [10, 139] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.92] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.078] }, + "n": ["0p833_1_0p167_0", "0p833_0p92_0p167_0p078"], + "t": 75, + "s": [10, 139], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.625] }, + "o": { "x": [0.167, 0.167], "y": [0, -2.042] }, + "n": ["0p833_1_0p167_0", "0p833_1p625_0p167_-2p042"], + "t": 80, + "s": [10, 88], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.784] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.074] }, + "n": ["0p833_1_0p167_0", "0p833_0p784_0p167_0p074"], + "t": 85, + "s": [10, 90], + "e": [10, 73] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.846] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.136] }, + "n": ["0p833_1_0p167_0", "0p833_0p846_0p167_0p136"], + "t": 90, + "s": [10, 73], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.185] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.181] }, + "n": ["0p833_1_0p167_0", "0p833_1p185_0p167_0p181"], + "t": 95, + "s": [10, 46], + "e": [10, 23] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.971] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.057] }, + "n": ["0p833_1_0p167_0", "0p833_0p971_0p167_0p057"], + "t": 100, + "s": [10, 23], + "e": [10, 97] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.884] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.045] }, + "n": ["0p833_1_0p167_0", "0p833_0p884_0p167_-0p045"], + "t": 105, + "s": [10, 97], + "e": [10, 49] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.078] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.294] }, + "n": ["0p833_1_0p167_0", "0p833_1p078_0p167_0p294"], + "t": 110, + "s": [10, 49], + "e": [10, 30] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p034"], + "t": 115, + "s": [10, 30], + "e": [10, 65] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.078431375325, 0.568627476692, 0.611764729023, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "形状图层 33", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [957.136, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.917] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p917_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -2.333] }, + "o": { "x": [0.167, 0.167], "y": [0, 4.167] }, + "n": ["0p833_1_0p167_0", "0p833_-2p333_0p167_4p167"], + "t": 5, + "s": [10, 90], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.975] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.083] }, + "n": ["0p833_1_0p167_0", "0p833_0p975_0p167_0p083"], + "t": 10, + "s": [10, 90], + "e": [10, 130] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.86] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.036] }, + "n": ["0p833_1_0p167_0", "0p833_0p86_0p167_-0p036"], + "t": 15, + "s": [10, 130], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.759] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.206] }, + "n": ["0p833_1_0p167_0", "0p833_0p759_0p167_0p206"], + "t": 20, + "s": [10, 102], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.84] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.127] }, + "n": ["0p833_1_0p167_0", "0p833_0p84_0p167_0p127"], + "t": 25, + "s": [10, 83], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.081] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.174] }, + "n": ["0p833_1_0p167_0", "0p833_1p081_0p167_0p174"], + "t": 30, + "s": [10, 47], + "e": [10, 14] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.964] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.041] }, + "n": ["0p833_1_0p167_0", "0p833_0p964_0p167_0p041"], + "t": 35, + "s": [10, 14], + "e": [10, 79] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.005] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.063] }, + "n": ["0p833_1_0p167_0", "0p833_1p005_0p167_-0p063"], + "t": 40, + "s": [10, 79], + "e": [10, 42] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.006] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.004] }, + "n": ["0p833_1_0p167_0", "0p833_1p006_0p167_0p004"], + "t": 45, + "s": [10, 42], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.016] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.006] }, + "n": ["0p833_1_0p167_0", "0p833_1p016_0p167_0p006"], + "t": 50, + "s": [10, 81], + "e": [10, 39] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.843] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.013] }, + "n": ["0p833_1_0p167_0", "0p833_0p843_0p167_0p013"], + "t": 55, + "s": [10, 39], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.956] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.178] }, + "n": ["0p833_1_0p167_0", "0p833_0p956_0p167_0p178"], + "t": 60, + "s": [10, 89], + "e": [10, 133] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.091] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p091"], + "t": 65, + "s": [10, 133], + "e": [10, 112] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.004] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_1p004_0p167_0p167"], + "t": 70, + "s": [10, 112], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.072] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.004] }, + "n": ["0p833_1_0p167_0", "0p833_1p072_0p167_0p004"], + "t": 75, + "s": [10, 91], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.839] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.039] }, + "n": ["0p833_1_0p167_0", "0p833_0p839_0p167_0p039"], + "t": 80, + "s": [10, 113], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.993] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.173] }, + "n": ["0p833_1_0p167_0", "0p833_0p993_0p167_0p173"], + "t": 85, + "s": [10, 72], + "e": [10, 34] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.817] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.007] }, + "n": ["0p833_1_0p167_0", "0p833_0p817_0p167_-0p007"], + "t": 90, + "s": [10, 34], + "e": [10, 69] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.058] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.153] }, + "n": ["0p833_1_0p167_0", "0p833_1p058_0p167_0p153"], + "t": 95, + "s": [10, 69], + "e": [10, 111] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.962] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p962_0p167_0p034"], + "t": 100, + "s": [10, 111], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.992] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.068] }, + "n": ["0p833_1_0p167_0", "0p833_0p992_0p167_-0p068"], + "t": 105, + "s": [10, 40], + "e": [10, 79] + }, + { + "i": { "x": [0.594, 0.594], "y": [1, -2.105] }, + "o": { "x": [0.163, 0.163], "y": [0, -0.105] }, + "n": ["0p594_1_0p163_0", "0p594_-2p105_0p163_-0p105"], + "t": 110, + "s": [10, 79], + "e": [10, 76.213] + }, + { + "i": { "x": [0.829, 0.829], "y": [1, 0.917] }, + "o": { "x": [0.425, 0.425], "y": [0, 0.232] }, + "n": ["0p829_1_0p425_0", "0p829_0p917_0p425_0p232"], + "t": 115, + "s": [10, 76.213], + "e": [10, 45] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.141176477075, 0.509803950787, 0.615686297417, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 4, + "nm": "形状图层 32", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [938.264, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 1.031] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_1p031_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 21] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.75] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.022] }, + "n": ["0p833_1_0p167_0", "0p833_0p75_0p167_0p022"], + "t": 5, + "s": [10, 21], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.125] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p125"], + "t": 10, + "s": [10, 47], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.879] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.025] }, + "n": ["0p833_1_0p167_0", "0p833_0p879_0p167_-0p025"], + "t": 15, + "s": [10, 99], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.032] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.269] }, + "n": ["0p833_1_0p167_0", "0p833_1p032_0p167_0p269"], + "t": 20, + "s": [10, 59], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.853] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.023] }, + "n": ["0p833_1_0p167_0", "0p833_0p853_0p167_0p023"], + "t": 25, + "s": [10, 41], + "e": [10, 66] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.101] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.193] }, + "n": ["0p833_1_0p167_0", "0p833_1p101_0p167_0p193"], + "t": 30, + "s": [10, 66], + "e": [10, 85] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.054] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.046] }, + "n": ["0p833_1_0p167_0", "0p833_1p054_0p167_0p046"], + "t": 35, + "s": [10, 85], + "e": [10, 43] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.924] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.033] }, + "n": ["0p833_1_0p167_0", "0p833_0p924_0p167_0p033"], + "t": 40, + "s": [10, 43], + "e": [10, 112] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.431] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.875] }, + "n": ["0p833_1_0p167_0", "0p833_0p431_0p167_-0p875"], + "t": 45, + "s": [10, 112], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.107] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.098] }, + "n": ["0p833_1_0p167_0", "0p833_1p107_0p167_0p098"], + "t": 50, + "s": [10, 106], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.966] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.047] }, + "n": ["0p833_1_0p167_0", "0p833_0p966_0p167_0p047"], + "t": 55, + "s": [10, 71], + "e": [10, 151] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.856] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.059] }, + "n": ["0p833_1_0p167_0", "0p833_0p856_0p167_-0p059"], + "t": 60, + "s": [10, 151], + "e": [10, 104] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.838] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.199] }, + "n": ["0p833_1_0p167_0", "0p833_0p838_0p167_0p199"], + "t": 65, + "s": [10, 104], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.987] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.172] }, + "n": ["0p833_1_0p167_0", "0p833_0p987_0p167_0p172"], + "t": 70, + "s": [10, 70], + "e": [10, 38] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.028] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.015] }, + "n": ["0p833_1_0p167_0", "0p833_1p028_0p167_-0p015"], + "t": 75, + "s": [10, 38], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.968] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p968_0p167_0p021"], + "t": 80, + "s": [10, 65], + "e": [10, 29] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.023] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.053] }, + "n": ["0p833_1_0p167_0", "0p833_1p023_0p167_-0p053"], + "t": 85, + "s": [10, 29], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.074] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.018] }, + "n": ["0p833_1_0p167_0", "0p833_1p074_0p167_0p018"], + "t": 90, + "s": [10, 51], + "e": [10, 23] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.896] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.039] }, + "n": ["0p833_1_0p167_0", "0p833_0p896_0p167_0p039"], + "t": 95, + "s": [10, 23], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.744] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.423] }, + "n": ["0p833_1_0p167_0", "0p833_0p744_0p167_0p423"], + "t": 100, + "s": [10, 76], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.053] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.123] }, + "n": ["0p833_1_0p167_0", "0p833_1p053_0p167_0p123"], + "t": 105, + "s": [10, 89], + "e": [10, 116] + }, + { + "i": { "x": [0.594, 0.594], "y": [1, 0.847] }, + "o": { "x": [0.163, 0.163], "y": [0, 0.017] }, + "n": ["0p594_1_0p163_0", "0p594_0p847_0p163_0p017"], + "t": 110, + "s": [10, 116], + "e": [10, 34.676] + }, + { + "i": { "x": [0.829, 0.829], "y": [1, 1.128] }, + "o": { "x": [0.425, 0.425], "y": [0, -0.343] }, + "n": ["0p829_1_0p425_0", "0p829_1p128_0p425_-0p343"], + "t": 115, + "s": [10, 34.676], + "e": [10, 65] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.200000017881, 0.450980424881, 0.623529434204, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "形状图层 31", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [919.393, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.662] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p662_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 60] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.98] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.111] }, + "n": ["0p833_1_0p167_0", "0p833_0p98_0p167_0p111"], + "t": 5, + "s": [10, 60], + "e": [10, 121] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.828] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.027] }, + "n": ["0p833_1_0p167_0", "0p833_0p828_0p167_-0p027"], + "t": 10, + "s": [10, 121], + "e": [10, 75] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.056] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.162] }, + "n": ["0p833_1_0p167_0", "0p833_1p056_0p167_0p162"], + "t": 15, + "s": [10, 75], + "e": [10, 26] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.933] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p933_0p167_0p034"], + "t": 20, + "s": [10, 26], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.661] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.344] }, + "n": ["0p833_1_0p167_0", "0p833_0p661_0p167_-0p344"], + "t": 25, + "s": [10, 108], + "e": [10, 92] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.017] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.111] }, + "n": ["0p833_1_0p167_0", "0p833_1p017_0p167_0p111"], + "t": 30, + "s": [10, 92], + "e": [10, 43] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.959] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.014] }, + "n": ["0p833_1_0p167_0", "0p833_0p959_0p167_0p014"], + "t": 35, + "s": [10, 43], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.869] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.081] }, + "n": ["0p833_1_0p167_0", "0p833_0p869_0p167_-0p081"], + "t": 40, + "s": [10, 102], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.314] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.23] }, + "n": ["0p833_1_0p167_0", "0p833_1p314_0p167_0p23"], + "t": 45, + "s": [10, 72], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.943] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.066] }, + "n": ["0p833_1_0p167_0", "0p833_0p943_0p167_0p066"], + "t": 50, + "s": [10, 55], + "e": [10, 136] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.772] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.176] }, + "n": ["0p833_1_0p167_0", "0p833_0p772_0p167_-0p176"], + "t": 55, + "s": [10, 136], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.854] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.131] }, + "n": ["0p833_1_0p167_0", "0p833_0p854_0p167_0p131"], + "t": 60, + "s": [10, 110], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.061] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.194] }, + "n": ["0p833_1_0p167_0", "0p833_1p061_0p167_0p194"], + "t": 65, + "s": [10, 65], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.862] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.035] }, + "n": ["0p833_1_0p167_0", "0p833_0p862_0p167_0p035"], + "t": 70, + "s": [10, 31], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.209] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p209"], + "t": 75, + "s": [10, 90], + "e": [10, 129] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.925] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.025] }, + "n": ["0p833_1_0p167_0", "0p833_0p925_0p167_-0p025"], + "t": 80, + "s": [10, 129], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.778] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.75] }, + "n": ["0p833_1_0p167_0", "0p833_1p778_0p167_-0p75"], + "t": 85, + "s": [10, 99], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.863] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.075] }, + "n": ["0p833_1_0p167_0", "0p833_0p863_0p167_0p075"], + "t": 90, + "s": [10, 102], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.167] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.213] }, + "n": ["0p833_1_0p167_0", "0p833_1p167_0p167_0p213"], + "t": 95, + "s": [10, 71], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.985] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.056] }, + "n": ["0p833_1_0p167_0", "0p833_0p985_0p167_0p056"], + "t": 100, + "s": [10, 51], + "e": [10, 111] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.98] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.019] }, + "n": ["0p833_1_0p167_0", "0p833_0p98_0p167_-0p019"], + "t": 105, + "s": [10, 111], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.073] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.027] }, + "n": ["0p833_1_0p167_0", "0p833_1p073_0p167_-0p027"], + "t": 110, + "s": [10, 62], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.033] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p033"], + "t": 115, + "s": [10, 99], + "e": [10, 33] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.200000017881, 0.450980424881, 0.623529434204, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "形状图层 30", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [900.521, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.951] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p951_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.02] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.119] }, + "n": ["0p833_1_0p167_0", "0p833_1p02_0p167_-0p119"], + "t": 5, + "s": [10, 91], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.881] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.016] }, + "n": ["0p833_1_0p167_0", "0p833_0p881_0p167_0p016"], + "t": 10, + "s": [10, 70], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.235] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.28] }, + "n": ["0p833_1_0p167_0", "0p833_1p235_0p167_0p28"], + "t": 15, + "s": [10, 96], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.867] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.062] }, + "n": ["0p833_1_0p167_0", "0p833_0p867_0p167_0p062"], + "t": 20, + "s": [10, 107], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.877] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.223] }, + "n": ["0p833_1_0p167_0", "0p833_0p877_0p167_0p223"], + "t": 25, + "s": [10, 65], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.181] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.257] }, + "n": ["0p833_1_0p167_0", "0p833_1p181_0p167_0p257"], + "t": 30, + "s": [10, 40], + "e": [10, 28] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.057] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p057"], + "t": 35, + "s": [10, 28], + "e": [10, 66] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.196] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.038] }, + "n": ["0p833_1_0p167_0", "0p833_1p196_0p167_-0p038"], + "t": 40, + "s": [10, 66], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.961] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.058] }, + "n": ["0p833_1_0p167_0", "0p833_0p961_0p167_0p058"], + "t": 45, + "s": [10, 40], + "e": [10, 127] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.895] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.074] }, + "n": ["0p833_1_0p167_0", "0p833_0p895_0p167_-0p074"], + "t": 50, + "s": [10, 127], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.576] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.403] }, + "n": ["0p833_1_0p167_0", "0p833_0p576_0p167_0p403"], + "t": 55, + "s": [10, 81], + "e": [10, 69] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.026] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.104] }, + "n": ["0p833_1_0p167_0", "0p833_1p026_0p167_0p104"], + "t": 60, + "s": [10, 69], + "e": [10, 20] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.952] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.02] }, + "n": ["0p833_1_0p167_0", "0p833_0p952_0p167_0p02"], + "t": 65, + "s": [10, 20], + "e": [10, 84] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.022] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.114] }, + "n": ["0p833_1_0p167_0", "0p833_1p022_0p167_-0p114"], + "t": 70, + "s": [10, 84], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.017] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.017] }, + "n": ["0p833_1_0p167_0", "0p833_1p017_0p167_0p017"], + "t": 75, + "s": [10, 57], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.959] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.014] }, + "n": ["0p833_1_0p167_0", "0p833_0p959_0p167_0p014"], + "t": 80, + "s": [10, 91], + "e": [10, 50] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.798] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.079] }, + "n": ["0p833_1_0p167_0", "0p833_0p798_0p167_-0p079"], + "t": 85, + "s": [10, 50], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.936] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.142] }, + "n": ["0p833_1_0p167_0", "0p833_0p936_0p167_0p142"], + "t": 90, + "s": [10, 71], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.143] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.274] }, + "n": ["0p833_1_0p167_0", "0p833_0p143_0p167_-0p274"], + "t": 95, + "s": [10, 101], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.924] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.092] }, + "n": ["0p833_1_0p167_0", "0p833_0p924_0p167_0p092"], + "t": 100, + "s": [10, 94], + "e": [10, 29] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.208] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.819] }, + "n": ["0p833_1_0p167_0", "0p833_0p208_0p167_-0p819"], + "t": 105, + "s": [10, 29], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.982] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.093] }, + "n": ["0p833_1_0p167_0", "0p833_0p982_0p167_0p093"], + "t": 110, + "s": [10, 35], + "e": [10, 86] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.018] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p018"], + "t": 115, + "s": [10, 86], + "e": [10, 45] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.254901975393, 0.400000035763, 0.627451002598, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 8, + "ty": 4, + "nm": "形状图层 29", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [881.65, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.866] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p866_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 123] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.988] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.222] }, + "n": ["0p833_1_0p167_0", "0p833_0p988_0p167_0p222"], + "t": 5, + "s": [10, 123], + "e": [10, 173] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.81] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.014] }, + "n": ["0p833_1_0p167_0", "0p833_0p81_0p167_-0p014"], + "t": 10, + "s": [10, 173], + "e": [10, 130] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.148] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p148"], + "t": 15, + "s": [10, 130], + "e": [10, 75] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.934] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p934_0p167_-0p037"], + "t": 20, + "s": [10, 75], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.417] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.313] }, + "n": ["0p833_1_0p167_0", "0p833_0p417_0p167_-0p313"], + "t": 25, + "s": [10, 113], + "e": [10, 105] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.863] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.097] }, + "n": ["0p833_1_0p167_0", "0p833_0p863_0p167_0p097"], + "t": 30, + "s": [10, 105], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.108] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.212] }, + "n": ["0p833_1_0p167_0", "0p833_1p108_0p167_0p212"], + "t": 35, + "s": [10, 57], + "e": [10, 26] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.933] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.047] }, + "n": ["0p833_1_0p167_0", "0p833_0p933_0p167_0p047"], + "t": 40, + "s": [10, 26], + "e": [10, 97] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.726] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.339] }, + "n": ["0p833_1_0p167_0", "0p833_0p726_0p167_-0p339"], + "t": 45, + "s": [10, 97], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.865] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.12] }, + "n": ["0p833_1_0p167_0", "0p833_0p865_0p167_0p12"], + "t": 50, + "s": [10, 83], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.983] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.217] }, + "n": ["0p833_1_0p167_0", "0p833_0p983_0p167_0p217"], + "t": 55, + "s": [10, 51], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.896] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p896_0p167_-0p021"], + "t": 60, + "s": [10, 31], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -0.229] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.417] }, + "n": ["0p833_1_0p167_0", "0p833_-0p229_0p167_0p417"], + "t": 65, + "s": [10, 47], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.989] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.089] }, + "n": ["0p833_1_0p167_0", "0p833_0p989_0p167_0p089"], + "t": 70, + "s": [10, 51], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.962] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_0p962_0p167_-0p012"], + "t": 75, + "s": [10, 106], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.792] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.071] }, + "n": ["0p833_1_0p167_0", "0p833_0p792_0p167_-0p071"], + "t": 80, + "s": [10, 58], + "e": [10, 84] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.081] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.139] }, + "n": ["0p833_1_0p167_0", "0p833_1p081_0p167_0p139"], + "t": 85, + "s": [10, 84], + "e": [10, 123] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.897] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.041] }, + "n": ["0p833_1_0p167_0", "0p833_0p897_0p167_0p041"], + "t": 90, + "s": [10, 123], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.074] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.44] }, + "n": ["0p833_1_0p167_0", "0p833_1p074_0p167_0p44"], + "t": 95, + "s": [10, 46], + "e": [10, 28] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.87] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.039] }, + "n": ["0p833_1_0p167_0", "0p833_0p87_0p167_0p039"], + "t": 100, + "s": [10, 28], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.11] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.232] }, + "n": ["0p833_1_0p167_0", "0p833_1p11_0p167_0p232"], + "t": 105, + "s": [10, 62], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.996] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.047] }, + "n": ["0p833_1_0p167_0", "0p833_0p996_0p167_0p047"], + "t": 110, + "s": [10, 81], + "e": [10, 37] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.004] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p004"], + "t": 115, + "s": [10, 37], + "e": [10, 79] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.254901975393, 0.400000035763, 0.627451002598, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 9, + "ty": 4, + "nm": "形状图层 28", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [862.779, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.823] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p823_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 73] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.025] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.158] }, + "n": ["0p833_1_0p167_0", "0p833_1p025_0p167_0p158"], + "t": 5, + "s": [10, 73], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.05] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.019] }, + "n": ["0p833_1_0p167_0", "0p833_1p05_0p167_0p019"], + "t": 10, + "s": [10, 110], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.029] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.031] }, + "n": ["0p833_1_0p167_0", "0p833_1p029_0p167_0p031"], + "t": 15, + "s": [10, 62], + "e": [10, 139] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.942] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.022] }, + "n": ["0p833_1_0p167_0", "0p833_0p942_0p167_0p022"], + "t": 20, + "s": [10, 139], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.823] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.188] }, + "n": ["0p833_1_0p167_0", "0p833_0p823_0p167_-0p188"], + "t": 25, + "s": [10, 35], + "e": [10, 67] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.935] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.157] }, + "n": ["0p833_1_0p167_0", "0p833_0p935_0p167_0p157"], + "t": 30, + "s": [10, 67], + "e": [10, 103] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.604] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.292] }, + "n": ["0p833_1_0p167_0", "0p833_0p604_0p167_-0p292"], + "t": 35, + "s": [10, 103], + "e": [10, 95] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.106] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p106"], + "t": 40, + "s": [10, 95], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.133] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_1p133_0p167_0p167"], + "t": 45, + "s": [10, 65], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.919] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.051] }, + "n": ["0p833_1_0p167_0", "0p833_0p919_0p167_0p051"], + "t": 50, + "s": [10, 35], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -0.708] }, + "o": { "x": [0.167, 0.167], "y": [0, -3.167] }, + "n": ["0p833_1_0p167_0", "0p833_-0p708_0p167_-3p167"], + "t": 55, + "s": [10, 113], + "e": [10, 111] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.088] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p088"], + "t": 60, + "s": [10, 111], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.784] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p784_0p167_-0p037"], + "t": 65, + "s": [10, 72], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.136] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p136"], + "t": 70, + "s": [10, 99], + "e": [10, 142] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.927] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.025] }, + "n": ["0p833_1_0p167_0", "0p833_0p927_0p167_-0p025"], + "t": 75, + "s": [10, 142], + "e": [10, 109] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.542] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.604] }, + "n": ["0p833_1_0p167_0", "0p833_1p542_0p167_-0p604"], + "t": 80, + "s": [10, 109], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.067] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.072] }, + "n": ["0p833_1_0p167_0", "0p833_1p067_0p167_0p072"], + "t": 85, + "s": [10, 113], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.019] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.037] }, + "n": ["0p833_1_0p167_0", "0p833_1p019_0p167_0p037"], + "t": 90, + "s": [10, 83], + "e": [10, 137] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.879] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.015] }, + "n": ["0p833_1_0p167_0", "0p833_0p879_0p167_0p015"], + "t": 95, + "s": [10, 137], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.183] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.267] }, + "n": ["0p833_1_0p167_0", "0p833_1p183_0p167_0p267"], + "t": 100, + "s": [10, 71], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.057] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p057"], + "t": 105, + "s": [10, 41], + "e": [10, 137] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.886] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.025] }, + "n": ["0p833_1_0p167_0", "0p833_0p886_0p167_-0p025"], + "t": 110, + "s": [10, 137], + "e": [10, 63] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.397] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p397"], + "t": 115, + "s": [10, 63], + "e": [10, 46] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.286274522543, 0.368627458811, 0.631372570992, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 10, + "ty": 4, + "nm": "形状图层 27", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [843.907, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.998] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p998_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 161] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.989] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.002] }, + "n": ["0p833_1_0p167_0", "0p833_0p989_0p167_-0p002"], + "t": 5, + "s": [10, 161], + "e": [10, 43] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.006] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_1p006_0p167_-0p012"], + "t": 10, + "s": [10, 43], + "e": [10, 146] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.952] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.005] }, + "n": ["0p833_1_0p167_0", "0p833_0p952_0p167_0p005"], + "t": 15, + "s": [10, 146], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.842] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.116] }, + "n": ["0p833_1_0p167_0", "0p833_0p842_0p167_-0p116"], + "t": 20, + "s": [10, 36], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.923] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.177] }, + "n": ["0p833_1_0p167_0", "0p833_0p923_0p167_0p177"], + "t": 25, + "s": [10, 82], + "e": [10, 123] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -0.917] }, + "o": { "x": [0.167, 0.167], "y": [0, -1.056] }, + "n": ["0p833_1_0p167_0", "0p833_-0p917_0p167_-1p056"], + "t": 30, + "s": [10, 123], + "e": [10, 120] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.893] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.087] }, + "n": ["0p833_1_0p167_0", "0p833_0p893_0p167_0p087"], + "t": 35, + "s": [10, 120], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.184] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.373] }, + "n": ["0p833_1_0p167_0", "0p833_1p184_0p167_0p373"], + "t": 40, + "s": [10, 54], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.947] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.057] }, + "n": ["0p833_1_0p167_0", "0p833_0p947_0p167_0p057"], + "t": 45, + "s": [10, 35], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.867] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.148] }, + "n": ["0p833_1_0p167_0", "0p833_0p867_0p167_-0p148"], + "t": 50, + "s": [10, 96], + "e": [10, 74] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.173] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.224] }, + "n": ["0p833_1_0p167_0", "0p833_1p173_0p167_0p224"], + "t": 55, + "s": [10, 74], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.869] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.056] }, + "n": ["0p833_1_0p167_0", "0p833_0p869_0p167_0p056"], + "t": 60, + "s": [10, 61], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.069] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.228] }, + "n": ["0p833_1_0p167_0", "0p833_1p069_0p167_0p228"], + "t": 65, + "s": [10, 101], + "e": [10, 124] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.823] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p823_0p167_0p038"], + "t": 70, + "s": [10, 124], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.956] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.158] }, + "n": ["0p833_1_0p167_0", "0p833_0p956_0p167_0p158"], + "t": 75, + "s": [10, 82], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.973] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.095] }, + "n": ["0p833_1_0p167_0", "0p833_0p973_0p167_-0p095"], + "t": 80, + "s": [10, 35], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.094] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.039] }, + "n": ["0p833_1_0p167_0", "0p833_1p094_0p167_-0p039"], + "t": 85, + "s": [10, 57], + "e": [10, 42] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.831] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.044] }, + "n": ["0p833_1_0p167_0", "0p833_0p831_0p167_0p044"], + "t": 90, + "s": [10, 42], + "e": [10, 74] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.861] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.164] }, + "n": ["0p833_1_0p167_0", "0p833_0p861_0p167_0p164"], + "t": 95, + "s": [10, 74], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.189] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.208] }, + "n": ["0p833_1_0p167_0", "0p833_1p189_0p167_0p208"], + "t": 100, + "s": [10, 107], + "e": [10, 129] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.98] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.058] }, + "n": ["0p833_1_0p167_0", "0p833_0p98_0p167_0p058"], + "t": 105, + "s": [10, 129], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.99] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.026] }, + "n": ["0p833_1_0p167_0", "0p833_0p99_0p167_-0p026"], + "t": 110, + "s": [10, 57], + "e": [10, 112] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.009] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p009"], + "t": 115, + "s": [10, 112], + "e": [10, 63] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.317647069693, 0.337254911661, 0.631372570992, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 11, + "ty": 4, + "nm": "形状图层 26", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [825.036, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.967] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p967_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 193] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.903] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.055] }, + "n": ["0p833_1_0p167_0", "0p833_0p903_0p167_-0p055"], + "t": 5, + "s": [10, 193], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.972] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.594] }, + "n": ["0p833_1_0p167_0", "0p833_0p972_0p167_0p594"], + "t": 10, + "s": [10, 101], + "e": [10, 86] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.225] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.042] }, + "n": ["0p833_1_0p167_0", "0p833_1p225_0p167_-0p042"], + "t": 15, + "s": [10, 86], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.061] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p061"], + "t": 20, + "s": [10, 96], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.986] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p986_0p167_0"], + "t": 25, + "s": [10, 59], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.962] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.016] }, + "n": ["0p833_1_0p167_0", "0p833_0p962_0p167_-0p016"], + "t": 30, + "s": [10, 96], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.863] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.069] }, + "n": ["0p833_1_0p167_0", "0p833_0p863_0p167_-0p069"], + "t": 35, + "s": [10, 65], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.144] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.212] }, + "n": ["0p833_1_0p167_0", "0p833_1p144_0p167_0p212"], + "t": 40, + "s": [10, 82], + "e": [10, 93] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.867] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.053] }, + "n": ["0p833_1_0p167_0", "0p833_0p867_0p167_0p053"], + "t": 45, + "s": [10, 93], + "e": [10, 63] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.088] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.222] }, + "n": ["0p833_1_0p167_0", "0p833_1p088_0p167_0p222"], + "t": 50, + "s": [10, 63], + "e": [10, 45] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.98] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.043] }, + "n": ["0p833_1_0p167_0", "0p833_0p98_0p167_0p043"], + "t": 55, + "s": [10, 45], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.991] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.027] }, + "n": ["0p833_1_0p167_0", "0p833_0p991_0p167_-0p027"], + "t": 60, + "s": [10, 82], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.01] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p01"], + "t": 65, + "s": [10, 54], + "e": [10, 79] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.033] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_1p033_0p167_0p167"], + "t": 70, + "s": [10, 79], + "e": [10, 104] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.836] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.024] }, + "n": ["0p833_1_0p167_0", "0p833_0p836_0p167_0p024"], + "t": 75, + "s": [10, 104], + "e": [10, 69] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.051] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.169] }, + "n": ["0p833_1_0p167_0", "0p833_1p051_0p167_0p169"], + "t": 80, + "s": [10, 69], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.888] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p888_0p167_0p032"], + "t": 85, + "s": [10, 35], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.228] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.325] }, + "n": ["0p833_1_0p167_0", "0p833_1p228_0p167_0p325"], + "t": 90, + "s": [10, 90], + "e": [10, 109] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.954] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.061] }, + "n": ["0p833_1_0p167_0", "0p833_0p954_0p167_0p061"], + "t": 95, + "s": [10, 109], + "e": [10, 38] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.818] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.102] }, + "n": ["0p833_1_0p167_0", "0p833_0p818_0p167_-0p102"], + "t": 100, + "s": [10, 38], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.836] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.154] }, + "n": ["0p833_1_0p167_0", "0p833_0p836_0p167_0p154"], + "t": 105, + "s": [10, 70], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.08] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.169] }, + "n": ["0p833_1_0p167_0", "0p833_1p08_0p167_0p169"], + "t": 110, + "s": [10, 108], + "e": [10, 145] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p034"], + "t": 115, + "s": [10, 145], + "e": [10, 76] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.349019616842, 0.313725501299, 0.635294139385, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 12, + "ty": 4, + "nm": "形状图层 25", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [806.164, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.958] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p958_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 100] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.822] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.083] }, + "n": ["0p833_1_0p167_0", "0p833_0p822_0p167_-0p083"], + "t": 5, + "s": [10, 100], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.99] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.157] }, + "n": ["0p833_1_0p167_0", "0p833_0p99_0p167_0p157"], + "t": 10, + "s": [10, 70], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.817] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.011] }, + "n": ["0p833_1_0p167_0", "0p833_0p817_0p167_-0p011"], + "t": 15, + "s": [10, 36], + "e": [10, 66] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.042] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.153] }, + "n": ["0p833_1_0p167_0", "0p833_1p042_0p167_0p153"], + "t": 20, + "s": [10, 66], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.898] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.028] }, + "n": ["0p833_1_0p167_0", "0p833_0p898_0p167_0p028"], + "t": 25, + "s": [10, 102], + "e": [10, 48] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.069] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.458] }, + "n": ["0p833_1_0p167_0", "0p833_1p069_0p167_0p458"], + "t": 30, + "s": [10, 48], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.871] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p871_0p167_0p038"], + "t": 35, + "s": [10, 36], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.681] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.236] }, + "n": ["0p833_1_0p167_0", "0p833_0p681_0p167_0p236"], + "t": 40, + "s": [10, 58], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.968] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.113] }, + "n": ["0p833_1_0p167_0", "0p833_0p968_0p167_0p113"], + "t": 45, + "s": [10, 70], + "e": [10, 104] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.742] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.052] }, + "n": ["0p833_1_0p167_0", "0p833_0p742_0p167_-0p052"], + "t": 50, + "s": [10, 104], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.998] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.123] }, + "n": ["0p833_1_0p167_0", "0p833_0p998_0p167_0p123"], + "t": 55, + "s": [10, 83], + "e": [10, 39] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.837] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.002] }, + "n": ["0p833_1_0p167_0", "0p833_0p837_0p167_-0p002"], + "t": 60, + "s": [10, 39], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.059] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.171] }, + "n": ["0p833_1_0p167_0", "0p833_1p059_0p167_0p171"], + "t": 65, + "s": [10, 82], + "e": [10, 123] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.892] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.035] }, + "n": ["0p833_1_0p167_0", "0p833_0p892_0p167_0p035"], + "t": 70, + "s": [10, 123], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.091] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.361] }, + "n": ["0p833_1_0p167_0", "0p833_1p091_0p167_0p361"], + "t": 75, + "s": [10, 53], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.002] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.044] }, + "n": ["0p833_1_0p167_0", "0p833_1p002_0p167_0p044"], + "t": 80, + "s": [10, 32], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.95] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.002] }, + "n": ["0p833_1_0p167_0", "0p833_0p95_0p167_0p002"], + "t": 85, + "s": [10, 76], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.764] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.125] }, + "n": ["0p833_1_0p167_0", "0p833_0p764_0p167_-0p125"], + "t": 90, + "s": [10, 31], + "e": [10, 49] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.053] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.129] }, + "n": ["0p833_1_0p167_0", "0p833_1p053_0p167_0p129"], + "t": 95, + "s": [10, 49], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.983] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p983_0p167_0p032"], + "t": 100, + "s": [10, 82], + "e": [10, 28] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.897] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p897_0p167_-0p021"], + "t": 105, + "s": [10, 28], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.259] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.442] }, + "n": ["0p833_1_0p167_0", "0p833_1p259_0p167_0p442"], + "t": 110, + "s": [10, 71], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.055] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p055"], + "t": 115, + "s": [10, 81], + "e": [10, 43] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.384313762188, 0.278431385756, 0.639215707779, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 13, + "ty": 4, + "nm": "形状图层 24", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [787.293, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, -5.083] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_-5p083_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.872] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.084] }, + "n": ["0p833_1_0p167_0", "0p833_0p872_0p167_0p084"], + "t": 5, + "s": [10, 41], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.989] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.237] }, + "n": ["0p833_1_0p167_0", "0p833_0p989_0p167_0p237"], + "t": 10, + "s": [10, 113], + "e": [10, 152] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.025] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_1p025_0p167_-0p012"], + "t": 15, + "s": [10, 152], + "e": [10, 118] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.955] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.019] }, + "n": ["0p833_1_0p167_0", "0p833_0p955_0p167_0p019"], + "t": 20, + "s": [10, 118], + "e": [10, 162] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.65] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.1] }, + "n": ["0p833_1_0p167_0", "0p833_0p65_0p167_-0p1"], + "t": 25, + "s": [10, 162], + "e": [10, 142] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.854] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.109] }, + "n": ["0p833_1_0p167_0", "0p833_0p854_0p167_0p109"], + "t": 30, + "s": [10, 142], + "e": [10, 78] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.045] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.194] }, + "n": ["0p833_1_0p167_0", "0p833_1p045_0p167_0p194"], + "t": 35, + "s": [10, 78], + "e": [10, 30] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.886] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.029] }, + "n": ["0p833_1_0p167_0", "0p833_0p886_0p167_0p029"], + "t": 40, + "s": [10, 30], + "e": [10, 104] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.312] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p312"], + "t": 45, + "s": [10, 104], + "e": [10, 131] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.008] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.024] }, + "n": ["0p833_1_0p167_0", "0p833_1p008_0p167_-0p024"], + "t": 50, + "s": [10, 131], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.917] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.007] }, + "n": ["0p833_1_0p167_0", "0p833_0p917_0p167_0p007"], + "t": 55, + "s": [10, 110], + "e": [10, 133] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 8] }, + "o": { "x": [0.167, 0.167], "y": [0, 1.917] }, + "n": ["0p833_1_0p167_0", "0p833_8_0p167_1p917"], + "t": 60, + "s": [10, 133], + "e": [10, 133] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.993] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.083] }, + "n": ["0p833_1_0p167_0", "0p833_0p993_0p167_0p083"], + "t": 65, + "s": [10, 133], + "e": [10, 49] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.957] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.008] }, + "n": ["0p833_1_0p167_0", "0p833_0p957_0p167_-0p008"], + "t": 70, + "s": [10, 49], + "e": [10, 126] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.973] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.09] }, + "n": ["0p833_1_0p167_0", "0p833_0p973_0p167_-0p09"], + "t": 75, + "s": [10, 126], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.143] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.04] }, + "n": ["0p833_1_0p167_0", "0p833_1p143_0p167_-0p04"], + "t": 80, + "s": [10, 89], + "e": [10, 114] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.962] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.053] }, + "n": ["0p833_1_0p167_0", "0p833_0p962_0p167_0p053"], + "t": 85, + "s": [10, 114], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.856] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.07] }, + "n": ["0p833_1_0p167_0", "0p833_0p856_0p167_-0p07"], + "t": 90, + "s": [10, 46], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.985] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.198] }, + "n": ["0p833_1_0p167_0", "0p833_0p985_0p167_0p198"], + "t": 95, + "s": [10, 83], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.038] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.019] }, + "n": ["0p833_1_0p167_0", "0p833_1p038_0p167_-0p019"], + "t": 100, + "s": [10, 110], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.109] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.026] }, + "n": ["0p833_1_0p167_0", "0p833_1p109_0p167_0p026"], + "t": 105, + "s": [10, 88], + "e": [10, 120] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.936] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.047] }, + "n": ["0p833_1_0p167_0", "0p833_0p936_0p167_0p047"], + "t": 110, + "s": [10, 120], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.164] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p164"], + "t": 115, + "s": [10, 46], + "e": [10, 69] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.415686309338, 0.247058838606, 0.643137276173, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 14, + "ty": 4, + "nm": "形状图层 23", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [768.421, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.985] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p985_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 117] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.948] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.019] }, + "n": ["0p833_1_0p167_0", "0p833_0p948_0p167_-0p019"], + "t": 5, + "s": [10, 117], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.642] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.135] }, + "n": ["0p833_1_0p167_0", "0p833_0p642_0p167_-0p135"], + "t": 10, + "s": [10, 54], + "e": [10, 78] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.944] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.109] }, + "n": ["0p833_1_0p167_0", "0p833_0p944_0p167_0p109"], + "t": 15, + "s": [10, 78], + "e": [10, 157] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.814] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.17] }, + "n": ["0p833_1_0p167_0", "0p833_0p814_0p167_-0p17"], + "t": 20, + "s": [10, 157], + "e": [10, 131] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.781] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.151] }, + "n": ["0p833_1_0p167_0", "0p833_0p781_0p167_0p151"], + "t": 25, + "s": [10, 131], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.987] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.135] }, + "n": ["0p833_1_0p167_0", "0p833_0p987_0p167_0p135"], + "t": 30, + "s": [10, 99], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.994] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.015] }, + "n": ["0p833_1_0p167_0", "0p833_0p994_0p167_-0p015"], + "t": 35, + "s": [10, 47], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.978] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.006] }, + "n": ["0p833_1_0p167_0", "0p833_0p978_0p167_-0p006"], + "t": 40, + "s": [10, 91], + "e": [10, 50] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.975] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.031] }, + "n": ["0p833_1_0p167_0", "0p833_0p975_0p167_-0p031"], + "t": 45, + "s": [10, 50], + "e": [10, 80] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.952] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.036] }, + "n": ["0p833_1_0p167_0", "0p833_0p952_0p167_-0p036"], + "t": 50, + "s": [10, 80], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.972] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.111] }, + "n": ["0p833_1_0p167_0", "0p833_0p972_0p167_-0p111"], + "t": 55, + "s": [10, 59], + "e": [10, 68] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.542] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.042] }, + "n": ["0p833_1_0p167_0", "0p833_1p542_0p167_-0p042"], + "t": 60, + "s": [10, 68], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.072] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p072"], + "t": 65, + "s": [10, 62], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.021] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.024] }, + "n": ["0p833_1_0p167_0", "0p833_1p021_0p167_-0p024"], + "t": 70, + "s": [10, 107], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.021] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.017] }, + "n": ["0p833_1_0p167_0", "0p833_1p021_0p167_0p017"], + "t": 75, + "s": [10, 72], + "e": [10, 116] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.971] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.017] }, + "n": ["0p833_1_0p167_0", "0p833_0p971_0p167_0p017"], + "t": 80, + "s": [10, 116], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.808] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.044] }, + "n": ["0p833_1_0p167_0", "0p833_0p808_0p167_-0p044"], + "t": 85, + "s": [10, 61], + "e": [10, 97] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.122] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.147] }, + "n": ["0p833_1_0p167_0", "0p833_1p122_0p167_0p147"], + "t": 90, + "s": [10, 97], + "e": [10, 144] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.937] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.05] }, + "n": ["0p833_1_0p167_0", "0p833_0p937_0p167_0p05"], + "t": 95, + "s": [10, 144], + "e": [10, 28] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.932] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.262] }, + "n": ["0p833_1_0p167_0", "0p833_0p932_0p167_-0p262"], + "t": 100, + "s": [10, 28], + "e": [10, 56] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.183] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.383] }, + "n": ["0p833_1_0p167_0", "0p833_1p183_0p167_-0p383"], + "t": 105, + "s": [10, 56], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.769] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.057] }, + "n": ["0p833_1_0p167_0", "0p833_0p769_0p167_0p057"], + "t": 110, + "s": [10, 51], + "e": [10, 67] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.123] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p123"], + "t": 115, + "s": [10, 67], + "e": [10, 91] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.443137288094, 0.21960785985, 0.643137276173, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 15, + "ty": 4, + "nm": "形状图层 22", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [749.55, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 2.733] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_2p733_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.931] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.08] }, + "n": ["0p833_1_0p167_0", "0p833_0p931_0p167_0p08"], + "t": 5, + "s": [10, 35], + "e": [10, 144] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.754] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.395] }, + "n": ["0p833_1_0p167_0", "0p833_0p754_0p167_-0p395"], + "t": 10, + "s": [10, 144], + "e": [10, 125] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.912] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.126] }, + "n": ["0p833_1_0p167_0", "0p833_0p912_0p167_0p126"], + "t": 15, + "s": [10, 125], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.083] }, + "o": { "x": [0.167, 0.167], "y": [0, 1.625] }, + "n": ["0p833_1_0p167_0", "0p833_0p083_0p167_1p625"], + "t": 20, + "s": [10, 88], + "e": [10, 86] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.717] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.092] }, + "n": ["0p833_1_0p167_0", "0p833_0p717_0p167_0p092"], + "t": 25, + "s": [10, 86], + "e": [10, 66] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.988] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.118] }, + "n": ["0p833_1_0p167_0", "0p833_0p988_0p167_0p118"], + "t": 30, + "s": [10, 66], + "e": [10, 18] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.858] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.014] }, + "n": ["0p833_1_0p167_0", "0p833_0p858_0p167_-0p014"], + "t": 35, + "s": [10, 18], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.73] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.201] }, + "n": ["0p833_1_0p167_0", "0p833_0p73_0p167_0p201"], + "t": 40, + "s": [10, 59], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.954] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.121] }, + "n": ["0p833_1_0p167_0", "0p833_0p954_0p167_0p121"], + "t": 45, + "s": [10, 88], + "e": [10, 153] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.83] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.103] }, + "n": ["0p833_1_0p167_0", "0p833_0p83_0p167_-0p103"], + "t": 50, + "s": [10, 153], + "e": [10, 124] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.922] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.164] }, + "n": ["0p833_1_0p167_0", "0p833_0p922_0p167_0p164"], + "t": 55, + "s": [10, 124], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -0.792] }, + "o": { "x": [0.167, 0.167], "y": [0, -1.167] }, + "n": ["0p833_1_0p167_0", "0p833_-0p792_0p167_-1p167"], + "t": 60, + "s": [10, 94], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.994] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.087] }, + "n": ["0p833_1_0p167_0", "0p833_0p994_0p167_0p087"], + "t": 65, + "s": [10, 96], + "e": [10, 137] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.827] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.007] }, + "n": ["0p833_1_0p167_0", "0p833_0p827_0p167_-0p007"], + "t": 70, + "s": [10, 137], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.161] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p161"], + "t": 75, + "s": [10, 99], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.868] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p868_0p167_0"], + "t": 80, + "s": [10, 58], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.969] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.226] }, + "n": ["0p833_1_0p167_0", "0p833_0p969_0p167_0p226"], + "t": 85, + "s": [10, 99], + "e": [10, 123] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.617] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.05] }, + "n": ["0p833_1_0p167_0", "0p833_0p617_0p167_-0p05"], + "t": 90, + "s": [10, 123], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.864] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.106] }, + "n": ["0p833_1_0p167_0", "0p833_0p864_0p167_0p106"], + "t": 95, + "s": [10, 108], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.081] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.216] }, + "n": ["0p833_1_0p167_0", "0p833_1p081_0p167_0p216"], + "t": 100, + "s": [10, 54], + "e": [10, 20] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.975] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.041] }, + "n": ["0p833_1_0p167_0", "0p833_0p975_0p167_0p041"], + "t": 105, + "s": [10, 20], + "e": [10, 87] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.955] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.035] }, + "n": ["0p833_1_0p167_0", "0p833_0p955_0p167_-0p035"], + "t": 110, + "s": [10, 87], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.071] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p071"], + "t": 115, + "s": [10, 40], + "e": [10, 64] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.47058826685, 0.196078449488, 0.647058844566, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 16, + "ty": 4, + "nm": "形状图层 21", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [730.679, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.937] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p937_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 93] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.256] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_-0p256"], + "t": 5, + "s": [10, 93], + "e": [10, 80] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.192] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_1p192_0p167_0"], + "t": 10, + "s": [10, 80], + "e": [10, 93] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.097] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.058] }, + "n": ["0p833_1_0p167_0", "0p833_1p097_0p167_0p058"], + "t": 15, + "s": [10, 93], + "e": [10, 50] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.944] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.045] }, + "n": ["0p833_1_0p167_0", "0p833_0p944_0p167_0p045"], + "t": 20, + "s": [10, 50], + "e": [10, 143] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.767] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.175] }, + "n": ["0p833_1_0p167_0", "0p833_0p767_0p167_-0p175"], + "t": 25, + "s": [10, 143], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.886] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.13] }, + "n": ["0p833_1_0p167_0", "0p833_0p886_0p167_0p13"], + "t": 30, + "s": [10, 113], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.233] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.308] }, + "n": ["0p833_1_0p167_0", "0p833_1p233_0p167_0p308"], + "t": 35, + "s": [10, 59], + "e": [10, 39] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.927] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.061] }, + "n": ["0p833_1_0p167_0", "0p833_0p927_0p167_0p061"], + "t": 40, + "s": [10, 39], + "e": [10, 115] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.713] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.62] }, + "n": ["0p833_1_0p167_0", "0p833_0p713_0p167_-0p62"], + "t": 45, + "s": [10, 115], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.701] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.117] }, + "n": ["0p833_1_0p167_0", "0p833_0p701_0p167_0p117"], + "t": 50, + "s": [10, 106], + "e": [10, 84] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.937] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.115] }, + "n": ["0p833_1_0p167_0", "0p833_0p937_0p167_0p115"], + "t": 55, + "s": [10, 84], + "e": [10, 27] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.649] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.256] }, + "n": ["0p833_1_0p167_0", "0p833_0p649_0p167_-0p256"], + "t": 60, + "s": [10, 27], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.109] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p109"], + "t": 65, + "s": [10, 41], + "e": [10, 86] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.99] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.024] }, + "n": ["0p833_1_0p167_0", "0p833_0p99_0p167_-0p024"], + "t": 70, + "s": [10, 86], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.798] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.011] }, + "n": ["0p833_1_0p167_0", "0p833_0p798_0p167_-0p011"], + "t": 75, + "s": [10, 51], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.019] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.142] }, + "n": ["0p833_1_0p167_0", "0p833_1p019_0p167_0p142"], + "t": 80, + "s": [10, 82], + "e": [10, 126] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.906] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.015] }, + "n": ["0p833_1_0p167_0", "0p833_0p906_0p167_0p015"], + "t": 85, + "s": [10, 126], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.464] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.726] }, + "n": ["0p833_1_0p167_0", "0p833_0p464_0p167_0p726"], + "t": 90, + "s": [10, 72], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.013] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.099] }, + "n": ["0p833_1_0p167_0", "0p833_1p013_0p167_0p099"], + "t": 95, + "s": [10, 65], + "e": [10, 27] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.992] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.011] }, + "n": ["0p833_1_0p167_0", "0p833_0p992_0p167_0p011"], + "t": 100, + "s": [10, 27], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.023] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.008] }, + "n": ["0p833_1_0p167_0", "0p833_1p023_0p167_-0p008"], + "t": 105, + "s": [10, 71], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.873] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.018] }, + "n": ["0p833_1_0p167_0", "0p833_0p873_0p167_0p018"], + "t": 110, + "s": [10, 31], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.273] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p273"], + "t": 115, + "s": [10, 82], + "e": [10, 101] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.498039245605, 0.168627455831, 0.65098041296, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 17, + "ty": 4, + "nm": "形状图层 20", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [711.807, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.844] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p844_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.969] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.178] }, + "n": ["0p833_1_0p167_0", "0p833_0p969_0p167_0p178"], + "t": 5, + "s": [10, 113], + "e": [10, 177] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.869] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.05] }, + "n": ["0p833_1_0p167_0", "0p833_0p869_0p167_-0p05"], + "t": 10, + "s": [10, 177], + "e": [10, 137] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.877] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.228] }, + "n": ["0p833_1_0p167_0", "0p833_0p877_0p167_0p228"], + "t": 15, + "s": [10, 137], + "e": [10, 114] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.106] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.258] }, + "n": ["0p833_1_0p167_0", "0p833_1p106_0p167_0p258"], + "t": 20, + "s": [10, 114], + "e": [10, 103] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.05] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.047] }, + "n": ["0p833_1_0p167_0", "0p833_1p05_0p167_0p047"], + "t": 25, + "s": [10, 103], + "e": [10, 128] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.944] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.031] }, + "n": ["0p833_1_0p167_0", "0p833_0p944_0p167_0p031"], + "t": 30, + "s": [10, 128], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.077] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.173] }, + "n": ["0p833_1_0p167_0", "0p833_1p077_0p167_-0p173"], + "t": 35, + "s": [10, 88], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.88] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.04] }, + "n": ["0p833_1_0p167_0", "0p833_0p88_0p167_0p04"], + "t": 40, + "s": [10, 101], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.712] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.273] }, + "n": ["0p833_1_0p167_0", "0p833_0p712_0p167_0p273"], + "t": 45, + "s": [10, 76], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.117] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p117"], + "t": 50, + "s": [10, 65], + "e": [10, 38] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.91] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p91_0p167_0"], + "t": 55, + "s": [10, 38], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.875] }, + "o": { "x": [0.167, 0.167], "y": [0, 1.208] }, + "n": ["0p833_1_0p167_0", "0p833_1p875_0p167_1p208"], + "t": 60, + "s": [10, 65], + "e": [10, 67] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.054] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.076] }, + "n": ["0p833_1_0p167_0", "0p833_1p054_0p167_0p076"], + "t": 65, + "s": [10, 67], + "e": [10, 44] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.816] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.033] }, + "n": ["0p833_1_0p167_0", "0p833_0p816_0p167_0p033"], + "t": 70, + "s": [10, 44], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.047] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.152] }, + "n": ["0p833_1_0p167_0", "0p833_1p047_0p167_0p152"], + "t": 75, + "s": [10, 82], + "e": [10, 128] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.898] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.03] }, + "n": ["0p833_1_0p167_0", "0p833_0p898_0p167_0p03"], + "t": 80, + "s": [10, 128], + "e": [10, 56] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.37] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.458] }, + "n": ["0p833_1_0p167_0", "0p833_1p37_0p167_0p458"], + "t": 85, + "s": [10, 56], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.961] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.068] }, + "n": ["0p833_1_0p167_0", "0p833_0p961_0p167_0p068"], + "t": 90, + "s": [10, 40], + "e": [10, 127] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.837] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.074] }, + "n": ["0p833_1_0p167_0", "0p833_0p837_0p167_-0p074"], + "t": 95, + "s": [10, 127], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.953] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.17] }, + "n": ["0p833_1_0p167_0", "0p833_0p953_0p167_0p17"], + "t": 100, + "s": [10, 81], + "e": [10, 37] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.596] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.11] }, + "n": ["0p833_1_0p167_0", "0p833_0p596_0p167_-0p11"], + "t": 105, + "s": [10, 37], + "e": [10, 56] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.984] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.105] }, + "n": ["0p833_1_0p167_0", "0p833_0p984_0p167_0p105"], + "t": 110, + "s": [10, 56], + "e": [10, 129] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.016] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p016"], + "t": 115, + "s": [10, 129], + "e": [10, 69] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.525490224361, 0.141176477075, 0.65098041296, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 18, + "ty": 4, + "nm": "形状图层 19", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [692.936, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.378] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p378_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.893] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.096] }, + "n": ["0p833_1_0p167_0", "0p833_0p893_0p167_0p096"], + "t": 5, + "s": [10, 53], + "e": [10, 137] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.212] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.375] }, + "n": ["0p833_1_0p167_0", "0p833_1p212_0p167_0p375"], + "t": 10, + "s": [10, 137], + "e": [10, 161] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.906] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.06] }, + "n": ["0p833_1_0p167_0", "0p833_0p906_0p167_0p06"], + "t": 15, + "s": [10, 161], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.083] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.727] }, + "n": ["0p833_1_0p167_0", "0p833_1p083_0p167_0p727"], + "t": 20, + "s": [10, 76], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.114] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.042] }, + "n": ["0p833_1_0p167_0", "0p833_1p114_0p167_0p042"], + "t": 25, + "s": [10, 65], + "e": [10, 87] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.963] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.048] }, + "n": ["0p833_1_0p167_0", "0p833_0p963_0p167_0p048"], + "t": 30, + "s": [10, 87], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.991] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.066] }, + "n": ["0p833_1_0p167_0", "0p833_0p991_0p167_-0p066"], + "t": 35, + "s": [10, 35], + "e": [10, 64] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.08] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.01] }, + "n": ["0p833_1_0p167_0", "0p833_1p08_0p167_-0p01"], + "t": 40, + "s": [10, 64], + "e": [10, 38] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.882] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.041] }, + "n": ["0p833_1_0p167_0", "0p833_0p882_0p167_0p041"], + "t": 45, + "s": [10, 38], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.948] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.286] }, + "n": ["0p833_1_0p167_0", "0p833_0p948_0p167_0p286"], + "t": 50, + "s": [10, 89], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.031] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.135] }, + "n": ["0p833_1_0p167_0", "0p833_1p031_0p167_-0p135"], + "t": 55, + "s": [10, 110], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.621] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.023] }, + "n": ["0p833_1_0p167_0", "0p833_0p621_0p167_0p023"], + "t": 60, + "s": [10, 102], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.107] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p107"], + "t": 65, + "s": [10, 113], + "e": [10, 152] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.793] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p793_0p167_0"], + "t": 70, + "s": [10, 152], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.872] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.139] }, + "n": ["0p833_1_0p167_0", "0p833_0p872_0p167_0p139"], + "t": 75, + "s": [10, 113], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.056] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.239] }, + "n": ["0p833_1_0p167_0", "0p833_1p056_0p167_0p239"], + "t": 80, + "s": [10, 55], + "e": [10, 24] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.785] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p785_0p167_0p034"], + "t": 85, + "s": [10, 24], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.967] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.136] }, + "n": ["0p833_1_0p167_0", "0p833_0p967_0p167_0p136"], + "t": 90, + "s": [10, 76], + "e": [10, 158] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.936] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.053] }, + "n": ["0p833_1_0p167_0", "0p833_0p936_0p167_-0p053"], + "t": 95, + "s": [10, 158], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.306] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.806] }, + "n": ["0p833_1_0p167_0", "0p833_0p306_0p167_0p806"], + "t": 100, + "s": [10, 108], + "e": [10, 100] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.872] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.066] }, + "n": ["0p833_1_0p167_0", "0p833_0p872_0p167_0p066"], + "t": 110, + "s": [10, 100], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.269] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p269"], + "t": 115, + "s": [10, 58], + "e": [10, 42] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.588235318661, 0.082352943718, 0.658823549747, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 19, + "ty": 4, + "nm": "形状图层 18", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [674.064, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.972] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p972_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 143] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.957] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.043] }, + "n": ["0p833_1_0p167_0", "0p833_0p957_0p167_-0p043"], + "t": 5, + "s": [10, 143], + "e": [10, 75] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.922] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.088] }, + "n": ["0p833_1_0p167_0", "0p833_0p922_0p167_-0p088"], + "t": 10, + "s": [10, 75], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -2.167] }, + "o": { "x": [0.167, 0.167], "y": [0, -1.292] }, + "n": ["0p833_1_0p167_0", "0p833_-2p167_0p167_-1p292"], + "t": 15, + "s": [10, 108], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.93] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.086] }, + "n": ["0p833_1_0p167_0", "0p833_0p93_0p167_0p086"], + "t": 20, + "s": [10, 106], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.778] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.431] }, + "n": ["0p833_1_0p167_0", "0p833_0p778_0p167_-0p431"], + "t": 25, + "s": [10, 32], + "e": [10, 44] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.737] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.133] }, + "n": ["0p833_1_0p167_0", "0p833_0p737_0p167_0p133"], + "t": 30, + "s": [10, 44], + "e": [10, 64] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.847] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.122] }, + "n": ["0p833_1_0p167_0", "0p833_0p847_0p167_0p122"], + "t": 35, + "s": [10, 64], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.977] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.183] }, + "n": ["0p833_1_0p167_0", "0p833_0p977_0p167_0p183"], + "t": 40, + "s": [10, 107], + "e": [10, 143] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.782] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p782_0p167_-0p032"], + "t": 45, + "s": [10, 143], + "e": [10, 117] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.851] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.135] }, + "n": ["0p833_1_0p167_0", "0p833_0p851_0p167_0p135"], + "t": 50, + "s": [10, 117], + "e": [10, 75] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.189] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.189] }, + "n": ["0p833_1_0p167_0", "0p833_1p189_0p167_0p189"], + "t": 55, + "s": [10, 75], + "e": [10, 42] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.96] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.058] }, + "n": ["0p833_1_0p167_0", "0p833_0p96_0p167_0p058"], + "t": 60, + "s": [10, 42], + "e": [10, 150] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.86] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.077] }, + "n": ["0p833_1_0p167_0", "0p833_0p86_0p167_-0p077"], + "t": 65, + "s": [10, 150], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.976] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.206] }, + "n": ["0p833_1_0p167_0", "0p833_0p976_0p167_0p206"], + "t": 70, + "s": [10, 94], + "e": [10, 56] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.954] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p954_0p167_-0p034"], + "t": 75, + "s": [10, 56], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.326] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.104] }, + "n": ["0p833_1_0p167_0", "0p833_1p326_0p167_-0p104"], + "t": 80, + "s": [10, 83], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.949] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.066] }, + "n": ["0p833_1_0p167_0", "0p833_0p949_0p167_0p066"], + "t": 85, + "s": [10, 71], + "e": [10, 130] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.725] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.13] }, + "n": ["0p833_1_0p167_0", "0p833_0p725_0p167_-0p13"], + "t": 90, + "s": [10, 130], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.94] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.119] }, + "n": ["0p833_1_0p167_0", "0p833_0p94_0p167_0p119"], + "t": 95, + "s": [10, 107], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.056] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.211] }, + "n": ["0p833_1_0p167_0", "0p833_1p056_0p167_-0p211"], + "t": 100, + "s": [10, 54], + "e": [10, 69] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.843] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.033] }, + "n": ["0p833_1_0p167_0", "0p833_0p843_0p167_0p033"], + "t": 105, + "s": [10, 69], + "e": [10, 44] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.135] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.178] }, + "n": ["0p833_1_0p167_0", "0p833_1p135_0p167_0p178"], + "t": 110, + "s": [10, 44], + "e": [10, 22] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.044] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p044"], + "t": 115, + "s": [10, 22], + "e": [10, 76] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.61960786581, 0.050980396569, 0.658823549747, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 20, + "ty": 4, + "nm": "形状图层 17", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [655.193, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.818] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p818_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 111] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.965] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.154] }, + "n": ["0p833_1_0p167_0", "0p833_0p965_0p167_0p154"], + "t": 5, + "s": [10, 111], + "e": [10, 195] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.767] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.06] }, + "n": ["0p833_1_0p167_0", "0p833_0p767_0p167_-0p06"], + "t": 10, + "s": [10, 195], + "e": [10, 146] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.961] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.13] }, + "n": ["0p833_1_0p167_0", "0p833_0p961_0p167_0p13"], + "t": 15, + "s": [10, 146], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.989] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.073] }, + "n": ["0p833_1_0p167_0", "0p833_0p989_0p167_-0p073"], + "t": 20, + "s": [10, 58], + "e": [10, 105] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.986] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_0p986_0p167_-0p012"], + "t": 25, + "s": [10, 105], + "e": [10, 64] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.841] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.017] }, + "n": ["0p833_1_0p167_0", "0p833_0p841_0p167_-0p017"], + "t": 30, + "s": [10, 64], + "e": [10, 98] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.024] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.175] }, + "n": ["0p833_1_0p167_0", "0p833_1p024_0p167_0p175"], + "t": 35, + "s": [10, 98], + "e": [10, 129] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.823] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.019] }, + "n": ["0p833_1_0p167_0", "0p833_0p823_0p167_0p019"], + "t": 40, + "s": [10, 129], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.906] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.157] }, + "n": ["0p833_1_0p167_0", "0p833_0p906_0p167_0p157"], + "t": 45, + "s": [10, 89], + "e": [10, 44] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.444] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.708] }, + "n": ["0p833_1_0p167_0", "0p833_1p444_0p167_0p708"], + "t": 50, + "s": [10, 44], + "e": [10, 38] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.888] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.07] }, + "n": ["0p833_1_0p167_0", "0p833_0p888_0p167_0p07"], + "t": 55, + "s": [10, 38], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.686] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.327] }, + "n": ["0p833_1_0p167_0", "0p833_0p686_0p167_0p327"], + "t": 60, + "s": [10, 76], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.007] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.113] }, + "n": ["0p833_1_0p167_0", "0p833_1p007_0p167_0p113"], + "t": 65, + "s": [10, 89], + "e": [10, 125] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.784] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.006] }, + "n": ["0p833_1_0p167_0", "0p833_0p784_0p167_0p006"], + "t": 70, + "s": [10, 125], + "e": [10, 86] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.945] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.136] }, + "n": ["0p833_1_0p167_0", "0p833_0p945_0p167_0p136"], + "t": 75, + "s": [10, 86], + "e": [10, 24] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.718] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.163] }, + "n": ["0p833_1_0p167_0", "0p833_0p718_0p167_-0p163"], + "t": 80, + "s": [10, 24], + "e": [10, 45] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.978] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.118] }, + "n": ["0p833_1_0p167_0", "0p833_0p978_0p167_0p118"], + "t": 85, + "s": [10, 45], + "e": [10, 95] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.984] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.029] }, + "n": ["0p833_1_0p167_0", "0p833_0p984_0p167_-0p029"], + "t": 90, + "s": [10, 95], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.05] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.019] }, + "n": ["0p833_1_0p167_0", "0p833_1p05_0p167_-0p019"], + "t": 95, + "s": [10, 58], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.977] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.031] }, + "n": ["0p833_1_0p167_0", "0p833_0p977_0p167_0p031"], + "t": 100, + "s": [10, 88], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.726] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.031] }, + "n": ["0p833_1_0p167_0", "0p833_0p726_0p167_-0p031"], + "t": 105, + "s": [10, 40], + "e": [10, 75] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.047] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.12] }, + "n": ["0p833_1_0p167_0", "0p833_1p047_0p167_0p12"], + "t": 110, + "s": [10, 75], + "e": [10, 155] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.025] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p025"], + "t": 115, + "s": [10, 155], + "e": [10, 34] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.61960786581, 0.050980396569, 0.658823549747, 0.92156869173], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 21, + "ty": 4, + "nm": "形状图层 16", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [636.321, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.945] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p945_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 146] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.854] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.162] }, + "n": ["0p833_1_0p167_0", "0p833_0p854_0p167_-0p162"], + "t": 5, + "s": [10, 146], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.728] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.194] }, + "n": ["0p833_1_0p167_0", "0p833_0p728_0p167_0p194"], + "t": 10, + "s": [10, 110], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.945] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.12] }, + "n": ["0p833_1_0p167_0", "0p833_0p945_0p167_0p12"], + "t": 15, + "s": [10, 83], + "e": [10, 22] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.667] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.159] }, + "n": ["0p833_1_0p167_0", "0p833_0p667_0p167_-0p159"], + "t": 20, + "s": [10, 22], + "e": [10, 43] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.892] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.111] }, + "n": ["0p833_1_0p167_0", "0p833_0p892_0p167_0p111"], + "t": 25, + "s": [10, 43], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.092] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.36] }, + "n": ["0p833_1_0p167_0", "0p833_1p092_0p167_0p36"], + "t": 30, + "s": [10, 106], + "e": [10, 125] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.854] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.044] }, + "n": ["0p833_1_0p167_0", "0p833_0p854_0p167_0p044"], + "t": 35, + "s": [10, 125], + "e": [10, 85] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.933] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.194] }, + "n": ["0p833_1_0p167_0", "0p833_0p933_0p167_0p194"], + "t": 40, + "s": [10, 85], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.722] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.333] }, + "n": ["0p833_1_0p167_0", "0p833_0p722_0p167_-0p333"], + "t": 45, + "s": [10, 55], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.607] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.119] }, + "n": ["0p833_1_0p167_0", "0p833_0p607_0p167_0p119"], + "t": 50, + "s": [10, 61], + "e": [10, 75] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.929] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.106] }, + "n": ["0p833_1_0p167_0", "0p833_0p929_0p167_0p106"], + "t": 55, + "s": [10, 75], + "e": [10, 127] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.323] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.458] }, + "n": ["0p833_1_0p167_0", "0p833_0p323_0p167_-0p458"], + "t": 60, + "s": [10, 127], + "e": [10, 119] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.865] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.095] }, + "n": ["0p833_1_0p167_0", "0p833_0p865_0p167_0p095"], + "t": 65, + "s": [10, 119], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.981] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.219] }, + "n": ["0p833_1_0p167_0", "0p833_0p981_0p167_0p219"], + "t": 70, + "s": [10, 62], + "e": [10, 27] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.827] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.025] }, + "n": ["0p833_1_0p167_0", "0p833_0p827_0p167_-0p025"], + "t": 75, + "s": [10, 27], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.026] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.161] }, + "n": ["0p833_1_0p167_0", "0p833_1p026_0p167_0p161"], + "t": 80, + "s": [10, 54], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.009] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.02] }, + "n": ["0p833_1_0p167_0", "0p833_1p009_0p167_0p02"], + "t": 85, + "s": [10, 83], + "e": [10, 45] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.841] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.008] }, + "n": ["0p833_1_0p167_0", "0p833_0p841_0p167_0p008"], + "t": 90, + "s": [10, 45], + "e": [10, 87] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.939] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.175] }, + "n": ["0p833_1_0p167_0", "0p833_0p939_0p167_0p175"], + "t": 95, + "s": [10, 87], + "e": [10, 125] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.133] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.233] }, + "n": ["0p833_1_0p167_0", "0p833_1p133_0p167_-0p233"], + "t": 100, + "s": [10, 125], + "e": [10, 115] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.071] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.051] }, + "n": ["0p833_1_0p167_0", "0p833_1p071_0p167_0p051"], + "t": 105, + "s": [10, 115], + "e": [10, 141] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.842] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p842_0p167_0p038"], + "t": 110, + "s": [10, 141], + "e": [10, 93] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.179] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p179"], + "t": 115, + "s": [10, 93], + "e": [10, 59] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.662745118141, 0.043137256056, 0.631372570992, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 22, + "ty": 4, + "nm": "形状图层 15", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [617.45, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.987] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p987_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 182] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.987] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.015] }, + "n": ["0p833_1_0p167_0", "0p833_0p987_0p167_-0p015"], + "t": 5, + "s": [10, 182], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.953] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.015] }, + "n": ["0p833_1_0p167_0", "0p833_0p953_0p167_-0p015"], + "t": 10, + "s": [10, 62], + "e": [10, 164] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.915] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.11] }, + "n": ["0p833_1_0p167_0", "0p833_0p915_0p167_-0p11"], + "t": 15, + "s": [10, 164], + "e": [10, 120] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -2.917] }, + "o": { "x": [0.167, 0.167], "y": [0, 3.75] }, + "n": ["0p833_1_0p167_0", "0p833_-2p917_0p167_3p75"], + "t": 20, + "s": [10, 120], + "e": [10, 119] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.933] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.085] }, + "n": ["0p833_1_0p167_0", "0p833_0p933_0p167_0p085"], + "t": 25, + "s": [10, 119], + "e": [10, 73] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.287] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.343] }, + "n": ["0p833_1_0p167_0", "0p833_1p287_0p167_-0p343"], + "t": 30, + "s": [10, 73], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.058] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.065] }, + "n": ["0p833_1_0p167_0", "0p833_1p058_0p167_0p065"], + "t": 35, + "s": [10, 82], + "e": [10, 42] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.951] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p951_0p167_0p034"], + "t": 40, + "s": [10, 42], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.985] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.119] }, + "n": ["0p833_1_0p167_0", "0p833_0p985_0p167_-0p119"], + "t": 45, + "s": [10, 110], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.699] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.018] }, + "n": ["0p833_1_0p167_0", "0p833_0p699_0p167_-0p018"], + "t": 50, + "s": [10, 82], + "e": [10, 105] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.044] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.115] }, + "n": ["0p833_1_0p167_0", "0p833_1p044_0p167_0p115"], + "t": 55, + "s": [10, 105], + "e": [10, 165] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.871] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.029] }, + "n": ["0p833_1_0p167_0", "0p833_0p871_0p167_0p029"], + "t": 60, + "s": [10, 165], + "e": [10, 73] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.968] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.237] }, + "n": ["0p833_1_0p167_0", "0p833_0p968_0p167_0p237"], + "t": 65, + "s": [10, 73], + "e": [10, 23] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.852] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.051] }, + "n": ["0p833_1_0p167_0", "0p833_0p852_0p167_-0p051"], + "t": 70, + "s": [10, 23], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.701] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.191] }, + "n": ["0p833_1_0p167_0", "0p833_0p701_0p167_0p191"], + "t": 75, + "s": [10, 54], + "e": [10, 78] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.941] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.116] }, + "n": ["0p833_1_0p167_0", "0p833_0p941_0p167_0p116"], + "t": 80, + "s": [10, 78], + "e": [10, 140] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.903] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.204] }, + "n": ["0p833_1_0p167_0", "0p833_0p903_0p167_-0p204"], + "t": 85, + "s": [10, 140], + "e": [10, 122] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.583] }, + "n": ["0p833_1_0p167_0", "0p833_-0p833_0p167_0p583"], + "t": 90, + "s": [10, 122], + "e": [10, 119] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.943] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.087] }, + "n": ["0p833_1_0p167_0", "0p833_0p943_0p167_0p087"], + "t": 95, + "s": [10, 119], + "e": [10, 56] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.792] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.179] }, + "n": ["0p833_1_0p167_0", "0p833_0p792_0p167_-0p179"], + "t": 100, + "s": [10, 56], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.142] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.139] }, + "n": ["0p833_1_0p167_0", "0p833_1p142_0p167_0p139"], + "t": 105, + "s": [10, 76], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.967] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.052] }, + "n": ["0p833_1_0p167_0", "0p833_0p967_0p167_0p052"], + "t": 110, + "s": [10, 106], + "e": [10, 25] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.041] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p041"], + "t": 115, + "s": [10, 25], + "e": [10, 77] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.698039233685, 0.066666670144, 0.572549045086, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 23, + "ty": 4, + "nm": "形状图层 14", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [598.579, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.87] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p87_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.961] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.233] }, + "n": ["0p833_1_0p167_0", "0p833_0p961_0p167_0p233"], + "t": 5, + "s": [10, 94], + "e": [10, 124] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.599] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.073] }, + "n": ["0p833_1_0p167_0", "0p833_0p599_0p167_-0p073"], + "t": 10, + "s": [10, 124], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.949] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.105] }, + "n": ["0p833_1_0p167_0", "0p833_0p949_0p167_0p105"], + "t": 15, + "s": [10, 108], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.028] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.128] }, + "n": ["0p833_1_0p167_0", "0p833_1p028_0p167_-0p128"], + "t": 20, + "s": [10, 47], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.87] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p87_0p167_0p021"], + "t": 25, + "s": [10, 71], + "e": [10, 39] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.287] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.231] }, + "n": ["0p833_1_0p167_0", "0p833_1p287_0p167_0p231"], + "t": 30, + "s": [10, 39], + "e": [10, 21] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.95] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.065] }, + "n": ["0p833_1_0p167_0", "0p833_0p95_0p167_0p065"], + "t": 35, + "s": [10, 21], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.857] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.125] }, + "n": ["0p833_1_0p167_0", "0p833_0p857_0p167_-0p125"], + "t": 40, + "s": [10, 101], + "e": [10, 69] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.895] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.199] }, + "n": ["0p833_1_0p167_0", "0p833_0p895_0p167_0p199"], + "t": 45, + "s": [10, 69], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.736] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.403] }, + "n": ["0p833_1_0p167_0", "0p833_1p736_0p167_0p403"], + "t": 50, + "s": [10, 46], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.982] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.075] }, + "n": ["0p833_1_0p167_0", "0p833_0p982_0p167_0p075"], + "t": 55, + "s": [10, 40], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.071] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.024] }, + "n": ["0p833_1_0p167_0", "0p833_1p071_0p167_-0p024"], + "t": 60, + "s": [10, 99], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.945] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p945_0p167_0p038"], + "t": 65, + "s": [10, 53], + "e": [10, 138] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.911] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.161] }, + "n": ["0p833_1_0p167_0", "0p833_0p911_0p167_-0p161"], + "t": 70, + "s": [10, 138], + "e": [10, 109] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.667] }, + "o": { "x": [0.167, 0.167], "y": [0, 1.292] }, + "n": ["0p833_1_0p167_0", "0p833_0p667_0p167_1p292"], + "t": 75, + "s": [10, 109], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.625] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.111] }, + "n": ["0p833_1_0p167_0", "0p833_0p625_0p167_0p111"], + "t": 80, + "s": [10, 107], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.861] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.107] }, + "n": ["0p833_1_0p167_0", "0p833_0p861_0p167_0p107"], + "t": 85, + "s": [10, 101], + "e": [10, 80] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.101] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.208] }, + "n": ["0p833_1_0p167_0", "0p833_1p101_0p167_0p208"], + "t": 90, + "s": [10, 80], + "e": [10, 66] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.067] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.046] }, + "n": ["0p833_1_0p167_0", "0p833_1p067_0p167_0p046"], + "t": 95, + "s": [10, 66], + "e": [10, 97] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.937] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p937_0p167_0p037"], + "t": 100, + "s": [10, 97], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.708] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.25] }, + "n": ["0p833_1_0p167_0", "0p833_0p708_0p167_-0p25"], + "t": 105, + "s": [10, 41], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.987] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.117] }, + "n": ["0p833_1_0p167_0", "0p833_0p987_0p167_0p117"], + "t": 110, + "s": [10, 55], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p012"], + "t": 115, + "s": [10, 90], + "e": [10, 60] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.717647075653, 0.078431375325, 0.54509806633, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 24, + "ty": 4, + "nm": "形状图层 13", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [579.707, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.877] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p877_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 127] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.967] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.26] }, + "n": ["0p833_1_0p167_0", "0p833_0p967_0p167_0p26"], + "t": 5, + "s": [10, 127], + "e": [10, 168] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.893] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.053] }, + "n": ["0p833_1_0p167_0", "0p833_0p893_0p167_-0p053"], + "t": 10, + "s": [10, 168], + "e": [10, 143] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.952] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.381] }, + "n": ["0p833_1_0p167_0", "0p833_0p952_0p167_0p381"], + "t": 15, + "s": [10, 143], + "e": [10, 136] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 2.333] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.111] }, + "n": ["0p833_1_0p167_0", "0p833_2p333_0p167_-0p111"], + "t": 20, + "s": [10, 136], + "e": [10, 139] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.948] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.078] }, + "n": ["0p833_1_0p167_0", "0p833_0p948_0p167_0p078"], + "t": 25, + "s": [10, 139], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.132] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.14] }, + "n": ["0p833_1_0p167_0", "0p833_1p132_0p167_-0p14"], + "t": 30, + "s": [10, 88], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.867] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.051] }, + "n": ["0p833_1_0p167_0", "0p833_0p867_0p167_0p051"], + "t": 35, + "s": [10, 107], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.029] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.224] }, + "n": ["0p833_1_0p167_0", "0p833_1p029_0p167_0p224"], + "t": 40, + "s": [10, 58], + "e": [10, 29] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.885] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p885_0p167_0p021"], + "t": 45, + "s": [10, 29], + "e": [10, 68] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.167] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.3] }, + "n": ["0p833_1_0p167_0", "0p833_1p167_0p167_0p3"], + "t": 50, + "s": [10, 68], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.089] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.056] }, + "n": ["0p833_1_0p167_0", "0p833_1p089_0p167_0p056"], + "t": 55, + "s": [10, 83], + "e": [10, 38] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.944] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.043] }, + "n": ["0p833_1_0p167_0", "0p833_0p944_0p167_0p043"], + "t": 60, + "s": [10, 38], + "e": [10, 131] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.842] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.175] }, + "n": ["0p833_1_0p167_0", "0p833_0p842_0p167_-0p175"], + "t": 65, + "s": [10, 131], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.812] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.176] }, + "n": ["0p833_1_0p167_0", "0p833_0p812_0p167_0p176"], + "t": 70, + "s": [10, 101], + "e": [10, 74] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.87] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.15] }, + "n": ["0p833_1_0p167_0", "0p833_0p87_0p167_0p15"], + "t": 75, + "s": [10, 74], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.066] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.232] }, + "n": ["0p833_1_0p167_0", "0p833_1p066_0p167_0p232"], + "t": 80, + "s": [10, 40], + "e": [10, 21] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.821] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p821_0p167_0p037"], + "t": 85, + "s": [10, 21], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.795] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.156] }, + "n": ["0p833_1_0p167_0", "0p833_0p795_0p167_0p156"], + "t": 90, + "s": [10, 55], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.978] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.14] }, + "n": ["0p833_1_0p167_0", "0p833_0p978_0p167_0p14"], + "t": 95, + "s": [10, 94], + "e": [10, 151] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.853] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.03] }, + "n": ["0p833_1_0p167_0", "0p833_0p853_0p167_-0p03"], + "t": 100, + "s": [10, 151], + "e": [10, 109] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.836] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.193] }, + "n": ["0p833_1_0p167_0", "0p833_0p836_0p167_0p193"], + "t": 105, + "s": [10, 109], + "e": [10, 77] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.976] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.169] }, + "n": ["0p833_1_0p167_0", "0p833_0p976_0p167_0p169"], + "t": 110, + "s": [10, 77], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.026] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p026"], + "t": 115, + "s": [10, 46], + "e": [10, 69] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.737254917622, 0.09411765635, 0.51372551918, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 25, + "ty": 4, + "nm": "形状图层 12", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [560.836, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.896] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p896_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.867] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.425] }, + "n": ["0p833_1_0p167_0", "0p833_0p867_0p167_0p425"], + "t": 10, + "s": [10, 81], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -1.125] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.333] }, + "n": ["0p833_1_0p167_0", "0p833_-1p125_0p167_0p333"], + "t": 20, + "s": [10, 91], + "e": [10, 93] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.078] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.087] }, + "n": ["0p833_1_0p167_0", "0p833_1p078_0p167_0p087"], + "t": 25, + "s": [10, 93], + "e": [10, 142] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.904] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.04] }, + "n": ["0p833_1_0p167_0", "0p833_0p904_0p167_0p04"], + "t": 30, + "s": [10, 142], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.012] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.649] }, + "n": ["0p833_1_0p167_0", "0p833_1p012_0p167_0p649"], + "t": 35, + "s": [10, 47], + "e": [10, 33] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.677] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.01] }, + "n": ["0p833_1_0p167_0", "0p833_0p677_0p167_0p01"], + "t": 40, + "s": [10, 33], + "e": [10, 49] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.886] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.112] }, + "n": ["0p833_1_0p167_0", "0p833_0p886_0p167_0p112"], + "t": 45, + "s": [10, 49], + "e": [10, 95] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.123] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.309] }, + "n": ["0p833_1_0p167_0", "0p833_1p123_0p167_0p309"], + "t": 50, + "s": [10, 95], + "e": [10, 112] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.931] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.05] }, + "n": ["0p833_1_0p167_0", "0p833_0p931_0p167_0p05"], + "t": 55, + "s": [10, 112], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.155] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.417] }, + "n": ["0p833_1_0p167_0", "0p833_1p155_0p167_-0p417"], + "t": 60, + "s": [10, 70], + "e": [10, 77] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.804] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.054] }, + "n": ["0p833_1_0p167_0", "0p833_0p804_0p167_0p054"], + "t": 65, + "s": [10, 77], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.046] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.145] }, + "n": ["0p833_1_0p167_0", "0p833_1p046_0p167_0p145"], + "t": 70, + "s": [10, 57], + "e": [10, 30] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.03] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p03"], + "t": 75, + "s": [10, 30], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.069] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.037] }, + "n": ["0p833_1_0p167_0", "0p833_1p069_0p167_-0p037"], + "t": 80, + "s": [10, 72], + "e": [10, 43] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.846] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p846_0p167_0p038"], + "t": 85, + "s": [10, 43], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.065] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.181] }, + "n": ["0p833_1_0p167_0", "0p833_1p065_0p167_0p181"], + "t": 90, + "s": [10, 96], + "e": [10, 141] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.878] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.036] }, + "n": ["0p833_1_0p167_0", "0p833_0p878_0p167_0p036"], + "t": 95, + "s": [10, 141], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.991] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.264] }, + "n": ["0p833_1_0p167_0", "0p833_0p991_0p167_0p264"], + "t": 100, + "s": [10, 61], + "e": [10, 24] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.773] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.01] }, + "n": ["0p833_1_0p167_0", "0p833_0p773_0p167_-0p01"], + "t": 105, + "s": [10, 24], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.998] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.132] }, + "n": ["0p833_1_0p167_0", "0p833_0p998_0p167_0p132"], + "t": 110, + "s": [10, 57], + "e": [10, 114] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.001] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p001"], + "t": 115, + "s": [10, 114], + "e": [10, 58] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.752941250801, 0.105882361531, 0.486274540424, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 26, + "ty": 4, + "nm": "形状图层 11", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [541.964, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.945] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p945_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 154] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.774] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.16] }, + "n": ["0p833_1_0p167_0", "0p833_0p774_0p167_-0p16"], + "t": 5, + "s": [10, 154], + "e": [10, 115] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.933] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.132] }, + "n": ["0p833_1_0p167_0", "0p833_0p933_0p167_0p132"], + "t": 10, + "s": [10, 115], + "e": [10, 48] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.045] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.346] }, + "n": ["0p833_1_0p167_0", "0p833_1p045_0p167_-0p346"], + "t": 15, + "s": [10, 48], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.192] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.029] }, + "n": ["0p833_1_0p167_0", "0p833_1p192_0p167_0p029"], + "t": 20, + "s": [10, 61], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.962] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.058] }, + "n": ["0p833_1_0p167_0", "0p833_0p962_0p167_0p058"], + "t": 25, + "s": [10, 41], + "e": [10, 107] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.03] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.069] }, + "n": ["0p833_1_0p167_0", "0p833_1p03_0p167_-0p069"], + "t": 30, + "s": [10, 107], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.986] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.022] }, + "n": ["0p833_1_0p167_0", "0p833_0p986_0p167_0p022"], + "t": 35, + "s": [10, 71], + "e": [10, 120] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.839] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.016] }, + "n": ["0p833_1_0p167_0", "0p833_0p839_0p167_-0p016"], + "t": 40, + "s": [10, 120], + "e": [10, 79] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.971] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.173] }, + "n": ["0p833_1_0p167_0", "0p833_0p971_0p167_0p173"], + "t": 45, + "s": [10, 79], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.967] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.043] }, + "n": ["0p833_1_0p167_0", "0p833_0p967_0p167_-0p043"], + "t": 50, + "s": [10, 41], + "e": [10, 66] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.87] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.056] }, + "n": ["0p833_1_0p167_0", "0p833_0p87_0p167_-0p056"], + "t": 55, + "s": [10, 66], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.228] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.194] }, + "n": ["0p833_1_0p167_0", "0p833_1p228_0p167_0p194"], + "t": 60, + "s": [10, 51], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.858] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p858_0p167_0p037"], + "t": 70, + "s": [10, 31], + "e": [10, 92] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.977] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.202] }, + "n": ["0p833_1_0p167_0", "0p833_0p977_0p167_0p202"], + "t": 75, + "s": [10, 92], + "e": [10, 135] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.978] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p978_0p167_-0p032"], + "t": 80, + "s": [10, 135], + "e": [10, 104] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.185] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.029] }, + "n": ["0p833_1_0p167_0", "0p833_1p185_0p167_-0p029"], + "t": 85, + "s": [10, 104], + "e": [10, 127] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.89] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.057] }, + "n": ["0p833_1_0p167_0", "0p833_0p89_0p167_0p057"], + "t": 90, + "s": [10, 127], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.073] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.34] }, + "n": ["0p833_1_0p167_0", "0p833_1p073_0p167_0p34"], + "t": 95, + "s": [10, 53], + "e": [10, 29] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.039] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p039"], + "t": 100, + "s": [10, 29], + "e": [10, 74] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p167"], + "t": 105, + "s": [10, 74], + "e": [10, 119] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.875] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p875_0p167_-0p038"], + "t": 110, + "s": [10, 119], + "e": [10, 88] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.283] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p283"], + "t": 115, + "s": [10, 88], + "e": [10, 77] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.792156934738, 0.129411771894, 0.427451014519, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 27, + "ty": 4, + "nm": "形状图层 10", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [523.093, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.98] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p98_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 86] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.052] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.026] }, + "n": ["0p833_1_0p167_0", "0p833_1p052_0p167_-0p026"], + "t": 5, + "s": [10, 86], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.904] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p904_0p167_0p032"], + "t": 10, + "s": [10, 51], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.954] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.611] }, + "n": ["0p833_1_0p167_0", "0p833_0p954_0p167_0p611"], + "t": 15, + "s": [10, 108], + "e": [10, 117] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -0.25] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.104] }, + "n": ["0p833_1_0p167_0", "0p833_-0p25_0p167_-0p104"], + "t": 20, + "s": [10, 117], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.982] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.089] }, + "n": ["0p833_1_0p167_0", "0p833_0p982_0p167_0p089"], + "t": 25, + "s": [10, 113], + "e": [10, 57] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.975] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.023] }, + "n": ["0p833_1_0p167_0", "0p833_0p975_0p167_-0p023"], + "t": 30, + "s": [10, 57], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.815] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.035] }, + "n": ["0p833_1_0p167_0", "0p833_0p815_0p167_-0p035"], + "t": 35, + "s": [10, 101], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.996] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.151] }, + "n": ["0p833_1_0p167_0", "0p833_0p996_0p167_0p151"], + "t": 40, + "s": [10, 70], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.838] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.005] }, + "n": ["0p833_1_0p167_0", "0p833_0p838_0p167_-0p005"], + "t": 45, + "s": [10, 32], + "e": [10, 68] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.885] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.172] }, + "n": ["0p833_1_0p167_0", "0p833_0p885_0p167_0p172"], + "t": 50, + "s": [10, 68], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.071] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.301] }, + "n": ["0p833_1_0p167_0", "0p833_1p071_0p167_0p301"], + "t": 55, + "s": [10, 102], + "e": [10, 115] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.944] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p944_0p167_0p038"], + "t": 60, + "s": [10, 115], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.406] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p406_0p167_-0p167"], + "t": 65, + "s": [10, 91], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.009] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.097] }, + "n": ["0p833_1_0p167_0", "0p833_1p009_0p167_0p097"], + "t": 70, + "s": [10, 99], + "e": [10, 148] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.866] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.008] }, + "n": ["0p833_1_0p167_0", "0p833_0p866_0p167_0p008"], + "t": 75, + "s": [10, 148], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.944] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.22] }, + "n": ["0p833_1_0p167_0", "0p833_0p944_0p167_0p22"], + "t": 80, + "s": [10, 94], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.659] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p659_0p167_-0p167"], + "t": 85, + "s": [10, 61], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.973] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.11] }, + "n": ["0p833_1_0p167_0", "0p833_0p973_0p167_0p11"], + "t": 90, + "s": [10, 72], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.775] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.04] }, + "n": ["0p833_1_0p167_0", "0p833_0p775_0p167_-0p04"], + "t": 95, + "s": [10, 106], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.996] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.132] }, + "n": ["0p833_1_0p167_0", "0p833_0p996_0p167_0p132"], + "t": 100, + "s": [10, 83], + "e": [10, 44] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.036] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.005] }, + "n": ["0p833_1_0p167_0", "0p833_1p036_0p167_-0p005"], + "t": 105, + "s": [10, 44], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.965] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.025] }, + "n": ["0p833_1_0p167_0", "0p833_0p965_0p167_0p025"], + "t": 110, + "s": [10, 81], + "e": [10, 28] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.045] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p045"], + "t": 115, + "s": [10, 28], + "e": [10, 61] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.811764776707, 0.145098045468, 0.392156898975, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 28, + "ty": 4, + "nm": "形状图层 9", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [504.221, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.853] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p853_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 112] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.961] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.192] }, + "n": ["0p833_1_0p167_0", "0p833_0p961_0p167_0p192"], + "t": 5, + "s": [10, 112], + "e": [10, 167] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.089] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.075] }, + "n": ["0p833_1_0p167_0", "0p833_1p089_0p167_-0p075"], + "t": 10, + "s": [10, 167], + "e": [10, 138] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.099] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.043] }, + "n": ["0p833_1_0p167_0", "0p833_1p099_0p167_0p043"], + "t": 15, + "s": [10, 138], + "e": [10, 198] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.895] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.045] }, + "n": ["0p833_1_0p167_0", "0p833_0p895_0p167_0p045"], + "t": 20, + "s": [10, 198], + "e": [10, 67] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.985] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.404] }, + "n": ["0p833_1_0p167_0", "0p833_0p985_0p167_0p404"], + "t": 25, + "s": [10, 67], + "e": [10, 33] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.988] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.018] }, + "n": ["0p833_1_0p167_0", "0p833_0p988_0p167_-0p018"], + "t": 30, + "s": [10, 33], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.972] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.014] }, + "n": ["0p833_1_0p167_0", "0p833_0p972_0p167_-0p014"], + "t": 35, + "s": [10, 61], + "e": [10, 37] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.661] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.042] }, + "n": ["0p833_1_0p167_0", "0p833_0p661_0p167_-0p042"], + "t": 40, + "s": [10, 37], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.009] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.111] }, + "n": ["0p833_1_0p167_0", "0p833_1p009_0p167_0p111"], + "t": 45, + "s": [10, 53], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.977] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.008] }, + "n": ["0p833_1_0p167_0", "0p833_0p977_0p167_0p008"], + "t": 50, + "s": [10, 102], + "e": [10, 48] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.825] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p825_0p167_-0p032"], + "t": 55, + "s": [10, 48], + "e": [10, 87] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.874] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.159] }, + "n": ["0p833_1_0p167_0", "0p833_0p874_0p167_0p159"], + "t": 60, + "s": [10, 87], + "e": [10, 130] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.273] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.246] }, + "n": ["0p833_1_0p167_0", "0p833_1p273_0p167_0p246"], + "t": 65, + "s": [10, 130], + "e": [10, 152] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.901] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.064] }, + "n": ["0p833_1_0p167_0", "0p833_0p901_0p167_0p064"], + "t": 70, + "s": [10, 152], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.829] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.519] }, + "n": ["0p833_1_0p167_0", "0p833_0p829_0p167_0p519"], + "t": 75, + "s": [10, 58], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.241] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.162] }, + "n": ["0p833_1_0p167_0", "0p833_1p241_0p167_0p162"], + "t": 80, + "s": [10, 40], + "e": [10, 21] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.941] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.062] }, + "n": ["0p833_1_0p167_0", "0p833_0p941_0p167_0p062"], + "t": 85, + "s": [10, 21], + "e": [10, 95] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.807] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.197] }, + "n": ["0p833_1_0p167_0", "0p833_0p807_0p167_-0p197"], + "t": 90, + "s": [10, 95], + "e": [10, 73] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.147] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p147"], + "t": 95, + "s": [10, 73], + "e": [10, 44] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.029] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_1p029_0p167_0p167"], + "t": 100, + "s": [10, 44], + "e": [10, 15] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.85] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p85_0p167_0p021"], + "t": 105, + "s": [10, 15], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.188] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p188"], + "t": 110, + "s": [10, 54], + "e": [10, 85] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0"], + "t": 115, + "s": [10, 85], + "e": [10, 54] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.831372618675, 0.160784319043, 0.360784322023, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 29, + "ty": 4, + "nm": "形状图层 8", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [485.35, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.92] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p92_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 135] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0] }, + "o": { "x": [0.167, 0.167], "y": [0, -1.896] }, + "n": ["0p833_1_0p167_0", "0p833_0_0p167_-1p896"], + "t": 5, + "s": [10, 135], + "e": [10, 131] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.047] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.091] }, + "n": ["0p833_1_0p167_0", "0p833_1p047_0p167_0p091"], + "t": 10, + "s": [10, 131], + "e": [10, 87] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.068] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.03] }, + "n": ["0p833_1_0p167_0", "0p833_1p068_0p167_0p03"], + "t": 15, + "s": [10, 87], + "e": [10, 156] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.943] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p943_0p167_0p037"], + "t": 20, + "s": [10, 156], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.793] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.184] }, + "n": ["0p833_1_0p167_0", "0p833_0p793_0p167_-0p184"], + "t": 25, + "s": [10, 31], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.973] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.139] }, + "n": ["0p833_1_0p167_0", "0p833_0p973_0p167_0p139"], + "t": 30, + "s": [10, 70], + "e": [10, 128] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.957] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.041] }, + "n": ["0p833_1_0p167_0", "0p833_0p957_0p167_-0p041"], + "t": 35, + "s": [10, 128], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.171] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.088] }, + "n": ["0p833_1_0p167_0", "0p833_1p171_0p167_-0p088"], + "t": 40, + "s": [10, 89], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.964] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.056] }, + "n": ["0p833_1_0p167_0", "0p833_0p964_0p167_0p056"], + "t": 45, + "s": [10, 108], + "e": [10, 50] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.992] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.063] }, + "n": ["0p833_1_0p167_0", "0p833_0p992_0p167_-0p063"], + "t": 50, + "s": [10, 50], + "e": [10, 83] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.989] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.008] }, + "n": ["0p833_1_0p167_0", "0p833_0p989_0p167_-0p008"], + "t": 55, + "s": [10, 83], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.978] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.013] }, + "n": ["0p833_1_0p167_0", "0p833_0p978_0p167_-0p013"], + "t": 60, + "s": [10, 53], + "e": [10, 79] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.14] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.031] }, + "n": ["0p833_1_0p167_0", "0p833_1p14_0p167_-0p031"], + "t": 65, + "s": [10, 79], + "e": [10, 60] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.984] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.052] }, + "n": ["0p833_1_0p167_0", "0p833_0p984_0p167_0p052"], + "t": 70, + "s": [10, 60], + "e": [10, 111] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.955] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.02] }, + "n": ["0p833_1_0p167_0", "0p833_0p955_0p167_-0p02"], + "t": 75, + "s": [10, 111], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.075] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.096] }, + "n": ["0p833_1_0p167_0", "0p833_1p075_0p167_-0p096"], + "t": 80, + "s": [10, 70], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.877] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.039] }, + "n": ["0p833_1_0p167_0", "0p833_0p877_0p167_0p039"], + "t": 85, + "s": [10, 89], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.838] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.26] }, + "n": ["0p833_1_0p167_0", "0p833_0p838_0p167_0p26"], + "t": 90, + "s": [10, 53], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.266] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.172] }, + "n": ["0p833_1_0p167_0", "0p833_1p266_0p167_0p172"], + "t": 95, + "s": [10, 36], + "e": [10, 20] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.894] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.063] }, + "n": ["0p833_1_0p167_0", "0p833_0p894_0p167_0p063"], + "t": 100, + "s": [10, 20], + "e": [10, 87] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.157] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.394] }, + "n": ["0p833_1_0p167_0", "0p833_1p157_0p167_0p394"], + "t": 105, + "s": [10, 87], + "e": [10, 105] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.879] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.054] }, + "n": ["0p833_1_0p167_0", "0p833_0p879_0p167_0p054"], + "t": 110, + "s": [10, 105], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.315] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p315"], + "t": 115, + "s": [10, 53], + "e": [10, 37] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.850980460644, 0.172549024224, 0.329411774874, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 30, + "ty": 4, + "nm": "形状图层 7", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [466.479, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.97] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p97_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 163] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.952] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.048] }, + "n": ["0p833_1_0p167_0", "0p833_0p952_0p167_-0p048"], + "t": 5, + "s": [10, 163], + "e": [10, 85] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.977] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.114] }, + "n": ["0p833_1_0p167_0", "0p833_0p977_0p167_-0p114"], + "t": 10, + "s": [10, 85], + "e": [10, 118] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.115] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.031] }, + "n": ["0p833_1_0p167_0", "0p833_1p115_0p167_-0p031"], + "t": 15, + "s": [10, 118], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.991] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.048] }, + "n": ["0p833_1_0p167_0", "0p833_0p991_0p167_0p048"], + "t": 20, + "s": [10, 94], + "e": [10, 151] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.881] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.01] }, + "n": ["0p833_1_0p167_0", "0p833_0p881_0p167_-0p01"], + "t": 25, + "s": [10, 151], + "e": [10, 100] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.045] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.277] }, + "n": ["0p833_1_0p167_0", "0p833_1p045_0p167_0p277"], + "t": 30, + "s": [10, 100], + "e": [10, 78] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.85] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.029] }, + "n": ["0p833_1_0p167_0", "0p833_0p85_0p167_0p029"], + "t": 35, + "s": [10, 78], + "e": [10, 112] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.108] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.188] }, + "n": ["0p833_1_0p167_0", "0p833_1p108_0p167_0p188"], + "t": 40, + "s": [10, 112], + "e": [10, 139] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.047] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p047"], + "t": 45, + "s": [10, 139], + "e": [10, 77] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.899] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p899_0p167_-0p037"], + "t": 50, + "s": [10, 77], + "e": [10, 120] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.111] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.481] }, + "n": ["0p833_1_0p167_0", "0p833_1p111_0p167_0p481"], + "t": 55, + "s": [10, 120], + "e": [10, 129] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.968] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.048] }, + "n": ["0p833_1_0p167_0", "0p833_0p968_0p167_0p048"], + "t": 60, + "s": [10, 129], + "e": [10, 108] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.237] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.051] }, + "n": ["0p833_1_0p167_0", "0p833_1p237_0p167_-0p051"], + "t": 65, + "s": [10, 108], + "e": [10, 121] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.988] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.062] }, + "n": ["0p833_1_0p167_0", "0p833_0p988_0p167_0p062"], + "t": 70, + "s": [10, 121], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.031] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.014] }, + "n": ["0p833_1_0p167_0", "0p833_1p031_0p167_-0p014"], + "t": 75, + "s": [10, 71], + "e": [10, 114] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.874] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.023] }, + "n": ["0p833_1_0p167_0", "0p833_0p874_0p167_0p023"], + "t": 80, + "s": [10, 114], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.15] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.247] }, + "n": ["0p833_1_0p167_0", "0p833_1p15_0p167_0p247"], + "t": 85, + "s": [10, 55], + "e": [10, 25] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.96] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.054] }, + "n": ["0p833_1_0p167_0", "0p833_0p96_0p167_0p054"], + "t": 90, + "s": [10, 25], + "e": [10, 109] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.854] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.076] }, + "n": ["0p833_1_0p167_0", "0p833_0p854_0p167_-0p076"], + "t": 95, + "s": [10, 109], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.043] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.194] }, + "n": ["0p833_1_0p167_0", "0p833_1p043_0p167_0p194"], + "t": 100, + "s": [10, 65], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.872] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.028] }, + "n": ["0p833_1_0p167_0", "0p833_0p872_0p167_0p028"], + "t": 105, + "s": [10, 32], + "e": [10, 82] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.069] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.238] }, + "n": ["0p833_1_0p167_0", "0p833_1p069_0p167_0p238"], + "t": 110, + "s": [10, 82], + "e": [10, 109] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p032"], + "t": 115, + "s": [10, 109], + "e": [10, 62] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.866666734219, 0.184313729405, 0.301960796118, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 31, + "ty": 4, + "nm": "形状图层 6", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [447.607, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.999] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p999_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 98] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.953] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.001] }, + "n": ["0p833_1_0p167_0", "0p833_0p953_0p167_-0p001"], + "t": 5, + "s": [10, 98], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.74] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.107] }, + "n": ["0p833_1_0p167_0", "0p833_0p74_0p167_-0p107"], + "t": 10, + "s": [10, 41], + "e": [10, 66] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.953] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.123] }, + "n": ["0p833_1_0p167_0", "0p833_0p953_0p167_0p123"], + "t": 15, + "s": [10, 66], + "e": [10, 119] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.736] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.109] }, + "n": ["0p833_1_0p167_0", "0p833_0p736_0p167_-0p109"], + "t": 20, + "s": [10, 119], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.905] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.122] }, + "n": ["0p833_1_0p167_0", "0p833_0p905_0p167_0p122"], + "t": 25, + "s": [10, 96], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.167] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.679] }, + "n": ["0p833_1_0p167_0", "0p833_1p167_0p167_0p679"], + "t": 30, + "s": [10, 46], + "e": [10, 39] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.861] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.056] }, + "n": ["0p833_1_0p167_0", "0p833_0p861_0p167_0p056"], + "t": 35, + "s": [10, 39], + "e": [10, 60] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.161] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.208] }, + "n": ["0p833_1_0p167_0", "0p833_1p161_0p167_0p208"], + "t": 40, + "s": [10, 60], + "e": [10, 74] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.959] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.055] }, + "n": ["0p833_1_0p167_0", "0p833_0p959_0p167_0p055"], + "t": 45, + "s": [10, 74], + "e": [10, 33] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.821] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.079] }, + "n": ["0p833_1_0p167_0", "0p833_0p821_0p167_-0p079"], + "t": 50, + "s": [10, 33], + "e": [10, 54] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.01] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.156] }, + "n": ["0p833_1_0p167_0", "0p833_1p01_0p167_0p156"], + "t": 55, + "s": [10, 54], + "e": [10, 78] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.034] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.009] }, + "n": ["0p833_1_0p167_0", "0p833_1p034_0p167_0p009"], + "t": 60, + "s": [10, 78], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.039] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.024] }, + "n": ["0p833_1_0p167_0", "0p833_1p039_0p167_0p024"], + "t": 65, + "s": [10, 51], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.027] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p027"], + "t": 70, + "s": [10, 89], + "e": [10, 33] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.891] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p891_0p167_0"], + "t": 75, + "s": [10, 33], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.083] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.358] }, + "n": ["0p833_1_0p167_0", "0p833_1p083_0p167_0p358"], + "t": 80, + "s": [10, 89], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.882] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.042] }, + "n": ["0p833_1_0p167_0", "0p833_0p882_0p167_0p042"], + "t": 85, + "s": [10, 106], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.792] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.286] }, + "n": ["0p833_1_0p167_0", "0p833_0p792_0p167_0p286"], + "t": 90, + "s": [10, 72], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.004] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.139] }, + "n": ["0p833_1_0p167_0", "0p833_1p004_0p167_0p139"], + "t": 95, + "s": [10, 58], + "e": [10, 37] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.943] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.004] }, + "n": ["0p833_1_0p167_0", "0p833_0p943_0p167_0p004"], + "t": 100, + "s": [10, 37], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.143] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.179] }, + "n": ["0p833_1_0p167_0", "0p833_1p143_0p167_-0p179"], + "t": 105, + "s": [10, 59], + "e": [10, 52] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.078] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.053] }, + "n": ["0p833_1_0p167_0", "0p833_1p078_0p167_0p053"], + "t": 110, + "s": [10, 52], + "e": [10, 71] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.034] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p034"], + "t": 115, + "s": [10, 71], + "e": [10, 36] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.905882418156, 0.211764723063, 0.243137270212, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 32, + "ty": 4, + "nm": "形状图层 5", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [428.736, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.934] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p934_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 151] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.768] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.319] }, + "n": ["0p833_1_0p167_0", "0p833_0p768_0p167_-0p319"], + "t": 5, + "s": [10, 151], + "e": [10, 128] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.87] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.13] }, + "n": ["0p833_1_0p167_0", "0p833_0p87_0p167_0p13"], + "t": 10, + "s": [10, 128], + "e": [10, 87] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.859] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.232] }, + "n": ["0p833_1_0p167_0", "0p833_0p859_0p167_0p232"], + "t": 15, + "s": [10, 87], + "e": [10, 64] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.068] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.203] }, + "n": ["0p833_1_0p167_0", "0p833_1p068_0p167_0p203"], + "t": 20, + "s": [10, 64], + "e": [10, 48] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.784] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.037] }, + "n": ["0p833_1_0p167_0", "0p833_0p784_0p167_0p037"], + "t": 25, + "s": [10, 48], + "e": [10, 77] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.886] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.136] }, + "n": ["0p833_1_0p167_0", "0p833_0p886_0p167_0p136"], + "t": 30, + "s": [10, 77], + "e": [10, 123] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.049] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.309] }, + "n": ["0p833_1_0p167_0", "0p833_1p049_0p167_0p309"], + "t": 35, + "s": [10, 123], + "e": [10, 140] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.861] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.031] }, + "n": ["0p833_1_0p167_0", "0p833_0p861_0p167_0p031"], + "t": 40, + "s": [10, 140], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.866] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.208] }, + "n": ["0p833_1_0p167_0", "0p833_0p866_0p167_0p208"], + "t": 45, + "s": [10, 113], + "e": [10, 95] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.068] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.22] }, + "n": ["0p833_1_0p167_0", "0p833_1p068_0p167_0p22"], + "t": 50, + "s": [10, 95], + "e": [10, 84] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.246] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.038] }, + "n": ["0p833_1_0p167_0", "0p833_1p246_0p167_0p038"], + "t": 55, + "s": [10, 84], + "e": [10, 104] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.931] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.062] }, + "n": ["0p833_1_0p167_0", "0p833_0p931_0p167_0p062"], + "t": 60, + "s": [10, 104], + "e": [10, 25] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.607] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.387] }, + "n": ["0p833_1_0p167_0", "0p833_0p607_0p167_-0p387"], + "t": 65, + "s": [10, 25], + "e": [10, 39] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.992] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.106] }, + "n": ["0p833_1_0p167_0", "0p833_0p992_0p167_0p106"], + "t": 70, + "s": [10, 39], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.968] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.009] }, + "n": ["0p833_1_0p167_0", "0p833_0p968_0p167_-0p009"], + "t": 75, + "s": [10, 91], + "e": [10, 44] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.836] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.052] }, + "n": ["0p833_1_0p167_0", "0p833_0p836_0p167_-0p052"], + "t": 80, + "s": [10, 44], + "e": [10, 73] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.988] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.17] }, + "n": ["0p833_1_0p167_0", "0p833_0p988_0p167_0p17"], + "t": 85, + "s": [10, 73], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.958] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.014] }, + "n": ["0p833_1_0p167_0", "0p833_0p958_0p167_-0p014"], + "t": 90, + "s": [10, 101], + "e": [10, 77] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.646] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.083] }, + "n": ["0p833_1_0p167_0", "0p833_0p646_0p167_-0p083"], + "t": 95, + "s": [10, 77], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.989] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.109] }, + "n": ["0p833_1_0p167_0", "0p833_0p989_0p167_0p109"], + "t": 100, + "s": [10, 89], + "e": [10, 128] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.988] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_0p988_0p167_-0p012"], + "t": 105, + "s": [10, 128], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.045] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.014] }, + "n": ["0p833_1_0p167_0", "0p833_1p045_0p167_-0p014"], + "t": 110, + "s": [10, 94], + "e": [10, 123] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.024] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p024"], + "t": 115, + "s": [10, 123], + "e": [10, 80] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.925490260124, 0.223529428244, 0.211764723063, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 33, + "ty": 4, + "nm": "形状图层 4", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [409.864, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.99] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p99_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 184] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.909] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_0p909_0p167_-0p012"], + "t": 5, + "s": [10, 184], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.523] }, + "o": { "x": [0.167, 0.167], "y": [0, 1.038] }, + "n": ["0p833_1_0p167_0", "0p833_1p523_0p167_1p038"], + "t": 10, + "s": [10, 58], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.97] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.072] }, + "n": ["0p833_1_0p167_0", "0p833_0p97_0p167_0p072"], + "t": 15, + "s": [10, 47], + "e": [10, 127] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.954] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.047] }, + "n": ["0p833_1_0p167_0", "0p833_0p954_0p167_-0p047"], + "t": 20, + "s": [10, 127], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.982] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.101] }, + "n": ["0p833_1_0p167_0", "0p833_0p982_0p167_-0p101"], + "t": 25, + "s": [10, 76], + "e": [10, 99] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.954] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.023] }, + "n": ["0p833_1_0p167_0", "0p833_0p954_0p167_-0p023"], + "t": 30, + "s": [10, 99], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.479] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.104] }, + "n": ["0p833_1_0p167_0", "0p833_1p479_0p167_-0p104"], + "t": 35, + "s": [10, 81], + "e": [10, 89] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.94] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.071] }, + "n": ["0p833_1_0p167_0", "0p833_0p94_0p167_0p071"], + "t": 40, + "s": [10, 89], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.961] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.217] }, + "n": ["0p833_1_0p167_0", "0p833_0p961_0p167_-0p217"], + "t": 45, + "s": [10, 35], + "e": [10, 50] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.99] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.073] }, + "n": ["0p833_1_0p167_0", "0p833_0p99_0p167_-0p073"], + "t": 50, + "s": [10, 50], + "e": [10, 42] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.667] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.012] }, + "n": ["0p833_1_0p167_0", "0p833_0p667_0p167_-0p012"], + "t": 55, + "s": [10, 42], + "e": [10, 49] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.94] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.111] }, + "n": ["0p833_1_0p167_0", "0p833_0p94_0p167_0p111"], + "t": 60, + "s": [10, 49], + "e": [10, 70] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.708] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.208] }, + "n": ["0p833_1_0p167_0", "0p833_0p708_0p167_-0p208"], + "t": 65, + "s": [10, 70], + "e": [10, 64] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.044] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.117] }, + "n": ["0p833_1_0p167_0", "0p833_1p044_0p167_0p117"], + "t": 70, + "s": [10, 64], + "e": [10, 49] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.022] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.029] }, + "n": ["0p833_1_0p167_0", "0p833_1p022_0p167_0p029"], + "t": 75, + "s": [10, 49], + "e": [10, 72] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.96] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.017] }, + "n": ["0p833_1_0p167_0", "0p833_0p96_0p167_0p017"], + "t": 80, + "s": [10, 72], + "e": [10, 43] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.672] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.078] }, + "n": ["0p833_1_0p167_0", "0p833_0p672_0p167_-0p078"], + "t": 85, + "s": [10, 43], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.867] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.112] }, + "n": ["0p833_1_0p167_0", "0p833_0p867_0p167_0p112"], + "t": 90, + "s": [10, 58], + "e": [10, 102] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.054] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.224] }, + "n": ["0p833_1_0p167_0", "0p833_1p054_0p167_0p224"], + "t": 95, + "s": [10, 102], + "e": [10, 128] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.822] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.033] }, + "n": ["0p833_1_0p167_0", "0p833_0p822_0p167_0p033"], + "t": 100, + "s": [10, 128], + "e": [10, 85] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.935] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.156] }, + "n": ["0p833_1_0p167_0", "0p833_0p935_0p167_0p156"], + "t": 105, + "s": [10, 85], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.907] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.288] }, + "n": ["0p833_1_0p167_0", "0p833_0p907_0p167_-0p288"], + "t": 110, + "s": [10, 36], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.815] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p815"], + "t": 115, + "s": [10, 47], + "e": [10, 47] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.941176533699, 0.235294133425, 0.184313729405, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 34, + "ty": 4, + "nm": "形状图层 3", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [390.993, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.944] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p944_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 106] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p167"], + "t": 5, + "s": [10, 106], + "e": [10, 84] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_1_0p167_0p167"], + "t": 10, + "s": [10, 84], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.852] }, + "o": { "x": [0.167, 0.167], "y": [0, 0] }, + "n": ["0p833_1_0p167_0", "0p833_0p852_0p167_0"], + "t": 15, + "s": [10, 62], + "e": [10, 84] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.284] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.191] }, + "n": ["0p833_1_0p167_0", "0p833_1p284_0p167_0p191"], + "t": 20, + "s": [10, 84], + "e": [10, 101] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.939] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.064] }, + "n": ["0p833_1_0p167_0", "0p833_0p939_0p167_0p064"], + "t": 25, + "s": [10, 101], + "e": [10, 26] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.954] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.229] }, + "n": ["0p833_1_0p167_0", "0p833_0p954_0p167_-0p229"], + "t": 30, + "s": [10, 26], + "e": [10, 46] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.093] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.102] }, + "n": ["0p833_1_0p167_0", "0p833_1p093_0p167_-0p102"], + "t": 35, + "s": [10, 46], + "e": [10, 37] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.829] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.044] }, + "n": ["0p833_1_0p167_0", "0p833_0p829_0p167_0p044"], + "t": 40, + "s": [10, 37], + "e": [10, 56] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.804] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.163] }, + "n": ["0p833_1_0p167_0", "0p833_0p804_0p167_0p163"], + "t": 45, + "s": [10, 56], + "e": [10, 76] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.988] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.145] }, + "n": ["0p833_1_0p167_0", "0p833_0p988_0p167_0p145"], + "t": 50, + "s": [10, 76], + "e": [10, 103] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.967] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.014] }, + "n": ["0p833_1_0p167_0", "0p833_0p967_0p167_-0p014"], + "t": 55, + "s": [10, 103], + "e": [10, 80] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.714] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.054] }, + "n": ["0p833_1_0p167_0", "0p833_0p714_0p167_-0p054"], + "t": 60, + "s": [10, 80], + "e": [10, 94] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.953] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.118] }, + "n": ["0p833_1_0p167_0", "0p833_0p953_0p167_0p118"], + "t": 65, + "s": [10, 94], + "e": [10, 128] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.794] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.106] }, + "n": ["0p833_1_0p167_0", "0p833_0p794_0p167_-0p106"], + "t": 70, + "s": [10, 128], + "e": [10, 113] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.027] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.14] }, + "n": ["0p833_1_0p167_0", "0p833_1p027_0p167_0p14"], + "t": 75, + "s": [10, 113], + "e": [10, 91] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.029] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.02] }, + "n": ["0p833_1_0p167_0", "0p833_1p029_0p167_0p02"], + "t": 80, + "s": [10, 91], + "e": [10, 120] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.84] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.021] }, + "n": ["0p833_1_0p167_0", "0p833_0p84_0p167_0p021"], + "t": 85, + "s": [10, 120], + "e": [10, 81] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.97] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.174] }, + "n": ["0p833_1_0p167_0", "0p833_0p97_0p167_0p174"], + "t": 90, + "s": [10, 81], + "e": [10, 45] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.051] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.047] }, + "n": ["0p833_1_0p167_0", "0p833_1p051_0p167_-0p047"], + "t": 95, + "s": [10, 45], + "e": [10, 68] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.98] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.032] }, + "n": ["0p833_1_0p167_0", "0p833_0p98_0p167_0p032"], + "t": 100, + "s": [10, 68], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.863] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.027] }, + "n": ["0p833_1_0p167_0", "0p833_0p863_0p167_-0p027"], + "t": 105, + "s": [10, 31], + "e": [10, 59] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.213] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p213"], + "t": 110, + "s": [10, 59], + "e": [10, 77] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.028] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p028"], + "t": 115, + "s": [10, 77], + "e": [10, 64] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.960784375668, 0.250980407, 0.152941182256, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 35, + "ty": 4, + "nm": "形状图层 2", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [372.121, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.955] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p955_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 68] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.782] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.096] }, + "n": ["0p833_1_0p167_0", "0p833_0p782_0p167_-0p096"], + "t": 5, + "s": [10, 68], + "e": [10, 55] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.948] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.135] }, + "n": ["0p833_1_0p167_0", "0p833_0p948_0p167_0p135"], + "t": 10, + "s": [10, 55], + "e": [10, 34] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.698] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.135] }, + "n": ["0p833_1_0p167_0", "0p833_0p698_0p167_-0p135"], + "t": 15, + "s": [10, 34], + "e": [10, 42] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.004] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.115] }, + "n": ["0p833_1_0p167_0", "0p833_1p004_0p167_0p115"], + "t": 20, + "s": [10, 42], + "e": [10, 63] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.989] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.004] }, + "n": ["0p833_1_0p167_0", "0p833_0p989_0p167_0p004"], + "t": 25, + "s": [10, 63], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.912] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.013] }, + "n": ["0p833_1_0p167_0", "0p833_0p912_0p167_-0p013"], + "t": 30, + "s": [10, 41], + "e": [10, 60] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, -1.083] }, + "o": { "x": [0.167, 0.167], "y": [0, 1.667] }, + "n": ["0p833_1_0p167_0", "0p833_-1p083_0p167_1p667"], + "t": 35, + "s": [10, 60], + "e": [10, 61] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.83] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.087] }, + "n": ["0p833_1_0p167_0", "0p833_0p83_0p167_0p087"], + "t": 40, + "s": [10, 61], + "e": [10, 85] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.077] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.163] }, + "n": ["0p833_1_0p167_0", "0p833_1p077_0p167_0p163"], + "t": 45, + "s": [10, 85], + "e": [10, 110] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.849] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.04] }, + "n": ["0p833_1_0p167_0", "0p833_0p849_0p167_0p04"], + "t": 50, + "s": [10, 110], + "e": [10, 62] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.97] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.186] }, + "n": ["0p833_1_0p167_0", "0p833_0p97_0p167_0p186"], + "t": 55, + "s": [10, 62], + "e": [10, 23] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.757] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.047] }, + "n": ["0p833_1_0p167_0", "0p833_0p757_0p167_-0p047"], + "t": 60, + "s": [10, 23], + "e": [10, 48] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.967] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.127] }, + "n": ["0p833_1_0p167_0", "0p833_0p967_0p167_0p127"], + "t": 65, + "s": [10, 48], + "e": [10, 96] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.874] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.055] }, + "n": ["0p833_1_0p167_0", "0p833_0p874_0p167_-0p055"], + "t": 70, + "s": [10, 96], + "e": [10, 67] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.033] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.244] }, + "n": ["0p833_1_0p167_0", "0p833_1p033_0p167_0p244"], + "t": 75, + "s": [10, 67], + "e": [10, 52] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.075] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.024] }, + "n": ["0p833_1_0p167_0", "0p833_1p075_0p167_0p024"], + "t": 80, + "s": [10, 52], + "e": [10, 73] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.969] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.04] }, + "n": ["0p833_1_0p167_0", "0p833_0p969_0p167_0p04"], + "t": 85, + "s": [10, 73], + "e": [10, 33] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.81] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.05] }, + "n": ["0p833_1_0p167_0", "0p833_0p81_0p167_-0p05"], + "t": 90, + "s": [10, 33], + "e": [10, 58] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.013] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.148] }, + "n": ["0p833_1_0p167_0", "0p833_1p013_0p167_0p148"], + "t": 95, + "s": [10, 58], + "e": [10, 90] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.838] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.011] }, + "n": ["0p833_1_0p167_0", "0p833_0p838_0p167_0p011"], + "t": 100, + "s": [10, 90], + "e": [10, 53] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.95] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.171] }, + "n": ["0p833_1_0p167_0", "0p833_0p95_0p167_0p171"], + "t": 105, + "s": [10, 53], + "e": [10, 18] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.848] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.125] }, + "n": ["0p833_1_0p167_0", "0p833_0p848_0p167_-0p125"], + "t": 110, + "s": [10, 18], + "e": [10, 32] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.189] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_0p189"], + "t": 115, + "s": [10, 32], + "e": [10, 41] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.98431378603, 0.266666680574, 0.117647066712, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 36, + "ty": 4, + "nm": "形状图层 1", + "sr": 1, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [353.25, 147.345, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { "a": 0, "k": [99.849, 100, 100], "ix": 6 } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "ty": "rc", + "d": 1, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833], "y": [1, 0.75] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.167] }, + "n": ["0p833_1_0p167_0", "0p833_0p75_0p167_0p167"], + "t": 0, + "s": [10, 40], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.133] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.125] }, + "n": ["0p833_1_0p167_0", "0p833_1p133_0p167_0p125"], + "t": 5, + "s": [10, 35], + "e": [10, 25] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.013] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.051] }, + "n": ["0p833_1_0p167_0", "0p833_1p013_0p167_0p051"], + "t": 10, + "s": [10, 25], + "e": [10, 51] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.972] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.011] }, + "n": ["0p833_1_0p167_0", "0p833_0p972_0p167_0p011"], + "t": 15, + "s": [10, 51], + "e": [10, 21] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.996] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.042] }, + "n": ["0p833_1_0p167_0", "0p833_0p996_0p167_-0p042"], + "t": 20, + "s": [10, 21], + "e": [10, 41] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.004] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_-0p004"], + "t": 25, + "s": [10, 41], + "e": [10, 22] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.013] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.038] }, + "n": ["0p833_1_0p167_0", "0p833_1p013_0p167_-0p038"], + "t": 30, + "s": [10, 22], + "e": [10, 35] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.006] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.011] }, + "n": ["0p833_1_0p167_0", "0p833_1p006_0p167_0p011"], + "t": 35, + "s": [10, 35], + "e": [10, 20] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.859] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.005] }, + "n": ["0p833_1_0p167_0", "0p833_0p859_0p167_0p005"], + "t": 40, + "s": [10, 20], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.098] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.205] }, + "n": ["0p833_1_0p167_0", "0p833_1p098_0p167_0p205"], + "t": 45, + "s": [10, 36], + "e": [10, 47] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.962] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.045] }, + "n": ["0p833_1_0p167_0", "0p833_0p962_0p167_0p045"], + "t": 50, + "s": [10, 47], + "e": [10, 23] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.071] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_-0p071"], + "t": 55, + "s": [10, 23], + "e": [10, 36] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.269] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.037] }, + "n": ["0p833_1_0p167_0", "0p833_1p269_0p167_-0p037"], + "t": 60, + "s": [10, 36], + "e": [10, 27] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.998] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.064] }, + "n": ["0p833_1_0p167_0", "0p833_0p998_0p167_0p064"], + "t": 65, + "s": [10, 27], + "e": [10, 65] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.89] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.002] }, + "n": ["0p833_1_0p167_0", "0p833_0p89_0p167_-0p002"], + "t": 70, + "s": [10, 65], + "e": [10, 28] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.007] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.34] }, + "n": ["0p833_1_0p167_0", "0p833_1p007_0p167_0p34"], + "t": 75, + "s": [10, 28], + "e": [10, 16] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.019] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.006] }, + "n": ["0p833_1_0p167_0", "0p833_1p019_0p167_0p006"], + "t": 80, + "s": [10, 16], + "e": [10, 29] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.974] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.016] }, + "n": ["0p833_1_0p167_0", "0p833_0p974_0p167_0p016"], + "t": 85, + "s": [10, 29], + "e": [10, 13] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.795] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.038] }, + "n": ["0p833_1_0p167_0", "0p833_0p795_0p167_-0p038"], + "t": 90, + "s": [10, 13], + "e": [10, 24] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.021] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.141] }, + "n": ["0p833_1_0p167_0", "0p833_1p021_0p167_0p141"], + "t": 95, + "s": [10, 24], + "e": [10, 40] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.962] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.017] }, + "n": ["0p833_1_0p167_0", "0p833_0p962_0p167_0p017"], + "t": 100, + "s": [10, 40], + "e": [10, 20] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 1.061] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.068] }, + "n": ["0p833_1_0p167_0", "0p833_1p061_0p167_-0p068"], + "t": 105, + "s": [10, 20], + "e": [10, 31] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.937] }, + "o": { "x": [0.167, 0.167], "y": [0, 0.035] }, + "n": ["0p833_1_0p167_0", "0p833_0p937_0p167_0p035"], + "t": 110, + "s": [10, 31], + "e": [10, 12] + }, + { + "i": { "x": [0.833, 0.833], "y": [1, 0.833] }, + "o": { "x": [0.167, 0.167], "y": [0, -0.16] }, + "n": ["0p833_1_0p167_0", "0p833_0p833_0p167_-0p16"], + "t": 115, + "s": [10, 12], + "e": [10, 18] + }, + { "t": 119 } + ], + "ix": 2 + }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "r": { "a": 0, "k": 20, "ix": 4 }, + "nm": "矩形路径 1", + "mn": "ADBE Vector Shape - Rect", + "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": 0, "ix": 5 }, + "lc": 1, + "lj": 1, + "ml": 4, + "ml2": { "a": 0, "k": 4, "ix": 8 }, + "nm": "描边 1", + "mn": "ADBE Vector Graphic - Stroke", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [1, 0.278431385756, 0.090196080506, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "nm": "填充 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [-335.731, -4.845], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "变换" + } + ], + "nm": "矩形 1", + "np": 3, + "cix": 2, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..bafed18 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,4 @@ +{ + "name": "LoopAI", + "short_name": "LoopAI" +} diff --git a/public/mp4/index_background.mp4 b/public/mp4/index_background.mp4 new file mode 100644 index 0000000..8aad3a1 Binary files /dev/null and b/public/mp4/index_background.mp4 differ diff --git a/public/mp4/login_background.mp4 b/public/mp4/login_background.mp4 new file mode 100644 index 0000000..3d614c8 Binary files /dev/null and b/public/mp4/login_background.mp4 differ diff --git a/public/mp4/register_background.mp4 b/public/mp4/register_background.mp4 new file mode 100644 index 0000000..61a4893 Binary files /dev/null and b/public/mp4/register_background.mp4 differ diff --git a/public/robots.txt b/public/robots.txt index 0bbe932..6f1bf50 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -3,7 +3,7 @@ User-agent: * Allow: / # Host -Host: https://colabo.ai +Host: https://loop.colabo.ai # Sitemaps -Sitemap: https://colabo.ai/sitemap.xml +Sitemap: https://loop.colabo.ai/sitemap.xml diff --git a/public/sitemap-0.xml b/public/sitemap-0.xml index d5cae1b..16e59a0 100644 --- a/public/sitemap-0.xml +++ b/public/sitemap-0.xml @@ -1,8 +1,10 @@ -https://colabo.ai2022-07-25T04:49:20.049Zdaily0.7 -https://colabo.ai/about2022-07-25T04:49:20.049Zdaily0.7 -https://colabo.ai/favorites2022-07-25T04:49:20.049Zdaily0.7 -https://colabo.ai/search2022-07-25T04:49:20.049Zdaily0.7 -https://colabo.ai/en/about2022-07-25T04:49:20.049Zdaily0.7 +https://loop.colabo.ai2022-11-07T07:48:43.772Zdaily0.7 +https://loop.colabo.ai/about2022-11-07T07:48:43.772Zdaily0.7 +https://loop.colabo.ai/favorites2022-11-07T07:48:43.772Zdaily0.7 +https://loop.colabo.ai/login2022-11-07T07:48:43.772Zdaily0.7 +https://loop.colabo.ai/register2022-11-07T07:48:43.772Zdaily0.7 +https://loop.colabo.ai/search2022-11-07T07:48:43.772Zdaily0.7 +https://loop.colabo.ai/en/about2022-11-07T07:48:43.772Zdaily0.7 \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml index 6d368b7..f231b87 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -1,4 +1,4 @@ - https://colabo.ai/sitemap-0.xml + https://loop.colabo.ai/sitemap-0.xml \ No newline at end of file diff --git a/seo.config.js b/seo.config.js index 1988ac5..c475d5d 100644 --- a/seo.config.js +++ b/seo.config.js @@ -1,5 +1,5 @@ export default { - titleTemplate: '%s | ColaboAI', + titleTemplate: '%s | LoopAI', additionalLinkTags: [ { rel: 'icon', @@ -19,7 +19,7 @@ export default { openGraph: { type: 'website', locale: 'ko_KR', - site_name: 'ColaboAI', + site_name: 'LoopAI', images: [{ url: 'https://example.com/example_square_image.png' }], }, twitter: { diff --git a/src/api/api.ts b/src/api/api.ts new file mode 100644 index 0000000..52f0f97 --- /dev/null +++ b/src/api/api.ts @@ -0,0 +1,38 @@ +import axios from 'axios'; +import { AudioTypes } from '../../types/music'; +import { UserBase, UserCreate } from '../../types/user'; +import FormData from 'form-data'; + +const api = axios.create({ + baseURL: 'http://192.168.0.22:8000', +}); + +const getMusic = async () => { + const res = await api.get('/audio/items'); + return res.data; +}; + +const postLogin = async (username: string, password: string) => { + const formData = new FormData(); + formData.append('username', username); + formData.append('password', password); + const res = await api.post('/auth/jwt/login', formData, { + headers: { + 'Content-Type': 'multipart/form-data', + }, + }); + console.log(res); + return res; +}; + +async function postUser(params: UserCreate) { + const res = await api.post('/auth/register', params); + return res; +} + +async function postProto(params: UserBase) { + const res = await api.post('/audio/proto', params); + return res; +} + +export { getMusic, postLogin, postUser, postProto }; diff --git a/src/auth/auth.ts b/src/auth/auth.ts new file mode 100644 index 0000000..6de66a3 --- /dev/null +++ b/src/auth/auth.ts @@ -0,0 +1,8 @@ +export const setToken = (token: string) => { + localStorage.setItem('token', token); +}; + +export const removeToken = () => { + localStorage.removeItem('token'); + console.log('remove'); +}; diff --git a/src/components/footer/footer.tsx b/src/components/footer/footer.tsx new file mode 100644 index 0000000..c7c05cd --- /dev/null +++ b/src/components/footer/footer.tsx @@ -0,0 +1,141 @@ +import AudioPlayer from 'react-h5-audio-player'; +import H5AudioPlayer, { RHAP_UI } from 'react-h5-audio-player'; +import { useRecoilState, useRecoilValue, useSetRecoilState } from 'recoil'; +import React, { useEffect, useRef } from 'react'; +import { + audioListState, + audioState, + coverAlbumState, + currentIndexState, + musicArtistState, + musicNameState, + muteState, + playState, + volumeState, +} from '@src/store/atom'; +import styles from '/styles/footer.module.scss'; +import Image from 'next/image'; +import { Mobile, DesktopOrTablet } from '@src/hooks/useMediaQuery'; + +export default function Footer() { + const audio = useRecoilValue(audioState); + const myRef = useRef(null); + const [play, setPlay] = useRecoilState(playState); + const volume = useRecoilValue(volumeState); + const mute = useRecoilValue(muteState); + const musicName = useRecoilValue(musicNameState); + const musicArtist = useRecoilValue(musicArtistState); + const coverAlbum = useRecoilValue(coverAlbumState); + const audioList = useRecoilValue(audioListState); + const setCurrentIndex = useSetRecoilState(currentIndexState); + + const handleOnMusicEnd = () => { + setPlay(false); + }; + const handleOnPlay = () => { + setPlay(true); + }; + const handleOnPause = () => { + setPlay(false); + }; + const handleOnClickNext = () => { + setCurrentIndex((currentTrack: number) => (currentTrack < audioList.length - 1 ? currentTrack + 1 : 0)); + }; + const handleOnClickPrevious = () => { + setCurrentIndex((currentTrack: number) => (currentTrack > 0 ? currentTrack - 1 : audioList.length - 1)); + }; + + useEffect(() => { + if (!myRef.current?.audio.current) return; + if (play) { + myRef.current.audio.current.play(); + myRef.current.audio.current.volume = mute ? 0 : volume / 100; + } else myRef.current.audio.current.pause(); + }, [play, audio, volume, mute]); + + return ( + <> + + <> + {audio ? ( +
+
+ +
+ +
+
{musicName}
+
{musicArtist}
+
, + ]} + customControlsSection={[ + RHAP_UI.MAIN_CONTROLS, + RHAP_UI.CURRENT_TIME, +
/
, + RHAP_UI.DURATION, + RHAP_UI.ADDITIONAL_CONTROLS, + RHAP_UI.VOLUME_CONTROLS, + ]} + ref={myRef} + showSkipControls={true} + showJumpControls={false} + showDownloadProgress={false} + hasDefaultKeyBindings={false} + onPlay={handleOnPlay} + onPause={handleOnPause} + onEnded={handleOnMusicEnd} + onClickNext={handleOnClickNext} + onClickPrevious={handleOnClickPrevious} + /> +
+ + ) : null} + +
+ + <> + {audio ? ( +
+
+ +
+ +
+
+
{musicName}
+
{musicArtist}
+
+
, + ]} + customControlsSection={[RHAP_UI.ADDITIONAL_CONTROLS, RHAP_UI.MAIN_CONTROLS]} + ref={myRef} + showSkipControls={true} + showJumpControls={false} + showDownloadProgress={false} + hasDefaultKeyBindings={false} + onPlay={handleOnPlay} + onPause={handleOnPause} + onEnded={handleOnMusicEnd} + onClickNext={handleOnClickNext} + onClickPrevious={handleOnClickPrevious} + /> +
+ + ) : null} + +
+ + ); +} diff --git a/src/components/header.tsx b/src/components/header.tsx deleted file mode 100644 index a34bbf5..0000000 --- a/src/components/header.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import styles from '/styles/header.module.scss'; - -export default function Header() { - return ( -
- -
- ); -} diff --git a/src/components/header/header.tsx b/src/components/header/header.tsx new file mode 100644 index 0000000..2e723ed --- /dev/null +++ b/src/components/header/header.tsx @@ -0,0 +1,67 @@ +import styles from '/styles/header.module.scss'; +import { useRecoilState } from 'recoil'; +import { searchWordState } from '@src/store/atom'; +import { ChangeEvent, useEffect, useState } from 'react'; +import Link from 'next/link'; +import { useRouter } from 'next/router'; +import { useLogout } from '@src/hooks/useLogout'; +import { Mobile, DesktopOrTablet } from '@src/hooks/useMediaQuery'; +import Image from 'next/image'; +import logo from '@public/image/LoopAI.png'; + +export default function Header() { + const [searchWord, setSearchWord] = useRecoilState(searchWordState); + const [token, setToken] = useState(''); + const [logout] = useLogout(); + const router = useRouter(); + + useEffect(() => { + const item = localStorage.getItem('token'); + if (item !== null) { + setToken(item); + } + }, [router]); + + const handleInput = (e: ChangeEvent) => { + setSearchWord(e.target.value); + }; + + return ( + <> + +
+
+ + LoopAI Logo + +
+
+
+ +
+
+ {token == '' ? ( + + ) : ( + + )} +
+
+
+
+ +
+
+ + LoopAI Logo + +
+
+
+ + ); +} diff --git a/src/components/layout.tsx b/src/components/layout/layout.tsx similarity index 71% rename from src/components/layout.tsx rename to src/components/layout/layout.tsx index 279bbdf..1698ed9 100644 --- a/src/components/layout.tsx +++ b/src/components/layout/layout.tsx @@ -1,7 +1,8 @@ -import styles from '/styles/layout.module.scss'; import React from 'react'; -import Header from '@src/components/header'; -import Sidebar from '@src/components/sidebar'; +import styles from '/styles/layout.module.scss'; +import Header from '@src/components/header/header'; +import Sidebar from '@src/components/sidebar/sidebar'; +import Footer from '@src/components/footer/footer'; type AppLayoutProps = { children: React.ReactNode; @@ -16,6 +17,7 @@ export default function Layout({ children }: AppLayoutProps) {
{children}
+