Repository: GSTJ/pegava-dating-app
Branch: master
Commit: 5f7c4977d93d
Files: 145
Total size: 627.4 KB
Directory structure:
gitextract_xz414na9/
├── .expo-shared/
│ ├── README.md
│ └── assets.json
├── .github/
│ ├── FUNDING.yml
│ └── ISSUE_TEMPLATE/
│ ├── bug_report.md
│ └── feature_request.md
├── .gitignore
├── App.json
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── babel.config.js
├── metro.config.js
├── package.json
├── patches/
│ └── react-native-gesture-handler+2.2.1.patch
├── pull_request_template.md
├── src/
│ ├── @types/
│ │ ├── SceneName.ts
│ │ ├── User.ts
│ │ ├── modules.d.ts
│ │ ├── react-navigation.d.ts
│ │ └── styled-components.d.ts
│ ├── assets/
│ │ ├── animations/
│ │ │ ├── disconnected.json
│ │ │ ├── empty.json
│ │ │ ├── error.json
│ │ │ ├── inverseLoadingDots.json
│ │ │ ├── loadingLogo.json
│ │ │ ├── location.json
│ │ │ ├── primaryLoadingDots.json
│ │ │ └── swipe.json
│ │ └── fonts/
│ │ ├── Gilroy-Bold.hhea.xml
│ │ ├── Gilroy-ExtraBold.hhea.xml
│ │ ├── Gilroy-Light.hhea.xml
│ │ ├── Gilroy-Medium.hhea.xml
│ │ ├── Gilroy-Regular.hhea.xml
│ │ └── Gilroy-SemiBold.hhea.xml
│ ├── components/
│ │ ├── Button/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── Divider.ts
│ │ ├── FeedbackCard/
│ │ │ ├── components/
│ │ │ │ ├── LikeFeedback/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.ts
│ │ │ │ ├── MaybeFeedback/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.ts
│ │ │ │ └── NopeFeedback/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── Glassmorphism/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── Input/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── Loading.ts
│ │ ├── MainCard/
│ │ │ ├── components/
│ │ │ │ ├── Distance/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.ts
│ │ │ │ ├── Pagination/
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ └── styles.ts
│ │ │ │ └── PersonalInfo/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── MatchActionBar/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── Navbar/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── RadioButtons/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── SafeComponent/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── Text.ts
│ │ └── index.ts
│ ├── constants.ts
│ ├── index.tsx
│ ├── services/
│ │ ├── api.ts
│ │ ├── navigation.ts
│ │ ├── reactotron.ts
│ │ └── utils.ts
│ ├── store/
│ │ ├── index.ts
│ │ ├── reducers/
│ │ │ ├── index.ts
│ │ │ └── users/
│ │ │ ├── index.ts
│ │ │ ├── list.ts
│ │ │ └── swipe.ts
│ │ ├── sagas/
│ │ │ ├── index.ts
│ │ │ └── users/
│ │ │ ├── index.ts
│ │ │ ├── list.ts
│ │ │ └── swipe.ts
│ │ └── selectors.ts
│ ├── themes.ts
│ └── views/
│ ├── Authentication/
│ │ ├── components/
│ │ │ ├── HeroText/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ └── PhoneInput/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── index.tsx
│ │ └── styles.ts
│ ├── Chat/
│ │ ├── components/
│ │ │ ├── DateMessage.tsx
│ │ │ ├── Feedback.tsx
│ │ │ ├── Header/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── Message/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── NextDay/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── Send/
│ │ │ │ ├── index.tsx
│ │ │ │ ├── styles.ts
│ │ │ │ └── useSendMessage.ts
│ │ │ └── index.tsx
│ │ ├── index.tsx
│ │ ├── store/
│ │ │ ├── index.tsx
│ │ │ ├── reducers.ts
│ │ │ └── selectors.ts
│ │ └── styles.ts
│ ├── EditProfile/
│ │ ├── index.tsx
│ │ ├── styles.ts
│ │ └── utils/
│ │ └── index.ts
│ ├── Messages/
│ │ ├── __mocks__/
│ │ │ └── index.ts
│ │ ├── components/
│ │ │ ├── Header/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── Message/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ └── Preview/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── index.tsx
│ │ └── styles.ts
│ ├── OneTimeCode/
│ │ ├── components/
│ │ │ ├── CodeInput/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── CustomKeyboard/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ └── GoBack/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── hooks/
│ │ │ └── useTimer.ts
│ │ ├── index.tsx
│ │ └── styles.ts
│ ├── Swipe/
│ │ ├── components/
│ │ │ ├── SwipeBackButton/
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ ├── SwipeHandler/
│ │ │ │ ├── hooks/
│ │ │ │ │ └── useSwipeGesture.ts
│ │ │ │ ├── index.tsx
│ │ │ │ └── styles.ts
│ │ │ └── SwipeRequestFeedback/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── index.tsx
│ │ └── styles.ts
│ ├── UserProfile/
│ │ ├── components/
│ │ │ └── GoBack/
│ │ │ ├── index.tsx
│ │ │ └── styles.ts
│ │ ├── index.tsx
│ │ └── styles.ts
│ └── index.routes.tsx
└── tsconfig.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .expo-shared/README.md
================================================
> Why do I have a folder named ".expo-shared" in my project?
The ".expo-shared" folder is created when running commands that produce state that is intended to be shared with all developers on the project. For example, "npx expo-optimize".
> What does the "assets.json" file contain?
The "assets.json" file describes the assets that have been optimized through "expo-optimize" and do not need to be processed again.
> Should I commit the ".expo-shared" folder?
Yes, you should share the ".expo-shared" folder with your collaborators.
================================================
FILE: .expo-shared/assets.json
================================================
{
"a6164e4abeb497ef93629af873180de081b31b94734937559b3fdae2db69d97d": true,
"00012469d933960ab83c0f0d9e71f610cdcbae96d77d97f26525729ad4d2c4e7": true,
"94acf68fb18a73ed3105fd259be1ea723843d0e8808dc5eaf5b4ce903edc4ee6": true,
"4cb68d4f142fa8e6a42f90d7398ff8224d4c047ad15125fa9ea4e2bdf8be530c": true,
"0fa6f65eaf5d0533df6d2386e42a55fc5db5c3f7e0cb8b2f2eaf0f1d9430626a": true,
"b253658813cc01896ff4dbb2e97bcc925dab53efb84963f3868a06a12618f172": true,
"91de98ef80fd6ad7bc526fea82d3649167b9818cbbd323b1b3ec9b1d40ab5781": true,
"f5f330cde82e6e7a8a646665b324561449f021194eb3ea7b870427f785ea8a87": true,
"c84aad659b3cc1356a16928042105a4650c0b64014534cd5447d0e0774c2eb43": true,
"dcb3a6443d230d1d98b041aef5746430808be37fe311336d90e6622b132d3bc7": true,
"79f8b040351b0142b4062515ece5f469daf4bd65573db7d27cc661ca2b0180a2": true,
"a9e9de377608a69a37aac0ba78b4d3e5deb4733ead621882ba041000382793b7": true,
"7e05e483b2420e3fa86e9249babadd8030405dc2eb7db3e5aef171a66d21d7e8": true,
"6abea0e7c2ae13c238e4f475a52e1365e252005e31a1e766b68262f827e9ddf8": true,
"b7f4839f75e90f47478a8ff32903c7037501bae3781fe5a385af60740d905ee5": true,
"dbbc7c502c6e8ffb0f122cf1306f8b26d5a8004981187961b49ecda054b12719": true,
"d0f3f3fa351ec790df56a90491eead770c6cd8b028c6d3568851a8d3ce46f4b4": true,
"06645a692b6ce3f514436974a64a1678bc7a7e830657599efb24421a043a3c9d": true,
"cf7fbe6150b97e7e4d5984a49801d9c39eed9a73f5d419bd75a4161f29a9d755": true,
"501a5045ea9974fa73485cea8ef673a7588f2806ab952a0907a2bfa4d25bb4ec": true,
"902022aa7b5b2cbcf6f5df9b1f601c8d0b71a92e008dbdd28d330314d4c98dac": true,
"26c94f15c4e5c904f98a31bd142c598a5c4c96d88a3ac982cef16824baa57d05": true,
"7139df23e77bac1d408670ee371edc518a3f7685c0a881633ec233bb74f84c32": true,
"ee467925eadf34c88f191280e85722331b19237837292fa4421aaf6895a174ad": true,
"00e663e76ad8deca0ea6d326391017680b0dfa9c739d06abd737b3c4435d3bb1": true,
"9ffc80fbc92bc628e5fcc00300e49bf051482bced3ce0da91e9870e9b04fd57f": true,
"66f09c394acf0c248dd6e5a53918fdd90c9bcc148e66f4de6d23e22225ade842": true
}
================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms
github: [gstj] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
================================================
FILE: .gitignore
================================================
# OSX
#
.DS_Store
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace
# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml
# node.js
#
node_modules/
npm-debug.log
yarn-error.log
# BUCK
buck-out/
\.buckd/
*.keystore
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/
*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots
# Bundle artifacts
*.jsbundle
# CocoaPods
/ios/Pods/
# Expo
.expo/*
web-build/
================================================
FILE: App.json
================================================
{
"displayName": "Pegava",
"expo": {
"name": "Pegava",
"description": "Aplicativo de relacionamento",
"scheme": "pegava",
"slug": "pegava",
"icon": "./src/assets/images/icon.png",
"orientation": "portrait",
"platforms": ["ios", "android"],
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#070F26",
"translucent": true
},
"splash": {
"image": "./src/assets/images/splash@3x.png",
"resizeMode": "contain",
"backgroundColor": "#070F26",
"mdpi": "./src/assets/images/splash.png",
"xhdpi": "./src/assets/images/splash@2x.png",
"xxhdpi": "./src/assets/images/splash@3x.png"
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#111D40"
},
"package": "br.com.pegava"
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"expo.ts",
"expo.tsx",
"expo.js",
"expo.jsx",
"ts",
"tsx",
"js",
"jsx",
"json",
"wasm",
"svg"
]
}
}
}
================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Contributor Covenant Code of Conduct
## Our Pledge
We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
nationality, personal appearance, race, religion, or sexual identity
and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.
## Our Standards
Examples of behavior that contributes to a positive environment for our
community include:
* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
overall community
Examples of unacceptable behavior include:
* The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities
Community leaders are responsible for clarifying and enforcing our standards of
acceptable behavior and will take appropriate and fair corrective action in
response to any behavior that they deem inappropriate, threatening, offensive,
or harmful.
Community leaders have the right and responsibility to remove, edit, or reject
comments, commits, code, wiki edits, issues, and other contributions that are
not aligned to this Code of Conduct, and will communicate reasons for moderation
decisions when appropriate.
## Scope
This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
Examples of representing our community include using an official e-mail address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
gabrielstaveira@gmail.com.
All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the
reporter of any incident.
## Enforcement Guidelines
Community leaders will follow these Community Impact Guidelines in determining
the consequences for any action they deem in violation of this Code of Conduct:
### 1. Correction
**Community Impact**: Use of inappropriate language or other behavior deemed
unprofessional or unwelcome in the community.
**Consequence**: A private, written warning from community leaders, providing
clarity around the nature of the violation and an explanation of why the
behavior was inappropriate. A public apology may be requested.
### 2. Warning
**Community Impact**: A violation through a single incident or series
of actions.
**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
like social media. Violating these terms may lead to a temporary or
permanent ban.
### 3. Temporary Ban
**Community Impact**: A serious violation of community standards, including
sustained inappropriate behavior.
**Consequence**: A temporary ban from any sort of interaction or public
communication with the community for a specified period of time. No public or
private interaction with the people involved, including unsolicited interaction
with those enforcing the Code of Conduct, is allowed during this period.
Violating these terms may lead to a permanent ban.
### 4. Permanent Ban
**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.
**Consequence**: A permanent ban from any sort of public interaction within
the community.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
version 2.0, available at
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
Community Impact Guidelines were inspired by [Mozilla's code of conduct
enforcement ladder](https://github.com/mozilla/diversity).
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at
https://www.contributor-covenant.org/translations.
================================================
FILE: CONTRIBUTING.md
================================================
# Contributing
We want this community to be friendly and respectful to each other. Please follow it in all your interactions with the project.
## Development workflow
To get started with the project, run `yarn` in the root directory to install the required dependencies for each package:
```sh
yarn
```
> While it's possible to use [`npm`](https://github.com/npm/cli), the tooling is built around [`yarn`](https://classic.yarnpkg.com/), so you'll have an easier time if you use `yarn` for development.
To start the packager:
```sh
expo start
```
### Commit message convention
We follow the [conventional commits specification](https://www.conventionalcommits.org/en) for our commit messages:
- `fix`: bug fixes, e.g. fix crash due to deprecated method.
- `feat`: new features, e.g. add new method to the module.
- `refactor`: code refactor, e.g. migrate from class components to hooks.
- `docs`: changes into documentation, e.g. add usage example for the module..
- `test`: adding or updating tests, e.g. add integration tests using detox.
- `chore`: tooling changes, e.g. change CI config.
### Sending a pull request
> **Working on your first pull request?** You can learn how from this _free_ series: [How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github).
When you're sending a pull request:
- Prefer small pull requests focused on one change.
- Follow the pull request template when opening a pull request.
## Code of Conduct
### Our Pledge
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
### Our Standards
Examples of behavior that contributes to a positive environment for our community include:
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
- Focusing on what is best not just for us as individuals, but for the overall community
Examples of unacceptable behavior include:
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a
professional setting
### Enforcement Responsibilities
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
### Scope
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
### Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [INSERT CONTACT METHOD]. All complaints will be reviewed and investigated promptly and fairly.
All community leaders are obligated to respect the privacy and security of the reporter of any incident.
### Enforcement Guidelines
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
#### 1. Correction
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
#### 2. Warning
**Community Impact**: A violation through a single incident or series of actions.
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
#### 3. Temporary Ban
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
#### 4. Permanent Ban
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
**Consequence**: A permanent ban from any sort of public interaction within the community.
### Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
[homepage]: https://www.contributor-covenant.org
For answers to common questions about this code of conduct, see the FAQ at
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
================================================
FILE: LICENSE
================================================
Creative Commons Legal Code
CC0 1.0 Universal
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
HEREUNDER.
Statement of Purpose
The laws of most jurisdictions throughout the world automatically confer
exclusive Copyright and Related Rights (defined below) upon the creator
and subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").
Certain owners wish to permanently relinquish those rights to a Work for
the purpose of contributing to a commons of creative, cultural and
scientific works ("Commons") that the public can reliably and without fear
of later claims of infringement build upon, modify, incorporate in other
works, reuse and redistribute as freely as possible in any form whatsoever
and for any purposes, including without limitation commercial purposes.
These owners may contribute to the Commons to promote the ideal of a free
culture and the further production of creative, cultural and scientific
works, or to gain reputation or greater distribution for their Work in
part through the use and efforts of others.
For these and/or other purposes and motivations, and without any
expectation of additional consideration or compensation, the person
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
is an owner of Copyright and Related Rights in the Work, voluntarily
elects to apply CC0 to the Work and publicly distribute the Work under its
terms, with knowledge of his or her Copyright and Related Rights in the
Work and the meaning and intended legal effect of CC0 on those rights.
1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not
limited to, the following:
i. the right to reproduce, adapt, distribute, perform, display,
communicate, and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or
likeness depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work,
subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data
in a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the
European Parliament and of the Council of 11 March 1996 on the legal
protection of databases, and under any national implementation
thereof, including any amended or successor version of such
directive); and
vii. other similar, equivalent or corresponding rights throughout the
world based on applicable law or treaty, and any national
implementations thereof.
2. Waiver. To the greatest extent permitted by, but not in contravention
of, applicable law, Affirmer hereby overtly, fully, permanently,
irrevocably and unconditionally waives, abandons, and surrenders all of
Affirmer's Copyright and Related Rights and associated claims and causes
of action, whether now known or unknown (including existing as well as
future claims and causes of action), in the Work (i) in all territories
worldwide, (ii) for the maximum duration provided by applicable law or
treaty (including future time extensions), (iii) in any current or future
medium and for any number of copies, and (iv) for any purpose whatsoever,
including without limitation commercial, advertising or promotional
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
member of the public at large and to the detriment of Affirmer's heirs and
successors, fully intending that such Waiver shall not be subject to
revocation, rescission, cancellation, termination, or any other legal or
equitable action to disrupt the quiet enjoyment of the Work by the public
as contemplated by Affirmer's express Statement of Purpose.
3. Public License Fallback. Should any part of the Waiver for any reason
be judged legally invalid or ineffective under applicable law, then the
Waiver shall be preserved to the maximum extent permitted taking into
account Affirmer's express Statement of Purpose. In addition, to the
extent the Waiver is so judged Affirmer hereby grants to each affected
person a royalty-free, non transferable, non sublicensable, non exclusive,
irrevocable and unconditional license to exercise Affirmer's Copyright and
Related Rights in the Work (i) in all territories worldwide, (ii) for the
maximum duration provided by applicable law or treaty (including future
time extensions), (iii) in any current or future medium and for any number
of copies, and (iv) for any purpose whatsoever, including without
limitation commercial, advertising or promotional purposes (the
"License"). The License shall be deemed effective as of the date CC0 was
applied by Affirmer to the Work. Should any part of the License for any
reason be judged legally invalid or ineffective under applicable law, such
partial invalidity or ineffectiveness shall not invalidate the remainder
of the License, and in such case Affirmer hereby affirms that he or she
will not (i) exercise any of his or her remaining Copyright and Related
Rights in the Work or (ii) assert any associated claims and causes of
action with respect to the Work, in either case contrary to Affirmer's
express Statement of Purpose.
4. Limitations and Disclaimers.
a. No trademark or patent rights held by Affirmer are waived, abandoned,
surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or
warranties of any kind concerning the Work, express, implied,
statutory or otherwise, including without limitation warranties of
title, merchantability, fitness for a particular purpose, non
infringement, or the absence of latent or other defects, accuracy, or
the present or absence of errors, whether or not discoverable, all to
the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons
that may apply to the Work or any use thereof, including without
limitation any person's Copyright and Related Rights in the Work.
Further, Affirmer disclaims responsibility for obtaining any necessary
consents, permissions or other rights required for any use of the
Work.
d. Affirmer understands and acknowledges that Creative Commons is not a
party to this document and has no duty or obligation with respect to
this CC0 or use of the Work.
================================================
FILE: README.md
================================================

[](https://github.com/GSTJ)
[](#)
[](https://github.com/GSTJ/PegavaDatingApp/stargazers)
[](https://github.com/GSTJ/PegavaDatingApp/network/members)
[](https://github.com/GSTJ/PegavaDatingApp/graphs/contributors)
---
> [!WARNING]
Want a production-ready version of this example repository? Check out [Pegada](https://github.com/GSTJ/pegada)
---
### Fully responsive design
Posted publicly at the [Figma Community](https://www.figma.com/community/file/1128472053077012222)
---
### **Videos**
_(Themes are according to system preferences)_
https://user-images.githubusercontent.com/50031755/182279278-cc84c43f-35f1-44bc-affd-354a1bb4ec21.mp4
https://user-images.githubusercontent.com/50031755/182279427-2f190d81-1b98-4e3f-b1c3-7ef8489ccf2a.mp4
# :pushpin: Table of Contents
- [Installation](#construction_worker-installation)
- [FAQ](#postbox-faq)
- [Contributing - Found a bug? Missing a specific feature?](#tada-contributing--bug-issues)
- [License](#closed_book-license)
# :construction_worker: Installation
1. **Clone the repository**
Via HTTPS: `git clone https://github.com/GSTJ/PegavaDatingApp.git`
Via SSH: `git clone git@github.com:GSTJ/PegavaDatingApp.git`
2. **Install the necessary packages.**
Go to the main directory and install the necessary packages
```sh
cd PegavaDatingApp/
yarn
```
3. **Start developing.**
Initiate the project in development mode
```sh
expo start
```
# :postbox: FAQ
### 🙋 What is Pegava?
Pegava is supposed to be a dating app. I made it back at the pandemic's beginning but was never released. So I'm making it open source so the community can take a look and maybe use it better. I rapidly refactored it recently to make sure things are up to date after more than a year without updates.
### 📲 Can I try the app?
Yes! Simply download the Expo app and scan the QR code below:
More detailed instructions can be found here: https://exp.host/@gstj/pegava
### 👨🔬 What are the technologies used?
Here are some of them:
- [Expo](https://expo.io/)
- [Node.js](https://nodejs.org/en/)
- [React](https://pt-br.reactjs.org/)
- [React Native](https://reactnative.dev/)
- [TypeScript](https://www.typescriptlang.org/)
- [React Native Reanimated](https://docs.swmansion.com/react-native-reanimated/)
- [React Redux](https://github.com/reduxjs/react-redux)
- [Styled-components](https://github.com/styled-components/styled-components)
# :tada: Contributing + :bug: Issues
They make the open-source community such a fantastic place to learn, inspire, and create. Any contributions you make are much appreciated.
Feel free to **file a new issue** with a respective title and description on the [Pegava](https://github.com/GSTJ/PegavaDatingApp/issues) repository.
If you already found a solution to your problem, **I would love to review your pull request**!
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request
# :closed_book: License
This project was made in 2020, released publicly in 2022.
The project is under the [The Creative Commons CC0 license](https://github.com/GSTJ/PegavaDatingApp/master/LICENSE).
Made with 💖 by [**Gabriel Taveira**](https://github.com/GSTJ) 🚀
================================================
FILE: babel.config.js
================================================
module.exports = function (api) {
api.cache(true);
return {
presets: ["babel-preset-expo"],
plugins: [
"babel-plugin-styled-components",
"react-native-reanimated/plugin",
[
"module-resolver",
{
root: ["./src"],
alias: {
"~graphql": "./src/graphql",
"~components": "./src/components",
"~validations": "./src/validations",
"~constants": "./src/constants",
"~themes": "./src/themes",
"~store": "./src/store",
"~reducers": "./src/store/reducers",
"~views": "./src/views",
"~services": "./src/services",
"~assets": "./src/assets",
"~images": "./src/assets/images",
"~animations": "./src/assets/animations",
"~config": "./src/config",
"~src": "./src",
},
},
],
],
};
};
================================================
FILE: metro.config.js
================================================
const { getDefaultConfig } = require("metro-config");
module.exports = (async () => {
const {
resolver: { sourceExts, assetExts },
} = await getDefaultConfig();
return {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
babelTransformerPath: require.resolve("react-native-svg-transformer"),
},
resolver: {
assetExts: assetExts.filter((ext) => ext !== "svg"),
sourceExts: [...sourceExts, "svg"],
},
};
})();
================================================
FILE: package.json
================================================
{
"main": "src/index.tsx",
"dependencies": {
"@react-native-community/netinfo": "9.3.7",
"@react-navigation/elements": "^1.3.3",
"@react-navigation/material-top-tabs": "^6.2.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/stack": "^6.2.1",
"@reduxjs/toolkit": "^1.8.2",
"@svgr/webpack": "^6.2.1",
"@use-expo/font": "^2.0.0",
"axios": "^0.27.2",
"color": "^4.2.3",
"expo": "^48.0.0",
"expo-blur": "~12.2.2",
"expo-font": "~11.1.1",
"expo-linear-gradient": "~12.1.2",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"expo-updates": "~0.16.4",
"graphql": "^16.5.0",
"immer": "^9.0.2",
"lodash": "^4.17.21",
"lottie-react-native": "5.1.4",
"moment": "^2.29.1",
"react": "18.2.0",
"react-content-loader": "^6.0.3",
"react-dom": "18.2.0",
"react-native": "0.71.3",
"react-native-appearance": "~0.3.3",
"react-native-draggable-grid": "^2.1.3",
"react-native-error-boundary": "^1.1.9",
"react-native-gesture-handler": "~2.9.0",
"react-native-masked-text": "^1.13.0",
"react-native-pager-view": "6.1.2",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0",
"react-native-svg-transformer": "^1.0.0",
"react-native-tab-view": "^3.1.1",
"react-native-uuid": "^2.0.1",
"react-native-web": "~0.18.11",
"react-redux": "^7.2.4",
"reactotron-react-native": "^5.0.0",
"reactotron-redux": "^3.1.3",
"reactotron-redux-saga": "^4.2.3",
"reduce-reducers": "^1.0.4",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"styled-components": "^5.3.5",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/color": "^3.0.1",
"@types/lodash": "^4.14.170",
"@types/react": "~18.0.27",
"@types/react-dom": "~18.0.10",
"@types/react-native": "~0.67.6",
"@types/react-redux": "^7.1.16",
"@types/redux-persist": "^4.3.1",
"@types/styled-components": "^5.1.25",
"@types/styled-components-react-native": "^5.1.3",
"babel-plugin-styled-components": "^2.0.7",
"patch-package": "^6.4.7",
"typescript": "^4.9.4",
"typescript-styled-plugin": "^0.18.2"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"prepare": "patch-package"
},
"private": true
}
================================================
FILE: patches/react-native-gesture-handler+2.2.1.patch
================================================
diff --git a/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestureHandlerCommon.d.ts b/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestureHandlerCommon.d.ts
index 608a10f..086b464 100644
--- a/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestureHandlerCommon.d.ts
+++ b/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestureHandlerCommon.d.ts
@@ -55,6 +55,7 @@ export declare type BaseGestureHandlerProps void;
onGestureEvent?: (event: GestureEvent) => void;
onHandlerStateChange?: (event: HandlerStateChangeEvent) => void;
+ children?: React.ReactNode;
};
export declare function filterConfig(props: Record, validProps: string[], defaults?: Record): {
[x: string]: unknown;
================================================
FILE: pull_request_template.md
================================================
_Note: erase all explanatory text from this template, replacing it with your words/images._
📝 **DESCRIPTION:**
_Briefly explain the solution (this will make it easier for the reviewer to confirm that the code does what it should),_
_for example:_
- PR changed this because of that.
- We are creating this task to address this problem.
🖼 picture: **PRINTS & GIFS:**
_Include the best screenshots or gifs of the feature if applicable._
_(on Macs, `⌘ + ⇧ + 5` is your friend as you can take multiple screenshots/recordings from a fixed window)_
💛 **MY AMAZING PR CONTAINS:**
##### Does this PR change only one thing (And only what is necessary for it)?
- if not, then why? (e.g., native changes require bureaucratic releases to app stores)
- [The Boy Scout Rule](https://medium.com/@biratkirat/step-8-the-boy-scout-rule-robert-c-martin-uncle-bob-9ac839778385) is encouraged,
but always consider impact and scope when following it.
================================================
FILE: src/@types/SceneName.ts
================================================
export enum SceneName {
Authentication = "Authentication",
OneTimeCode = "OneTimeCode",
UserProfile = "UserProfile",
EditProfile = "EditProfile",
Chat = "Chat",
Swipe = "Swipe",
Messages = "Messages",
Profile = "Profile",
Main = "Main",
}
================================================
FILE: src/@types/User.ts
================================================
export interface User {
id: string;
picture: string;
name: string;
lastMessage?: string;
}
================================================
FILE: src/@types/modules.d.ts
================================================
declare module "*.gql" {
import { DocumentNode } from "graphql";
const value: DocumentNode;
export = value;
}
declare module "*.svg" {
import { SvgProps } from "react-native-svg";
const content: React.FC;
export default content;
}
declare module "*.png" {
const value: any;
export = value;
}
================================================
FILE: src/@types/react-navigation.d.ts
================================================
import type { User } from "~src/@types/User";
import type { SceneName } from "~src/@types/SceneName";
export type RootStackParamList = {
[SceneName.Swipe]: undefined;
[SceneName.Messages]: undefined;
[SceneName.Profile]: undefined;
[SceneName.Chat]: { user: User };
[SceneName.Authentication]: undefined;
[SceneName.OneTimeCode]: undefined;
[SceneName.UserProfile]: { user: User };
[SceneName.Main]: NavigatorScreenParams;
[SceneName.EditProfile]: undefined;
};
declare global {
namespace ReactNavigation {
interface RootParamList extends RootStackParamList {}
}
}
================================================
FILE: src/@types/styled-components.d.ts
================================================
// import original module declarations
import "styled-components";
// and extend them!
declare module "styled-components" {
export interface DefaultTheme {
dark: boolean;
// Spacing is not enforced to save time. This is only a 7 day project.
spacing?: {
tiny: number;
small: number;
base: number;
large: number;
extraLarge: number;
};
colors: {
primary: string;
text: string;
background: string;
secondaryBackground: string;
border: string;
};
typography: {
fontFamily: {
light: string;
medium: string;
regular: string;
semiBold: string;
bold: string;
extraBold: string;
};
sizes: {
h1: {
size: number;
lineHeight: number;
};
h2: {
size: number;
lineHeight: number;
};
h3: {
size: number;
lineHeight: number;
};
large: {
size: number;
lineHeight: number;
};
regular: {
size: number;
lineHeight: number;
};
small: {
size: number;
lineHeight: number;
};
};
};
}
}
================================================
FILE: src/assets/animations/disconnected.json
================================================
{"v":"5.2.1","fr":60,"ip":0,"op":600,"w":1080,"h":1080,"nm":"Astronaout ","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Astronaut Outlines 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]},"n":["0p667_1_0p333_0"],"t":0,"s":[-23],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":150,"s":[0],"e":[-23]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":298.498,"s":[-23],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":450.752,"s":[0],"e":[-23]},{"t":599}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[808,390,0],"e":[808,301,0],"to":[0,-14.8333330154419,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[808,301,0],"e":[808,390,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298.498,"s":[808,390,0],"e":[808,301,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":450.752,"s":[808,301,0],"e":[808,390,0],"to":[0,0,0],"ti":[0,-14.8333330154419,0]},{"t":599}],"ix":2},"a":{"a":0,"k":[804,301,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.009,-0.014],[1.1,-5.045],[0,0],[-0.351,-0.002],[0,0],[-0.855,5.668],[-0.005,0.483],[0,0]],"o":[[0,0],[-0.009,0.014],[-2.667,4.961],[-0.455,2.167],[0,0],[0,0],[2.4,-0.014],[0.074,-0.493],[0,0],[-0.066,-6.061]],"v":[[0.631,-9.499],[0.631,-9.499],[0.603,-9.456],[-5.084,5.896],[-5.73,9.485],[-5.178,9.499],[-4.973,9.499],[5.613,3.309],[5.73,1.844],[5.73,1.604]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.447059003045,0.537254961799,0.960784014534,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[775.621,303],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.667,4.961],[0.842,-4.009]],"o":[[-3.102,4.789],[1.1,-5.045]],"v":[[2.844,-7.676],[-2.844,7.676]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.745097979377,0.796078012504,0.984314024682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[773.38,301.22],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.015,0],[0.641,-0.203],[-0.385,-5.125],[-4.461,-0.051],[0,0],[-0.285,0.038],[-0.038,5.346],[0,0],[0.103,0.565]],"o":[[-0.714,0],[-4.396,1.392],[0.358,4.766],[0,0],[0.282,-0.003],[4.336,-0.571],[0,0],[-0.004,-0.599],[-0.828,-4.558]],"v":[[1.599,-10.306],[-0.452,-9.997],[-8.907,1.277],[-0.185,10.306],[-0.021,10.306],[0.829,10.245],[8.931,-1.935],[8.931,-2.097],[8.773,-3.848]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.447059003045,0.537254961799,0.960784014534,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[823.195,293.501],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[18.448,16.143],[-21.267,8.671],[-5.638,-14.862]],"o":[[-9.004,-7.878],[21.268,-8.67],[5.637,14.86]],"v":[[-35.726,23.06],[-14.203,-30.533],[39.093,-14.861]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.67843095368,0.976471007104,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[808.606,306.049],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Astronaut Outlines 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]},"n":["0p667_1_0p333_0"],"t":0,"s":[0],"e":[15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":150,"s":[15],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":298.498,"s":[0],"e":[15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":450.752,"s":[15],"e":[0]},{"t":599}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[216,762,0],"e":[216,682,0],"to":[0,-13.3333330154419,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[216,682,0],"e":[216,762,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298.498,"s":[216,762,0],"e":[216,682,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":450.752,"s":[216,682,0],"e":[216,762,0],"to":[0,0,0],"ti":[0,-13.3333330154419,0]},{"t":599}],"ix":2},"a":{"a":0,"k":[212,682,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.926,0.027],[0,0],[0.959,-0.107],[-5.637,-9.394],[-6.228,0],[-0.885,0.369],[4.442,8.883]],"o":[[0,0],[-0.859,0.004],[-8.008,0.89],[4.826,8.043],[1.047,0],[6.149,-2.563],[-3.848,-7.697]],"v":[[-1.158,-18.121],[-1.338,-18.121],[-4.062,-17.952],[-12.945,3.912],[6.691,18.121],[9.603,17.578],[12.335,-7.703]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.447059003045,0.537254961799,0.960784014534,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[195.461,678.111],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.584,-9.053],[-5.653,-0.045],[0,0],[-3.674,3.421],[0,0],[0.004,0.01],[6.34,6.162],[1.935,2.456]],"o":[[-11.173,2.098],[2.078,5.249],[0,0],[4.027,-0.031],[0,0],[-0.004,-0.01],[-2.888,-5.832],[-1.763,-1.714],[0,0]],"v":[[-5.372,-14.76],[-11.161,6.384],[1.666,14.76],[1.913,14.76],[13.905,9.737],[13.905,9.737],[13.892,9.707],[0.141,-8.411],[-5.373,-14.76]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.447059003045,0.537254961799,0.960784014534,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[260.982,689.988],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.763,-1.714],[-2.888,-5.832]],"o":[[0,0],[1.934,2.456],[6.34,6.162],[-5.773,-13.759]],"v":[[-9.632,-12.234],[-9.632,-12.234],[-4.119,-5.885],[9.632,12.234]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.745097979377,0.796078012504,0.984314024682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[265.243,687.462],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[14.729,30.533],[-30.892,-1.797],[-10.929,-10.623],[15.805,-9.34]],"o":[[-11.134,-23.083],[30.892,1.795],[22.824,22.184],[-15.805,9.34]],"v":[[-61.247,-4.85],[-5.209,-50.828],[49.557,-9.933],[55.857,43.285]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.67843095368,0.976471007104,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[211.566,691.51],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Astronaut Outlines 4","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},"n":"0p667_1_0p333_0","t":0,"s":[556,626,0],"e":[544,540,0],"to":[-2,-14.3333330154419,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[544,540,0],"e":[556,626,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298.498,"s":[556,626,0],"e":[544,540,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":450.752,"s":[544,540,0],"e":[556,626,0],"to":[0,0,0],"ti":[-2,-14.3333330154419,0]},{"t":599}],"ix":2},"a":{"a":0,"k":[540,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[6.511,0],[1.712,-4.138],[0.005,-0.844],[0,0],[-9.237,0],[-1.335,0.364],[-0.014,3.245],[0,0],[1.989,1.59]],"o":[[-5.016,0],[-0.359,0.868],[0,0],[0.039,7.161],[1.558,0],[5.317,-1.448],[0,0],[-0.013,-2.964],[-3.543,-2.832]],"v":[[-4.674,-10.734],[-15.867,-5.062],[-16.401,-2.49],[-16.401,-2.419],[4.792,10.734],[9.166,10.2],[16.401,2.266],[16.401,2.196],[12.818,-5.317]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.823528992896,0.858824008119,0.988234994926,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[188.558,789.089],"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]},"n":["0p667_1_0p333_0"],"t":0,"s":[0],"e":[-29]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":150,"s":[-29],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":298.498,"s":[0],"e":[-29]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":450.752,"s":[-29],"e":[0]},{"t":599}],"ix":6},"o":{"a":0,"k":50,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.675,0],[1.155,-0.542],[0.109,-7.768],[0,0],[-1.38,-1.57],[-1.994,-0.022],[0,0],[-1.581,8.165]],"o":[[-1.463,0],[-5.718,2.687],[0,0],[0.028,1.993],[1.412,1.605],[0,0],[7.586,-0.081],[1.534,-7.916]],"v":[[4.968,-14.513],[0.933,-13.672],[-13.52,6.46],[-13.52,6.755],[-11.505,12.177],[-6.293,14.513],[-6.103,14.513],[13.243,-3.543]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.678431372549,0.976470648074,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[883.13,210.773],"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]},"n":["0p667_1_0p333_0"],"t":0,"s":[-16],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":150,"s":[0],"e":[-16]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":298.498,"s":[-16],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":450.752,"s":[0],"e":[-16]},{"t":599}],"ix":6},"o":{"a":0,"k":50,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.075,-4.384],[-9.736,-3.331],[3.416,10.019]],"o":[[-4.61,6.574],[9.737,3.331],[-3.416,-10.019]],"v":[[-5.723,-12.299],[-3.673,16.313],[9.993,-9.625]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.67843095368,0.976471007104,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[882.786,361.227],"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]},"n":["0p667_1_0p333_0"],"t":0,"s":[-24],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":150,"s":[0],"e":[-24]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":298.498,"s":[-24],"e":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":450.752,"s":[0],"e":[-24]},{"t":599}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Astronaut Outlines 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[544,540,0],"ix":2},"a":{"a":0,"k":[540,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.822,-1.665],[0,0],[-0.731,-0.105],[0,0],[1.329,-1.296],[0,0],[-0.125,-0.727],[0,0],[1.643,0.864],[0,0],[0.654,-0.343],[0,0],[-0.314,1.83],[0,0],[0.528,0.515],[0,0],[-1.837,0.268],[0,0],[-0.326,0.661],[0,0]],"o":[[0,0],[0.328,0.661],[0,0],[1.838,0.268],[0,0],[-0.527,0.515],[0,0],[0.314,1.83],[0,0],[-0.652,-0.343],[0,0],[-1.643,0.864],[0,0],[0.125,-0.727],[0,0],[-1.329,-1.296],[0,0],[0.73,-0.105],[0,0],[0.822,-1.665]],"v":[[2.009,-12.448],[4.657,-7.081],[6.345,-5.855],[12.268,-4.995],[13.51,-1.173],[9.223,3.004],[8.579,4.988],[9.591,10.887],[6.341,13.249],[1.042,10.463],[-1.043,10.463],[-6.341,13.249],[-9.591,10.887],[-8.579,4.988],[-9.223,3.004],[-13.51,-1.173],[-12.268,-4.995],[-6.345,-5.855],[-4.658,-7.081],[-2.009,-12.448]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078012504,0.760783954695,0.447059003045,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[315.328,849.447],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[100,100],"e":[180,180]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":150,"s":[180,180],"e":[100,100]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":298,"s":[100,100],"e":[180,180]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":451,"s":[180,180],"e":[100,100]},{"t":599}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,-1.987],[0,0],[-0.87,-0.127],[0,0],[1.586,-1.547],[0,0],[-0.149,-0.868],[0,0],[1.962,1.031],[0,0],[0.778,-0.409],[0,0],[-0.374,2.184],[0,0],[0.63,0.614],[0,0],[-2.192,0.319],[0,0],[-0.389,0.789],[0,0]],"o":[[0,0],[0.39,0.789],[0,0],[2.192,0.319],[0,0],[-0.631,0.614],[0,0],[0.375,2.184],[0,0],[-0.778,-0.409],[0,0],[-1.961,1.031],[0,0],[0.148,-0.868],[0,0],[-1.586,-1.547],[0,0],[0.871,-0.127],[0,0],[0.98,-1.987]],"v":[[2.397,-14.854],[5.559,-8.448],[7.571,-6.986],[14.641,-5.959],[16.122,-1.399],[11.007,3.587],[10.238,5.953],[11.445,12.993],[7.566,15.811],[1.244,12.487],[-1.243,12.487],[-7.566,15.811],[-11.445,12.993],[-10.237,5.953],[-11.006,3.587],[-16.122,-1.399],[-14.64,-5.959],[-7.571,-6.986],[-5.559,-8.448],[-2.396,-14.854]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078012504,0.760783954695,0.447059003045,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[653.259,174.561],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":0,"s":[100,100],"e":[180,180]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":150,"s":[180,180],"e":[100,100]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":298,"s":[100,100],"e":[180,180]},{"i":{"x":[0.833,0.833],"y":[0.833,0.833]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":451,"s":[180,180],"e":[100,100]},{"t":599}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Astronaut Outlines","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]},"n":["0p667_1_0p333_0"],"t":0,"s":[7],"e":[20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":150,"s":[20],"e":[7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":298.498,"s":[7],"e":[20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":450.752,"s":[20],"e":[7]},{"t":599}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[554,620,0],"e":[544,540,0],"to":[-1.66666662693024,-13.3333330154419,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[544,540,0],"e":[554,620,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298.498,"s":[554,620,0],"e":[544,540,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":450.752,"s":[544,540,0],"e":[554,620,0],"to":[0,0,0],"ti":[-1.66666662693024,-13.3333330154419,0]},{"t":599}],"ix":2},"a":{"a":0,"k":[540,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.004,0.012],[10.936,21.53]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-9.4,-25.14],[-0.01,-0.019]],"v":[[-9.094,-39.052],[-9.094,-39.052],[-21.842,-24.539],[-21.842,-24.426],[-21.759,-23.221],[-0.493,37.761],[4.528,39.052],[21.842,34.479],[21.842,34.479],[21.828,34.439],[-9.079,-39.024]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.003,0.012],[12.874,18.707]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-7.462,-34.086],[-0.012,-0.018]],"v":[[-5.005,-5.157],[-5.005,-5.157],[-21.17,11.664],[-21.17,11.777],[-21.087,12.982],[-2.147,75.61],[2.874,76.901],[20.188,72.327],[20.188,72.327],[20.173,72.288],[-4.989,-5.129]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.003,0.012],[12.874,18.707]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-7.462,-34.086],[-0.012,-0.018]],"v":[[-5.005,-5.157],[-5.005,-5.157],[-21.17,11.664],[-21.17,11.777],[-21.087,12.982],[-2.147,75.61],[2.874,76.901],[20.188,72.327],[20.188,72.327],[20.173,72.288],[-4.989,-5.129]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.004,0.012],[10.936,21.53]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-9.4,-25.14],[-0.01,-0.019]],"v":[[-9.094,-39.052],[-9.094,-39.052],[-21.842,-24.539],[-21.842,-24.426],[-21.759,-23.221],[-0.493,37.761],[4.528,39.052],[21.842,34.479],[21.842,34.479],[21.828,34.439],[-9.079,-39.024]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298,"s":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.004,0.012],[10.936,21.53]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-9.4,-25.14],[-0.01,-0.019]],"v":[[-9.094,-39.052],[-9.094,-39.052],[-21.842,-24.539],[-21.842,-24.426],[-21.759,-23.221],[-0.493,37.761],[4.528,39.052],[21.842,34.479],[21.842,34.479],[21.828,34.439],[-9.079,-39.024]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.003,0.012],[12.874,18.707]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-7.462,-34.086],[-0.012,-0.018]],"v":[[-5.005,-5.157],[-5.005,-5.157],[-21.17,11.664],[-21.17,11.777],[-21.087,12.982],[-2.147,75.61],[2.874,76.901],[20.188,72.327],[20.188,72.327],[20.173,72.288],[-4.989,-5.129]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":451,"s":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.003,0.012],[12.874,18.707]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-7.462,-34.086],[-0.012,-0.018]],"v":[[-5.005,-5.157],[-5.005,-5.157],[-21.17,11.664],[-21.17,11.777],[-21.087,12.982],[-2.147,75.61],[2.874,76.901],[20.188,72.327],[20.188,72.327],[20.173,72.288],[-4.989,-5.129]],"c":true}],"e":[{"i":[[0,0],[0,0],[0.054,-8.965],[0,0],[-0.054,-0.408],[-5.637,-4.227],[-2.011,0],[0,0],[0,0],[0.004,0.012],[10.936,21.53]],"o":[[0,0],[0,0],[0,0],[0.002,0.395],[1.281,9.737],[1.238,0.928],[7.146,0],[0,0],[-0.004,-0.012],[-9.4,-25.14],[-0.01,-0.019]],"v":[[-9.094,-39.052],[-9.094,-39.052],[-21.842,-24.539],[-21.842,-24.426],[-21.759,-23.221],[-0.493,37.761],[4.528,39.052],[21.842,34.479],[21.842,34.479],[21.828,34.439],[-9.079,-39.024]],"c":true}]},{"t":599}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.780391977348,0.854902020623,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[750.211,613.173],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.519,0.948],[-8.688,-31.94]],"o":[[10.936,21.53],[-16.809,-47.578]],"v":[[-11.364,-2.836],[13.799,74.58]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.925490016563,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[756.586,610.881],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"ix":2,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-3.416,-16.227],[-7.002,-6.662],[-4.754,0],[-8.51,10.561],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[3.417,16.229],[2.226,2.117],[10.205,0],[-0.006,-0.048],[-3.902,-30.448]],"v":[[17.287,-50.164],[17.285,-50.164],[-15.707,-30.591],[-27.323,-1.21],[-15.025,46.961],[-4.094,50.164],[28.531,34.598],[28.512,34.451]],"c":true}],"e":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-7.232,-14.922],[-7.002,-6.662],[-4.717,0.594],[-11.635,5.448],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[6.694,13.811],[2.226,2.117],[11.381,-1.433],[-0.006,-0.048],[-3.902,-30.448]],"v":[[-16.242,-32.64],[-16.158,-32.405],[-47.517,-19.678],[-50.879,7.895],[-27.156,50.179],[-16.279,51.407],[11.232,42.624],[11.427,41.6]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-7.232,-14.922],[-7.002,-6.662],[-4.717,0.594],[-11.635,5.448],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[6.694,13.811],[2.226,2.117],[11.381,-1.433],[-0.006,-0.048],[-3.902,-30.448]],"v":[[-16.242,-32.64],[-16.158,-32.405],[-47.517,-19.678],[-50.879,7.895],[-27.156,50.179],[-16.279,51.407],[11.232,42.624],[11.427,41.6]],"c":true}],"e":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-3.416,-16.227],[-7.002,-6.662],[-4.754,0],[-8.51,10.561],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[3.417,16.229],[2.226,2.117],[10.205,0],[-0.006,-0.048],[-3.902,-30.448]],"v":[[17.287,-50.164],[17.285,-50.164],[-15.707,-30.591],[-27.323,-1.21],[-15.025,46.961],[-4.094,50.164],[28.531,34.598],[28.512,34.451]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298,"s":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-3.416,-16.227],[-7.002,-6.662],[-4.754,0],[-8.51,10.561],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[3.417,16.229],[2.226,2.117],[10.205,0],[-0.006,-0.048],[-3.902,-30.448]],"v":[[17.287,-50.164],[17.285,-50.164],[-15.707,-30.591],[-27.323,-1.21],[-15.025,46.961],[-4.094,50.164],[28.531,34.598],[28.512,34.451]],"c":true}],"e":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-7.232,-14.922],[-7.002,-6.662],[-4.717,0.594],[-11.635,5.448],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[6.694,13.811],[2.226,2.117],[11.381,-1.433],[-0.006,-0.048],[-3.902,-30.448]],"v":[[-16.242,-32.64],[-16.158,-32.405],[-47.518,-19.678],[-50.879,7.895],[-27.156,50.179],[-16.279,51.407],[11.232,42.624],[11.427,41.6]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":451,"s":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-7.232,-14.922],[-7.002,-6.662],[-4.717,0.594],[-11.635,5.448],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[6.694,13.811],[2.226,2.117],[11.381,-1.433],[-0.006,-0.048],[-3.902,-30.448]],"v":[[-16.242,-32.64],[-16.158,-32.405],[-47.518,-19.678],[-50.879,7.895],[-27.156,50.179],[-16.279,51.407],[11.232,42.624],[11.427,41.6]],"c":true}],"e":[{"i":[[0.037,0.277],[0,0],[18.859,-7.252],[-3.416,-16.227],[-7.002,-6.662],[-4.754,0],[-8.51,10.561],[0.006,0.048]],"o":[[0,0],[-0.15,0.131],[-11.216,4.313],[3.417,16.229],[2.226,2.117],[10.205,0],[-0.006,-0.048],[-3.902,-30.448]],"v":[[17.287,-50.164],[17.285,-50.164],[-15.707,-30.591],[-27.323,-1.21],[-15.025,46.961],[-4.094,50.164],[28.531,34.598],[28.512,34.451]],"c":true}]},{"t":599}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.780391977348,0.854902020623,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[656.861,780.101],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.405,-129.651],[6.405,-129.651],[-52.015,-83.188],[-81.224,-59.957],[-15.118,129.651],[81.224,68.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.470587995941,0.701960963829,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[575.228,507.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[14.605,-11.616],[-14.605,11.616],[-14.604,11.616]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.737254961799,0.894118006089,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[508.608,435.618],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.125,0],[-3.076,-5.28],[-17.367,-5.319],[0,0],[0,0],[0,0]],"o":[[-5.125,0],[3.074,5.281],[0,0],[5.629,-10.714],[0,0],[0,0]],"v":[[-8.638,-26.637],[-24.353,-1.342],[11.91,26.637],[11.914,26.637],[24.8,-1.342],[24.8,-1.342]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.780391977348,0.854902020623,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[443.282,553.899],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.241,-0.001],[8.637,-1.904],[0.059,-8.513],[0,0],[-0.089,-0.405],[-13.241,0],[-8.637,1.904],[1.919,8.707]],"o":[[-7.16,0],[-23.389,5.155],[0,0],[0.003,0.416],[1.245,5.651],[7.16,0],[24.609,-5.424],[-1.245,-5.651]],"v":[[20.58,-18.576],[-3.474,-15.763],[-44.698,8.506],[-44.698,8.591],[-44.56,9.822],[-20.58,18.576],[3.475,15.764],[44.56,-9.822]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.207843002619,0.309803981407,0.568626972273,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"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},"n":"0p667_1_0p333_0","t":0,"s":[408.557,256.062],"e":[408.557,240.062],"to":[0,-2.66666674613953],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[408.557,240.062],"e":[408.557,256.062],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298,"s":[408.557,256.062],"e":[408.557,240.062],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":451,"s":[408.557,240.062],"e":[408.557,256.062],"to":[0,0],"ti":[0,-2.66666674613953]},{"t":599}],"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]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":0,"s":[100,100],"e":[80,80]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":150,"s":[80,80],"e":[100,100]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":298,"s":[100,100],"e":[80,80]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":451,"s":[80,80],"e":[100,100]},{"t":599}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.168,-1.076],[3.203,-6.021],[3.203,-7.686],[-14.093,-4.996],[-3.715,7.559],[5.509,13.836]],"o":[[0,0],[-3.203,6.021],[-3.203,7.687],[14.093,4.997],[3.716,-7.558],[-5.509,-13.836]],"v":[[-13.596,-42.933],[-12.043,-21.456],[-22.804,-2.752],[-7.174,39.013],[22.292,23.383],[18.449,-17.869]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.925490016563,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[653.053,394.6],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-32.541,2.563],[-7.471,7.136],[1.922,10.506],[-9.096,4.612],[-4.74,0.641],[-15.503,-0.257],[-2.051,-10.249],[12.555,-20.498],[39.918,-7.943],[13.067,25.75],[-0.113,13.376]],"o":[[24.69,-1.944],[3.814,-3.642],[-1.922,-10.506],[4.997,13.452],[4.74,-0.64],[15.501,0.257],[2.05,10.249],[-12.555,20.499],[-39.918,7.942],[-4.409,-8.69],[0,0]],"v":[[-45.569,5.509],[-0.839,-19.69],[0.297,-37.025],[14.133,-62.904],[30.019,-47.531],[55.13,-76.227],[85.109,-45.223],[64.61,14.733],[-5.544,68.542],[-81.184,30.364],[-87.046,-3.715]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.925490016563,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[388.653,569.07],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-152.394,-11.708],[-77.955,179.845],[27.355,177.336],[123.697,116.354],[152.394,29.237],[82.7,-179.845],[48.876,-81.966],[-38.752,-12.272]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.592156982422,0.788234994926,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[532.755,459.506],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[44.73,-20.755],[-7.471,7.136],[1.922,10.506],[-9.096,4.612],[-0.817,-1.585]],"o":[[0,0],[-44.592,10.78],[24.69,-1.944],[3.814,-3.642],[-1.922,-10.506],[0.771,2.076],[0,0]],"v":[[24.826,-39.469],[24.823,-39.469],[-31.044,39.469],[13.686,14.269],[14.822,-3.066],[28.658,-28.945],[31.044,-23.468]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.780391977348,0.854902020623,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[374.128,535.111],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-74.544,-17.801],[11.53,-46.121],[44.584,-0.256],[-0.245,56.883]],"o":[[34.334,8.199],[-11.531,46.12],[-44.583,0.256],[0.236,-54.693]],"v":[[41.503,-81.164],[86.6,21.328],[-9.23,98.708],[-97.885,11.59]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.109803996367,0.192156997381,0.466666995778,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[400.486,295.486],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[93.779,50.221],[49.965,-62.006],[-21.01,-29.978],[-80.711,45.095]],"o":[[-38.646,-20.696],[-49.965,62.008],[22.018,31.416],[80.712,-45.096]],"v":[[62.904,-121.196],[-106.719,-86.862],[-110.819,69.437],[67.515,103.772]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.925490016563,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[385.747,297.597],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[28.226,-5.617],[2.342,-0.28],[0,0],[-3.694,0],[-28.834,8.719]],"o":[[-12.039,15.159],[-2.473,0.492],[0,0],[0,0],[11.622,0],[0,0]],"v":[[25.454,-22.495],[-31.919,12.609],[-39.14,13.764],[-34.667,22.389],[-28.887,22.495],[39.14,12.724]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.780391977348,0.854902020623,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[415.029,625.003],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"ix":14,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[-38.948,-24.598],[-19.473,-16.11],[-19.474,-20.498],[-25.623,2.305],[-0.256,11.53],[12.043,6.149],[0.769,7.175],[5.637,29.723],[56.555,20.791],[0,0]],"o":[[0,0],[38.946,24.599],[19.472,16.111],[19.474,20.498],[25.623,-2.307],[0.257,-11.53],[-12.042,-6.15],[-0.769,-7.174],[-5.637,-29.722],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[28.569,31.547],[63.416,145.537],[135.929,176.285],[182.306,150.15],[169.494,122.477],[139.772,104.029],[119.786,-42.021],[13.708,-133.751],[-122.093,-159.374]],"c":true}],"e":[{"i":[[0,0],[-38.948,-24.598],[-21.029,-14.019],[-21.482,-18.382],[-25.249,4.935],[0.933,11.495],[12.612,4.876],[1.505,7.057],[15.655,25.887],[26.871,23.3],[0,0]],"o":[[0,0],[38.946,24.598],[21.029,14.019],[21.482,18.382],[25.249,-4.935],[-0.933,-11.495],[-12.612,-4.876],[-1.505,-7.056],[-19.951,-32.991],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[-19.352,57.972],[59.272,166.564],[134.567,189.676],[178.004,158.9],[162.409,132.695],[130.944,117.408],[81.584,-15.458],[13.708,-133.751],[-122.093,-159.374]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[{"i":[[0,0],[-38.948,-24.598],[-21.029,-14.019],[-21.482,-18.382],[-25.249,4.935],[0.933,11.495],[12.612,4.876],[1.505,7.057],[15.655,25.887],[26.871,23.3],[0,0]],"o":[[0,0],[38.946,24.598],[21.029,14.019],[21.482,18.382],[25.249,-4.935],[-0.933,-11.495],[-12.612,-4.876],[-1.505,-7.056],[-19.951,-32.991],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[-19.352,57.972],[59.272,166.564],[134.567,189.676],[178.004,158.9],[162.409,132.695],[130.944,117.408],[81.584,-15.458],[13.708,-133.751],[-122.093,-159.374]],"c":true}],"e":[{"i":[[0,0],[-38.948,-24.598],[-19.473,-16.11],[-19.474,-20.498],[-25.623,2.305],[-0.256,11.53],[12.043,6.149],[0.769,7.175],[5.637,29.723],[56.555,20.791],[0,0]],"o":[[0,0],[38.946,24.599],[19.472,16.111],[19.474,20.498],[25.623,-2.307],[0.257,-11.53],[-12.042,-6.15],[-0.769,-7.174],[-5.637,-29.722],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[28.569,31.547],[63.416,145.537],[135.929,176.285],[182.306,150.15],[169.494,122.477],[139.772,104.029],[119.786,-42.021],[13.708,-133.751],[-122.093,-159.374]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298,"s":[{"i":[[0,0],[-38.948,-24.598],[-19.473,-16.11],[-19.474,-20.498],[-25.623,2.305],[-0.256,11.53],[12.043,6.149],[0.769,7.175],[5.637,29.723],[56.555,20.791],[0,0]],"o":[[0,0],[38.946,24.599],[19.472,16.111],[19.474,20.498],[25.623,-2.307],[0.257,-11.53],[-12.042,-6.15],[-0.769,-7.174],[-5.637,-29.722],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[28.569,31.547],[63.416,145.537],[135.929,176.285],[182.306,150.15],[169.494,122.477],[139.772,104.029],[119.786,-42.021],[13.708,-133.751],[-122.093,-159.374]],"c":true}],"e":[{"i":[[0,0],[-38.948,-24.598],[-21.029,-14.019],[-21.482,-18.382],[-25.249,4.935],[0.933,11.495],[12.612,4.876],[1.505,7.057],[15.655,25.887],[26.871,23.3],[0,0]],"o":[[0,0],[38.946,24.598],[21.029,14.019],[21.482,18.382],[25.249,-4.935],[-0.933,-11.495],[-12.612,-4.876],[-1.505,-7.056],[-19.951,-32.991],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[-19.352,57.972],[59.272,166.564],[134.567,189.676],[178.004,158.9],[162.409,132.695],[130.944,117.408],[81.584,-15.458],[13.708,-133.751],[-122.093,-159.374]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":451,"s":[{"i":[[0,0],[-38.948,-24.598],[-21.029,-14.019],[-21.482,-18.382],[-25.249,4.935],[0.933,11.495],[12.612,4.876],[1.505,7.057],[15.655,25.887],[26.871,23.3],[0,0]],"o":[[0,0],[38.946,24.598],[21.029,14.019],[21.482,18.382],[25.249,-4.935],[-0.933,-11.495],[-12.612,-4.876],[-1.505,-7.056],[-19.951,-32.991],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[-19.352,57.972],[59.272,166.564],[134.567,189.676],[178.004,158.9],[162.409,132.695],[130.944,117.408],[81.584,-15.458],[13.708,-133.751],[-122.093,-159.374]],"c":true}],"e":[{"i":[[0,0],[-38.948,-24.598],[-19.473,-16.11],[-19.474,-20.498],[-25.623,2.305],[-0.256,11.53],[12.043,6.149],[0.769,7.175],[5.637,29.723],[56.555,20.791],[0,0]],"o":[[0,0],[38.946,24.599],[19.472,16.111],[19.474,20.498],[25.623,-2.307],[0.257,-11.53],[-12.042,-6.15],[-0.769,-7.174],[-5.637,-29.722],[-53.552,-44.84],[0,0]],"v":[[-182.563,-121.965],[-100.569,-7.175],[28.569,31.547],[63.416,145.537],[135.929,176.285],[182.306,150.15],[169.494,122.477],[139.772,104.029],[119.786,-42.021],[13.708,-133.751],[-122.093,-159.374]],"c":true}]},{"t":599}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.925490016563,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[550.411,745.226],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"ix":15,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-7.76,-11.507],[-13.043,-12.897],[-0.851,-0.685],[-3.275,-1.007],[-9.421,8.05],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.748,0.813],[4.806,1.228],[23.961,35.532],[0.825,0.816],[2.972,2.391],[10.091,3.103],[0,-0.001],[-32.449,-13.19],[-10.824,-14.583]],"v":[[-41.792,-96.176],[-99.031,-59.946],[-72.602,-44.969],[-39.414,-41.246],[-20.106,-20.539],[38.578,75.661],[41.521,80.376],[53.296,93.659],[81.262,80.669],[81.262,80.668],[17.24,-70.841]],"c":true}],"e":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-5.794,-12.612],[-9.32,-27.051],[-0.082,-1.089],[-3.275,-1.007],[-7.904,5.843],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.177,4.221],[4.806,1.228],[16.465,35.842],[0.378,1.097],[0.307,4.058],[10.091,3.103],[0,-0.001],[-14.812,-24.099],[-10.825,-14.583]],"v":[[-68.7,-79.466],[-123.418,-43.62],[-75.715,-25.745],[-42.908,-12.838],[-21.804,15.729],[6.718,89.065],[13.958,107.952],[21.755,124.714],[41.524,116.948],[48.76,101.011],[-13.979,-44.047]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-5.794,-12.612],[-9.32,-27.051],[-0.082,-1.089],[-3.275,-1.007],[-7.904,5.843],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.177,4.221],[4.806,1.228],[16.465,35.842],[0.378,1.097],[0.307,4.058],[10.091,3.103],[0,-0.001],[-14.812,-24.099],[-10.825,-14.583]],"v":[[-68.7,-79.466],[-123.418,-43.62],[-75.715,-25.745],[-42.908,-12.838],[-21.804,15.729],[6.718,89.065],[13.958,107.952],[21.755,124.714],[41.524,116.948],[48.76,101.011],[-13.979,-44.047]],"c":true}],"e":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-7.76,-11.507],[-13.043,-12.897],[-0.851,-0.685],[-3.275,-1.007],[-9.421,8.05],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.748,0.813],[4.806,1.228],[23.961,35.532],[0.825,0.816],[2.972,2.391],[10.091,3.103],[0,-0.001],[-32.449,-13.19],[-10.824,-14.583]],"v":[[-41.792,-96.176],[-99.031,-59.946],[-72.602,-44.969],[-39.414,-41.246],[-20.106,-20.539],[38.578,75.661],[41.521,80.376],[53.296,93.659],[81.262,80.669],[81.262,80.668],[17.24,-70.841]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298,"s":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-7.76,-11.507],[-13.043,-12.897],[-0.851,-0.685],[-3.275,-1.007],[-9.421,8.05],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.748,0.813],[4.806,1.228],[23.961,35.532],[0.825,0.816],[2.972,2.391],[10.091,3.103],[0,-0.001],[-32.449,-13.19],[-10.824,-14.583]],"v":[[-41.792,-96.176],[-99.031,-59.946],[-72.602,-44.969],[-39.414,-41.246],[-20.106,-20.539],[38.578,75.661],[41.521,80.376],[53.296,93.659],[81.262,80.669],[81.262,80.668],[17.24,-70.841]],"c":true}],"e":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-5.794,-12.612],[-9.32,-27.051],[-0.082,-1.089],[-3.275,-1.007],[-7.904,5.843],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.177,4.221],[4.806,1.228],[16.465,35.842],[0.378,1.097],[0.307,4.058],[10.091,3.103],[0,-0.001],[-14.812,-24.099],[-10.825,-14.583]],"v":[[-68.7,-79.466],[-123.418,-43.62],[-75.715,-25.745],[-42.908,-12.838],[-21.804,15.729],[6.719,89.065],[13.958,107.952],[21.755,124.714],[41.524,116.948],[48.76,101.011],[-13.979,-44.047]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":451,"s":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-5.794,-12.612],[-9.32,-27.051],[-0.082,-1.089],[-3.275,-1.007],[-7.904,5.843],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.177,4.221],[4.806,1.228],[16.465,35.842],[0.378,1.097],[0.307,4.058],[10.091,3.103],[0,-0.001],[-14.812,-24.099],[-10.825,-14.583]],"v":[[-68.7,-79.466],[-123.418,-43.62],[-75.715,-25.745],[-42.908,-12.838],[-21.804,15.729],[6.719,89.065],[13.958,107.952],[21.755,124.714],[41.524,116.948],[48.76,101.011],[-13.979,-44.047]],"c":true}],"e":[{"i":[[17.869,3.257],[0,0],[-8.209,-5.383],[-6.75,-1.725],[-7.76,-11.507],[-13.043,-12.897],[-0.851,-0.685],[-3.275,-1.007],[-9.421,8.05],[0,0],[15.73,21.192]],"o":[[0,0],[9.359,4.54],[13.748,0.813],[4.806,1.228],[23.961,35.532],[0.825,0.816],[2.972,2.391],[10.091,3.103],[0,-0.001],[-32.449,-13.19],[-10.824,-14.583]],"v":[[-41.792,-96.176],[-99.031,-59.946],[-72.602,-44.969],[-39.414,-41.246],[-20.106,-20.539],[38.578,75.661],[41.521,80.376],[53.296,93.659],[81.262,80.669],[81.262,80.668],[17.24,-70.841]],"c":true}]},{"t":599}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.831372967888,0.890196018593,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[684.72,680.598],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"fl","c":{"a":0,"k":[0.941175991881,0.960784014534,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[697.934,706.201],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":1,"cix":2,"ix":17,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[-19.644,-5.019],[-21.522,-11.244],[-23.744,13.855],[-0.683,7.027],[8.712,5.66],[13.495,-8.634],[25.793,10.842],[0,0]],"o":[[0,0],[19.645,5.02],[21.523,11.243],[23.744,-13.853],[0.684,-7.027],[-8.711,-5.66],[-19.814,-54.011],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-56.98,-11.195],[36.203,122.779],[99.747,101.495],[145.869,63.748],[127.761,23.028],[80.274,25.6],[6.437,-117.989],[-97.718,-134.022]],"c":true}],"e":[{"i":[[0,0],[-18.476,-8.349],[-6.849,-23.297],[-26.455,-7.474],[-5.533,4.386],[5.516,22.512],[15.583,3.72],[25.793,10.842],[0,0]],"o":[[0,0],[21.684,9.798],[6.849,23.297],[26.454,7.474],[5.533,-4.386],[-2.472,-10.09],[-27.812,-123.548],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-61.585,17.085],[-2.09,144.871],[57.342,175.836],[116.529,182.83],[133.269,141.529],[86.236,113.579],[8.665,-94.324],[-97.718,-134.022]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":150,"s":[{"i":[[0,0],[-18.476,-8.349],[-6.849,-23.297],[-26.455,-7.474],[-5.533,4.386],[5.516,22.512],[15.583,3.72],[25.793,10.842],[0,0]],"o":[[0,0],[21.684,9.798],[6.849,23.297],[26.454,7.474],[5.533,-4.386],[-2.472,-10.09],[-27.812,-123.548],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-61.585,17.085],[-2.09,144.871],[57.342,175.836],[116.529,182.83],[133.269,141.529],[86.236,113.579],[8.665,-94.324],[-97.718,-134.022]],"c":true}],"e":[{"i":[[0,0],[-19.644,-5.019],[-21.522,-11.244],[-23.744,13.855],[-0.683,7.027],[8.712,5.66],[13.495,-8.634],[25.793,10.842],[0,0]],"o":[[0,0],[19.645,5.02],[21.523,11.243],[23.744,-13.853],[0.684,-7.027],[-8.711,-5.66],[-19.814,-54.011],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-56.98,-11.195],[36.203,122.779],[99.747,101.495],[145.869,63.748],[127.761,23.028],[80.274,25.6],[6.437,-117.989],[-97.718,-134.022]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":298,"s":[{"i":[[0,0],[-19.644,-5.019],[-21.522,-11.244],[-23.744,13.855],[-0.683,7.027],[8.712,5.66],[13.495,-8.634],[25.793,10.842],[0,0]],"o":[[0,0],[19.645,5.02],[21.523,11.243],[23.744,-13.853],[0.684,-7.027],[-8.711,-5.66],[-19.814,-54.011],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-56.98,-11.195],[36.203,122.779],[99.747,101.495],[145.869,63.748],[127.761,23.028],[80.274,25.6],[6.437,-117.989],[-97.718,-134.022]],"c":true}],"e":[{"i":[[0,0],[-18.476,-8.349],[-6.849,-23.297],[-26.455,-7.474],[-5.533,4.386],[5.516,22.512],[15.583,3.72],[25.793,10.842],[0,0]],"o":[[0,0],[21.684,9.798],[6.849,23.297],[26.454,7.474],[5.533,-4.386],[-2.472,-10.09],[-27.812,-123.548],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-61.585,17.085],[-2.09,144.871],[57.342,175.836],[116.529,182.83],[133.269,141.529],[86.236,113.579],[8.665,-94.324],[-97.718,-134.022]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":451,"s":[{"i":[[0,0],[-18.476,-8.349],[-6.849,-23.297],[-26.455,-7.474],[-5.533,4.386],[5.516,22.512],[15.583,3.72],[25.793,10.842],[0,0]],"o":[[0,0],[21.684,9.798],[6.849,23.297],[26.454,7.474],[5.533,-4.386],[-2.472,-10.09],[-27.812,-123.548],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-61.585,17.085],[-2.09,144.871],[57.342,175.836],[116.529,182.83],[133.269,141.529],[86.236,113.579],[8.665,-94.324],[-97.718,-134.022]],"c":true}],"e":[{"i":[[0,0],[-19.644,-5.019],[-21.522,-11.244],[-23.744,13.855],[-0.683,7.027],[8.712,5.66],[13.495,-8.634],[25.793,10.842],[0,0]],"o":[[0,0],[19.645,5.02],[21.523,11.243],[23.744,-13.853],[0.684,-7.027],[-8.711,-5.66],[-19.814,-54.011],[-25.794,-10.843],[0,0]],"v":[[-146.552,-16.665],[-56.98,-11.195],[36.203,122.779],[99.747,101.495],[145.869,63.748],[127.761,23.028],[80.274,25.6],[6.437,-117.989],[-97.718,-134.022]],"c":true}]},{"t":599}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.925490016563,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[702.286,650.547],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[27.848,-15.56],[21.527,0],[13.254,4.332],[0,0],[-28.987,-0.019],[0,0],[-25.101,9.698]],"o":[[0,0],[-9.413,28.956],[-23.616,13.195],[-15.384,0],[0,0],[0,0],[0,0],[19.671,-0.011],[62.264,-24.056]],"v":[[95.554,-52.209],[83.643,-48.956],[27.138,21.178],[-41.185,39.596],[-84.369,32.595],[-95.554,45.903],[-46.968,52.209],[-46.719,52.209],[22.014,39.596]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.780391977348,0.854902020623,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[426.125,380.191],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[7.687,-28.441],[-1.281,-19.058],[0,0],[0,0],[12.266,12.563],[45.865,-18.448]],"o":[[0,0],[-7.687,28.441],[37.377,34.591],[0,0],[0,0],[-12.267,-12.562],[-26.904,38.178]],"v":[[-123.053,-45.596],[-155.803,8.584],[-163.201,106.975],[22.019,112.612],[164.482,-54.961],[128.065,-113.373],[30.218,-123.118]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882353001015,0.925490016563,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[464.81,458.38],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[4.996,-32.669],[0,0],[0,0],[0,0]],"o":[[0,0],[-4.997,32.669],[0,0],[0,0],[0,0]],"v":[[-113.753,-44.2],[-152.775,1.921],[-80.52,130.292],[157.772,1.921],[82.44,-130.292]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.780391977348,0.862744978362,0.976471007104,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[402.829,426.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"ix":21,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0}],"markers":[]}
================================================
FILE: src/assets/animations/empty.json
================================================
{"v":"4.7.0","fr":25,"ip":0,"op":50,"w":120,"h":120,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"ruoi","ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.967]},"o":{"x":[0.167],"y":[0.033]},"n":["0p833_0p967_0p167_0p033"],"t":35,"s":[100],"e":[0]},{"t":49}]},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0,"y":0},"n":"0p833_0p833_0_0","t":0,"s":[57.361,61.016,0],"e":[57.699,41.796,0],"to":[-4.67500305175781,-4.12800598144531,0],"ti":[-13.9099960327148,5.27300262451172,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":10.219,"s":[57.699,41.796,0],"e":[79.084,33.982,0],"to":[12.8159942626953,-4.85800170898438,0],"ti":[-4.54498291015625,3.73400115966797,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19.445,"s":[79.084,33.982,0],"e":[59.691,9.121,0],"to":[6.61601257324219,-5.43799591064453,0],"ti":[20.0290069580078,1.20700073242188,0]},{"t":35}]},"a":{"a":0,"k":[60.531,10.945,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.994,0],[0,-0.994],[0.995,0],[0,0.994]],"o":[[0.995,0],[0,0.994],[-0.994,0],[0,-0.994]],"v":[[-0.001,-1.801],[1.801,-0.001],[-0.001,1.801],[-1.801,-0.001]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.529,0.529,0.529,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[62.4,13.144],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.422,0],[0,-1.422],[1.421,0],[0,1.422]],"o":[[1.421,0],[0,1.422],[-1.422,0],[0,-1.422]],"v":[[0.001,-2.574],[2.574,0],[0.001,2.574],[-2.574,0]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.529,0.529,0.529,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.7},"lc":1,"lj":1,"ml":10,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[64.145,9.606],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":3,"cix":2,"ix":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.996,0],[0,-1.996],[1.996,0],[0,1.996]],"o":[[1.996,0],[0,1.996],[-1.996,0],[0,-1.996]],"v":[[0,-3.614],[3.614,0],[0,3.614],[-3.614,0]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.529,0.529,0.529,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0.7},"lc":1,"lj":1,"ml":10,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"fl","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[57.957,10.552],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":3,"cix":2,"ix":3,"mn":"ADBE Vector Group"},{"ty":"tr","p":{"a":0,"k":[60.531,10.941],"ix":2},"a":{"a":0,"k":[60.531,10.941],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"ruoi","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":50,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.967]},"o":{"x":[0.167],"y":[0.033]},"n":["0p833_0p967_0p167_0p033"],"t":35,"s":[100],"e":[0]},{"t":49}]},"r":{"a":0,"k":0},"p":{"a":0,"k":[-0.75,-0.75,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-13.91,5.273],[-4.545,3.734],[20.029,1.207]],"o":[[-4.675,-4.128],[12.816,-4.858],[6.616,-5.438],[0,0]],"v":[[-7.383,24.76],[-7.046,5.54],[14.34,-2.273],[-3.178,-24.76]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[0.627,0.627,0.627,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":1},"lc":2,"lj":2,"d":[{"n":"d","nm":"dash","v":{"a":0,"k":2.028}},{"n":"g","nm":"gap","v":{"a":0,"k":2.028}},{"n":"o","nm":"offset","v":{"a":0,"k":0}}],"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[67.87,37.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.953]},"o":{"x":[0.167],"y":[0.033]},"n":["0p833_0p953_0p167_0p033"],"t":0,"s":[0],"e":[100]},{"t":35}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":0,"op":50,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"im_emptyBox Outlines","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[60,60,0]},"a":{"a":0,"k":[60,60,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.001,-16.607],[-32.143,-0.002],[-0.001,16.607],[32.144,-0.002]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.8,0.82,0.851,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[60,55.75],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[12.856,-23.249],[0,-16.605],[-12.857,-23.249],[-45,-6.641],[-32.144,0.001],[-45,6.645],[-12.857,23.249],[0,16.609],[12.856,23.249],[45,6.645],[32.143,0.001],[45,-6.641]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.957,0.957,0.957,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[60,55.748],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-16.072,24.171],[16.072,11.312],[16.072,-24.171],[-16.072,-24.171]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.902,0.914,0.929,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[76.072,83.33],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-32.143,-24.171],[-32.143,11.311],[-0.001,24.171],[32.144,11.311],[32.144,-24.171]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.8,0.82,0.851,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[60,83.33],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group"},{"ty":"tr","p":{"a":0,"k":[60,60.186],"ix":2},"a":{"a":0,"k":[60,60.186],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"box","np":4,"cix":2,"ix":1,"mn":"ADBE Vector Group"}],"ip":0,"op":50,"st":0,"bm":0,"sr":1}]}
================================================
FILE: src/assets/animations/error.json
================================================
{"v":"5.2.1","fr":60,"ip":0,"op":120,"w":1080,"h":1080,"nm":"Chemical","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Chemical Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[0.981]},"o":{"x":[0.333],"y":[0]},"n":["0_0p981_0p333_0"],"t":0,"s":[0],"e":[9]},{"i":{"x":[0],"y":[1.009]},"o":{"x":[0.333],"y":[0]},"n":["0_1p009_0p333_0"],"t":12,"s":[9],"e":[-9]},{"i":{"x":[0],"y":[0.991]},"o":{"x":[0.333],"y":[0]},"n":["0_0p991_0p333_0"],"t":24,"s":[-9],"e":[9]},{"i":{"x":[0],"y":[1.009]},"o":{"x":[0.333],"y":[0]},"n":["0_1p009_0p333_0"],"t":36,"s":[9],"e":[-9]},{"i":{"x":[0],"y":[0.981]},"o":{"x":[0.333],"y":[0]},"n":["0_0p981_0p333_0"],"t":48,"s":[-9],"e":[0]},{"t":60}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":0.992},"o":{"x":0.333,"y":0},"n":"0_0p992_0p333_0","t":0,"s":[554,784,0],"e":[538,770,0],"to":[-2.66666674613953,-2.33333325386047,0],"ti":[-3,0.66666668653488,0]},{"i":{"x":0,"y":0.995},"o":{"x":0.333,"y":0},"n":"0_0p995_0p333_0","t":12,"s":[538,770,0],"e":[572,780,0],"to":[3,-0.66666668653488,0],"ti":[0,0,0]},{"i":{"x":0,"y":0.995},"o":{"x":0.333,"y":0},"n":"0_0p995_0p333_0","t":24,"s":[572,780,0],"e":[538,770,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0.995},"o":{"x":0.333,"y":0},"n":"0_0p995_0p333_0","t":36,"s":[538,770,0],"e":[572,780,0],"to":[0,0,0],"ti":[-2.66666674613953,-2.33333325386047,0]},{"i":{"x":0,"y":0.991},"o":{"x":0.333,"y":0},"n":"0_0p991_0p333_0","t":48,"s":[572,780,0],"e":[554,784,0],"to":[2.66666674613953,2.33333325386047,0],"ti":[3,-0.66666668653488,0]},{"t":60}],"ix":2},"a":{"a":0,"k":[540,763.284,0],"ix":1},"s":{"a":0,"k":[126.296,126.296,100],"ix":6}},"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[46.547,31.003],[-14.612,37.431],[-33.095,10.378],[-36.432,30.363],[-31.132,8.839],[-26.647,-27.032],[-19.601,-14.99],[-11.707,-26.903],[1.333,-59.359]],"o":[[0,0],[-34.494,-22.976],[11.401,-29.21],[33.095,-10.377],[36.432,-30.363],[31.131,-8.84],[40.034,40.612],[19.602,14.989],[16.701,38.38],[0,0]],"v":[[-27.577,165.972],[-87.456,100.655],[-225.534,29.797],[-131.797,16.729],[-201.473,-98.394],[-107.612,-75.281],[-65.267,-123.095],[11.527,10.049],[55.585,-13.867],[38.405,165.972]],"c":true}],"e":[{"i":[[0,0],[46.547,31.003],[-14.612,37.431],[-33.095,10.378],[-36.432,30.363],[-31.132,8.839],[-26.647,-27.032],[-19.601,-14.99],[-11.707,-26.903],[1.333,-59.359]],"o":[[0,0],[-34.494,-22.976],[11.401,-29.21],[33.095,-10.377],[36.432,-30.363],[31.131,-8.84],[40.034,40.612],[19.602,14.989],[16.701,38.38],[0,0]],"v":[[-27.577,165.971],[-72.852,87.94],[-110.219,-27.178],[-45.605,3.648],[-3.724,-144.463],[38.213,-75.83],[140.705,-87.033],[107.344,26.584],[196.447,41.473],[38.405,165.971]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":12,"s":[{"i":[[0,0],[46.547,31.003],[-14.612,37.431],[-33.095,10.378],[-36.432,30.363],[-31.132,8.839],[-26.647,-27.032],[-19.601,-14.99],[-11.707,-26.903],[1.333,-59.359]],"o":[[0,0],[-34.494,-22.976],[11.401,-29.21],[33.095,-10.377],[36.432,-30.363],[31.131,-8.84],[40.034,40.612],[19.602,14.989],[16.701,38.38],[0,0]],"v":[[-27.577,165.971],[-72.852,87.94],[-110.219,-27.178],[-45.605,3.648],[-3.724,-144.463],[38.213,-75.83],[140.705,-87.033],[107.344,26.584],[196.447,41.473],[38.405,165.971]],"c":true}],"e":[{"i":[[0,0],[46.547,31.003],[-14.612,37.431],[-33.095,10.378],[-36.432,30.363],[-31.132,8.839],[-26.647,-27.032],[-19.601,-14.99],[-11.707,-26.903],[1.333,-59.359]],"o":[[0,0],[-34.494,-22.976],[11.401,-29.21],[33.095,-10.377],[36.432,-30.363],[31.131,-8.84],[40.034,40.612],[19.602,14.989],[16.701,38.38],[0,0]],"v":[[-27.577,165.972],[-87.456,100.655],[-225.534,29.797],[-131.797,16.729],[-201.473,-98.394],[-107.612,-75.281],[-65.267,-123.095],[11.527,10.049],[55.585,-13.867],[38.405,165.972]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":24,"s":[{"i":[[0,0],[46.547,31.003],[-14.612,37.431],[-33.095,10.378],[-36.432,30.363],[-31.132,8.839],[-26.647,-27.032],[-19.601,-14.99],[-11.707,-26.903],[1.333,-59.359]],"o":[[0,0],[-34.494,-22.976],[11.401,-29.21],[33.095,-10.377],[36.432,-30.363],[31.131,-8.84],[40.034,40.612],[19.602,14.989],[16.701,38.38],[0,0]],"v":[[-27.577,165.972],[-87.456,100.655],[-225.534,29.797],[-131.797,16.729],[-201.473,-98.394],[-107.612,-75.281],[-65.267,-123.095],[11.527,10.049],[55.585,-13.867],[38.405,165.972]],"c":true}],"e":[{"i":[[0,0],[46.547,31.003],[-14.612,37.431],[-33.095,10.378],[-36.432,30.363],[-31.132,8.839],[-26.647,-27.032],[-19.601,-14.99],[-11.707,-26.903],[1.333,-59.359]],"o":[[0,0],[-34.494,-22.976],[11.401,-29.21],[33.095,-10.377],[36.432,-30.363],[31.131,-8.84],[40.034,40.612],[19.602,14.989],[16.701,38.38],[0,0]],"v":[[-27.577,165.972],[-72.852,87.94],[-110.219,-27.178],[-45.605,3.648],[-3.724,-144.463],[38.213,-75.83],[140.705,-87.033],[107.344,26.584],[196.447,41.473],[38.405,165.972]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":36,"s":[{"i":[[0,0],[46.547,31.003],[-14.612,37.431],[-33.095,10.378],[-36.432,30.363],[-31.132,8.839],[-26.647,-27.032],[-19.601,-14.99],[-11.707,-26.903],[1.333,-59.359]],"o":[[0,0],[-34.494,-22.976],[11.401,-29.21],[33.095,-10.377],[36.432,-30.363],[31.131,-8.84],[40.034,40.612],[19.602,14.989],[16.701,38.38],[0,0]],"v":[[-27.577,165.972],[-72.852,87.94],[-110.219,-27.178],[-45.605,3.648],[-3.724,-144.463],[38.213,-75.83],[140.705,-87.033],[107.344,26.584],[196.447,41.473],[38.405,165.972]],"c":true}],"e":[{"i":[[0,0],[19.555,12.853],[5.133,23.784],[-25.136,4.239],[-35.022,13.287],[-31.849,3.563],[-13.715,-11.142],[-8.621,-8.163],[-5.002,-11.881],[-4.025,-29.44]],"o":[[0,0],[-0.014,-4.404],[16.201,-12.169],[34.021,-4.173],[42.831,-13.537],[27.094,-3.593],[23.208,16.619],[10.894,17.751],[6.835,16.475],[0,0]],"v":[[-27.577,165.971],[-32.706,137.053],[-36.866,107.395],[-23.435,98.333],[8.285,36.13],[24.357,62.733],[62.186,57.996],[47.529,105.899],[51.288,121.732],[38.405,165.971]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":50,"s":[{"i":[[0,0],[19.555,12.853],[5.133,23.784],[-25.136,4.239],[-35.022,13.287],[-31.849,3.563],[-13.715,-11.142],[-8.621,-8.163],[-5.002,-11.881],[-4.025,-29.44]],"o":[[0,0],[-0.014,-4.404],[16.201,-12.169],[34.021,-4.173],[42.831,-13.537],[27.094,-3.593],[23.208,16.619],[10.894,17.751],[6.835,16.475],[0,0]],"v":[[-27.577,165.971],[-32.706,137.053],[-36.866,107.395],[-23.435,98.333],[8.285,36.13],[24.357,62.733],[62.186,57.996],[47.529,105.899],[51.288,121.732],[38.405,165.971]],"c":true}],"e":[{"i":[[0,0],[13.771,8.963],[1.453,16.648],[-23.43,2.924],[-34.719,9.628],[-32.003,2.432],[-10.943,-7.737],[-6.269,-6.7],[-3.565,-8.662],[-5.173,-23.029]],"o":[[0,0],[0.013,-3.116],[17.23,-8.517],[34.22,-2.843],[44.202,-9.931],[26.229,-2.469],[19.603,11.477],[9.028,18.343],[4.721,11.781],[0,0]],"v":[[-27.577,165.971],[-31.27,145.835],[-32.019,124.982],[-18.684,118.622],[-12.461,85.141],[21.388,92.425],[45.36,89.074],[40.77,123.674],[44.894,135.126],[38.405,165.971]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":53,"s":[{"i":[[0,0],[13.771,8.963],[1.453,16.648],[-23.43,2.924],[-34.719,9.628],[-32.003,2.432],[-10.943,-7.737],[-6.269,-6.7],[-3.565,-8.662],[-5.173,-23.029]],"o":[[0,0],[0.013,-3.116],[17.23,-8.517],[34.22,-2.843],[44.202,-9.931],[26.229,-2.469],[19.603,11.477],[9.028,18.343],[4.721,11.781],[0,0]],"v":[[-27.577,165.971],[-31.27,145.835],[-32.019,124.982],[-18.684,118.622],[-12.461,85.141],[21.388,92.425],[45.36,89.074],[40.77,123.674],[44.894,135.126],[38.405,165.971]],"c":true}],"e":[{"i":[[0,0],[0.275,-0.112],[-7.131,-0.001],[-19.45,-0.145],[-34.014,1.089],[-32.362,-0.206],[-4.477,0.208],[-0.779,-3.287],[-0.212,-1.152],[-7.851,-8.07]],"o":[[0,0],[0.077,-0.112],[19.63,0.004],[34.683,0.259],[47.402,-1.518],[24.21,0.154],[11.19,-0.52],[4.673,19.724],[-0.212,0.828],[0,0]],"v":[[-27.577,165.971],[-27.918,166.327],[-20.71,166.019],[-7.599,165.965],[16.862,165.126],[14.459,161.706],[6.101,161.588],[24.998,165.147],[29.974,166.377],[38.405,165.971]],"c":true}]},{"t":60}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[534.586,345.676],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Chemical Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0],"y":[0.981]},"o":{"x":[0.333],"y":[0]},"n":["0_0p981_0p333_0"],"t":0,"s":[0],"e":[9]},{"i":{"x":[0],"y":[1.009]},"o":{"x":[0.333],"y":[0]},"n":["0_1p009_0p333_0"],"t":12,"s":[9],"e":[-9]},{"i":{"x":[0],"y":[0.991]},"o":{"x":[0.333],"y":[0]},"n":["0_0p991_0p333_0"],"t":24,"s":[-9],"e":[9]},{"i":{"x":[0],"y":[1.009]},"o":{"x":[0.333],"y":[0]},"n":["0_1p009_0p333_0"],"t":36,"s":[9],"e":[-9]},{"i":{"x":[0],"y":[0.981]},"o":{"x":[0.333],"y":[0]},"n":["0_0p981_0p333_0"],"t":48,"s":[-9],"e":[0]},{"t":60}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":0.992},"o":{"x":0.333,"y":0},"n":"0_0p992_0p333_0","t":0,"s":[554,784,0],"e":[538,770,0],"to":[-2.66666674613953,-2.33333325386047,0],"ti":[-3,0.66666668653488,0]},{"i":{"x":0,"y":0.995},"o":{"x":0.333,"y":0},"n":"0_0p995_0p333_0","t":12,"s":[538,770,0],"e":[572,780,0],"to":[3,-0.66666668653488,0],"ti":[0,0,0]},{"i":{"x":0,"y":0.995},"o":{"x":0.333,"y":0},"n":"0_0p995_0p333_0","t":24,"s":[572,780,0],"e":[538,770,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0.995},"o":{"x":0.333,"y":0},"n":"0_0p995_0p333_0","t":36,"s":[538,770,0],"e":[572,780,0],"to":[0,0,0],"ti":[-2.66666674613953,-2.33333325386047,0]},{"i":{"x":0,"y":0.991},"o":{"x":0.333,"y":0},"n":"0_0p991_0p333_0","t":48,"s":[572,780,0],"e":[554,784,0],"to":[2.66666674613953,2.33333325386047,0],"ti":[3,-0.66666668653488,0]},{"t":60}],"ix":2},"a":{"a":0,"k":[540,763.284,0],"ix":1},"s":{"a":0,"k":[126.296,126.296,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[550.067,518.566],[550.067,594.665]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":2,"lj":1,"ml":10,"ml2":{"a":0,"k":10,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-15.613,-8.421],[0.957,2.781],[6.261,5.859],[-3.147,-16.055]],"o":[[2.588,1.396],[-2.596,-7.546],[-11.827,-11.068],[2.318,11.83]],"v":[[17.489,18.685],[22.075,14.829],[8.761,-9.014],[-19.885,1.403]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"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},"n":"0p667_1_0p333_0","t":0,"s":[292.8,304.675],"e":[458.8,234.675],"to":[27.6666660308838,-11.6666669845581],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":12,"s":[458.8,234.675],"e":[292.8,304.675],"to":[0,0],"ti":[2.6120662689209,-3.75395488739014]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":24,"s":[292.8,304.675],"e":[443.128,257.199],"to":[-2.6120662689209,3.75395488739014],"ti":[-27.6666660308838,11.6666669845581]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":36,"s":[443.128,257.199],"e":[458.8,234.675],"to":[27.6666660308838,-11.6666669845581],"ti":[-2.6120662689209,3.75395488739014]},{"t":60}],"ix":2},"a":{"a":0,"k":[20.123,18.655],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":36,"s":[100,100],"e":[0,0]},{"t":48}],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":0,"s":[-17],"e":[82]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":12,"s":[82],"e":[-17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":24,"s":[-17],"e":[82]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":36,"s":[82],"e":[82]},{"t":60}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[24.578,-13.257],[-1.507,4.379],[-9.855,9.222],[4.953,-25.274]],"o":[[-4.075,2.198],[4.087,-11.879],[18.618,-17.423],[-3.65,18.622]],"v":[[-27.529,29.414],[-34.75,23.343],[-13.792,-14.189],[31.305,2.209]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"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},"n":"0p667_1_0p333_0","t":0,"s":[545.24,248.915],"e":[740.24,248.915],"to":[32.5,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":12,"s":[740.24,248.915],"e":[545.24,248.915],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":24,"s":[545.24,248.915],"e":[740.24,248.915],"to":[0,0],"ti":[-32.5,0]},{"t":36}],"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]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":0,"s":[100,100],"e":[100,100]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":36,"s":[100,100],"e":[0,0]},{"t":48}],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":0,"s":[-80],"e":[-15]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":12,"s":[-15],"e":[-80]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":24,"s":[-80],"e":[-15]},{"t":36}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[32.991,102.491],[-32.991,102.491],[-32.991,-102.491],[32.991,-102.491]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540,588.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[13.032,4.81]],"o":[[0,0],[0,0]],"v":[[10.167,-3.309],[-10.167,-1.501]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":7,"ix":5},"lc":2,"lj":1,"ml":10,"ml2":{"a":0,"k":10,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[607.907,765.719],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-13.032,4.81]],"o":[[0,0],[0,0]],"v":[[-10.167,-3.309],[10.167,-1.501]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":7,"ix":5},"lc":2,"lj":1,"ml":10,"ml2":{"a":0,"k":10,"ix":8},"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[472.093,765.719],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-21.171,0],[1.025,-8.712],[11.285,0],[2.989,6.748]],"o":[[16.474,0],[-1.025,8.711],[-11.285,0],[-2.989,-6.747]],"v":[[0.609,-11.957],[32.029,3.246],[0.609,11.787],[-30.064,4.441]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[539.391,767.448],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0,0.667],"y":[0.995,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0_0p995_0p333_0","0p667_1_0p333_0"],"t":60,"s":[28,100],"e":[100,100]},{"t":80}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-9.458],[9.458,0],[0,9.457],[-9.458,0]],"o":[[0,9.457],[-9.458,0],[0,-9.458],[9.458,0]],"v":[[17.125,0],[0,17.125],[-17.125,0],[0,-17.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.255000005984,0.246999987434,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[606.244,735.561],"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]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":60,"s":[100,18],"e":[100,100]},{"i":{"x":[0.833,0.833],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p833_1_0p333_0","0p833_1_0p333_0"],"t":80,"s":[100,100],"e":[100,100]},{"i":{"x":[0.833,0.833],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0,0]},"n":["0p833_1_0p167_0","0p833_1_0p167_0"],"t":90,"s":[100,100],"e":[100,0]},{"i":{"x":[0.833,0.833],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0,0]},"n":["0p833_1_0p167_0","0p833_1_0p167_0"],"t":100,"s":[100,0],"e":[100,100]},{"t":110}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-9.458],[9.458,0],[0,9.457],[-9.458,0]],"o":[[0,9.457],[-9.458,0],[0,-9.458],[9.458,0]],"v":[[17.125,0],[0,17.125],[-17.125,0],[0,-17.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.255000005984,0.246999987434,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[473.756,735.561],"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]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":60,"s":[100,18],"e":[100,100]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p667_1_0p333_0","0p667_1_0p333_0"],"t":80,"s":[100,100],"e":[100,100]},{"i":{"x":[0.833,0.833],"y":[1,1]},"o":{"x":[0.333,0.333],"y":[0,0]},"n":["0p833_1_0p333_0","0p833_1_0p333_0"],"t":90,"s":[100,100],"e":[100,0]},{"i":{"x":[0.667,0.667],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0,0]},"n":["0p667_1_0p167_0","0p667_1_0p167_0"],"t":100,"s":[100,0],"e":[100,100]},{"t":110}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-18.356,0],[0,0],[10.709,14.909],[0,0],[0,0]],"o":[[0,0],[18.356,0],[0,0],[0,0],[-10.709,14.909]],"v":[[-131.275,121.964],[131.278,121.964],[149.578,86.283],[0,-121.965],[-149.578,86.283]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.6,0.677999997606,0.976000019148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[539.999,741.996],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[59.445,81.737],[-59.445,81.737],[-59.445,-81.737],[59.445,-81.737]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882000014361,0.925,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540,586.466],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-39.049,0],[0,0],[22.78,31.714],[0,0],[0,0]],"o":[[0,0],[39.049,0],[0,0],[0,0],[-22.78,31.714]],"v":[[-161.997,177.823],[161.997,177.823],[200.932,101.921],[0,-177.823],[-200.932,101.921]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882000014361,0.925,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540,730.209],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.472,0],[0,0],[0,10.472],[-10.471,0],[0,0],[0,-10.472]],"o":[[0,0],[-10.471,0],[0,-10.472],[0,0],[10.472,0],[0,10.472]],"v":[[67.132,18.961],[-67.132,18.961],[-86.093,0],[-67.132,-18.961],[67.132,-18.961],[86.093,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.882000014361,0.925,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[540,504.729],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"ix":13,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"fire Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[541,521,0],"ix":2},"a":{"a":0,"k":[540,540,0],"ix":1},"s":{"a":0,"k":[127.037,127.037,100],"ix":6}},"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[21.272,-4.342],[-8.717,48.522],[0,0],[5.39,-42.027]],"o":[[0,0],[8.716,-48.523],[0,0],[-4.502,35.089]],"v":[[-39.161,67.525],[-5.443,-5.329],[39.161,-67.525],[19.803,12.27]],"c":true}],"e":[{"i":[[21.272,-4.342],[-37.025,32.55],[0,0],[36.091,-22.199]],"o":[[0,0],[34.197,-30.064],[0,0],[-35.13,21.608]],"v":[[-30.502,60.44],[-6.23,-6.116],[18.694,-55.717],[15.08,11.483]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29.799,"s":[{"i":[[21.272,-4.342],[-37.025,32.55],[0,0],[36.091,-22.199]],"o":[[0,0],[34.197,-30.064],[0,0],[-35.13,21.608]],"v":[[-30.502,60.44],[-6.23,-6.116],[18.694,-55.717],[15.08,11.483]],"c":true}],"e":[{"i":[[21.272,-4.342],[-8.717,48.522],[0,0],[5.39,-42.027]],"o":[[0,0],[8.716,-48.523],[0,0],[-4.502,35.089]],"v":[[-39.161,67.525],[-5.443,-5.329],[39.161,-67.525],[19.803,12.27]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":59.6,"s":[{"i":[[21.272,-4.342],[-8.717,48.522],[0,0],[5.39,-42.027]],"o":[[0,0],[8.716,-48.523],[0,0],[-4.502,35.089]],"v":[[-39.161,67.525],[-5.443,-5.329],[39.161,-67.525],[19.803,12.27]],"c":true}],"e":[{"i":[[21.272,-4.342],[-37.025,32.55],[0,0],[36.091,-22.199]],"o":[[0,0],[34.197,-30.064],[0,0],[-35.13,21.608]],"v":[[-30.502,60.44],[-6.23,-6.116],[18.695,-55.717],[15.08,11.483]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":89.398,"s":[{"i":[[21.272,-4.342],[-37.025,32.55],[0,0],[36.091,-22.199]],"o":[[0,0],[34.197,-30.064],[0,0],[-35.13,21.608]],"v":[[-30.502,60.44],[-6.23,-6.116],[18.695,-55.717],[15.08,11.483]],"c":true}],"e":[{"i":[[21.272,-4.342],[-8.717,48.522],[0,0],[5.39,-42.027]],"o":[[0,0],[8.716,-48.523],[0,0],[-4.502,35.089]],"v":[[-39.161,67.525],[-5.443,-5.329],[39.161,-67.525],[19.803,12.27]],"c":true}]},{"t":119}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.760999971278,0.447000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[833.199,730.466],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[43.451,2.421],[-43.861,4.692]],"o":[[0,0],[-29.692,21.223]],"v":[[-34.42,23.57],[28.49,-19.634]],"c":true}],"e":[{"i":[[30.457,-6.918],[-39.587,22.291]],"o":[[0,0],[3.074,19.985]],"v":[[13.597,39.314],[4.875,-25.932]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29.799,"s":[{"i":[[30.457,-6.918],[-39.587,22.291]],"o":[[0,0],[3.074,19.985]],"v":[[13.597,39.314],[4.875,-25.932]],"c":true}],"e":[{"i":[[43.451,2.421],[-43.861,4.692]],"o":[[0,0],[-29.692,21.223]],"v":[[-34.42,23.57],[28.49,-19.634]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":59.6,"s":[{"i":[[43.451,2.421],[-43.861,4.692]],"o":[[0,0],[-29.692,21.223]],"v":[[-34.42,23.57],[28.49,-19.634]],"c":true}],"e":[{"i":[[30.457,-6.918],[-39.587,22.291]],"o":[[0,0],[3.074,19.985]],"v":[[13.597,39.314],[4.875,-25.932]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":89.398,"s":[{"i":[[30.457,-6.918],[-39.587,22.291]],"o":[[0,0],[3.074,19.985]],"v":[[13.597,39.314],[4.875,-25.932]],"c":true}],"e":[{"i":[[43.451,2.421],[-43.861,4.692]],"o":[[0,0],[-29.692,21.223]],"v":[[-34.42,23.57],[28.49,-19.634]],"c":true}]},{"t":119}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.760999971278,0.447000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[763.185,511.648],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"ix":2,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[4.283,-33.395],[-3.279,21.83],[11.574,21.489]],"o":[[0,0],[3.923,-26.123],[-10.499,29.382]],"v":[[1.81,46.728],[17.244,7.246],[-17.288,-42.005]],"c":true}],"e":[{"i":[[-43.734,-20.013],[9.444,18.857],[2.915,25.424]],"o":[[0,0],[-15.086,-30.123],[7.638,47.465]],"v":[[34.872,40.43],[7.798,3.31],[-34.606,-32.558]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29.799,"s":[{"i":[[-43.734,-20.013],[9.444,18.857],[2.915,25.424]],"o":[[0,0],[-15.086,-30.123],[7.638,47.465]],"v":[[34.872,40.43],[7.798,3.31],[-34.606,-32.558]],"c":true}],"e":[{"i":[[4.283,-33.395],[-3.279,21.83],[11.574,21.489]],"o":[[0,0],[3.923,-26.122],[-10.499,29.382]],"v":[[1.81,46.728],[17.244,7.246],[-17.288,-42.005]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":59.6,"s":[{"i":[[4.283,-33.395],[-3.279,21.83],[11.574,21.489]],"o":[[0,0],[3.923,-26.122],[-10.499,29.382]],"v":[[1.81,46.728],[17.244,7.246],[-17.288,-42.005]],"c":true}],"e":[{"i":[[-43.734,-20.013],[9.444,18.857],[2.915,25.424]],"o":[[0,0],[-15.086,-30.123],[7.638,47.465]],"v":[[34.872,40.43],[7.798,3.31],[-34.606,-32.558]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":89.398,"s":[{"i":[[-43.734,-20.013],[9.444,18.857],[2.915,25.424]],"o":[[0,0],[-15.086,-30.123],[7.638,47.465]],"v":[[34.872,40.43],[7.798,3.31],[-34.606,-32.558]],"c":true}],"e":[{"i":[[4.283,-33.395],[-3.279,21.83],[11.574,21.489]],"o":[[0,0],[3.923,-26.122],[-10.499,29.382]],"v":[[1.81,46.728],[17.244,7.246],[-17.288,-42.005]],"c":true}]},{"t":119}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.760999971278,0.447000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[227.696,610.108],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"ix":3,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[41.21,118.182],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[2.856,-17.181],[43.188,-17.603]],"o":[[0,0],[77.42,0.893],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-5.559,33.437],[-65.377,26.648]],"v":[[-140.397,149.931],[-229.6,7.378],[-114.277,78.655],[-57.565,-120.825],[48.94,-156.095],[99.93,-61.291],[137.851,57.612],[217.794,8.96],[214.711,38.356],[150.446,141.641]],"c":true}],"e":[{"i":[[0,0],[-20.189,106.374],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[7.609,-28.202],[34.129,-13.911]],"o":[[0,0],[22.318,45.762],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-8.31,30.8],[-65.377,26.648]],"v":[[-140.397,149.931],[-209.921,1.868],[-114.277,78.655],[-32.375,-124.761],[85.15,-158.457],[114.887,-61.291],[115.811,55.25],[223.305,-13.868],[194.779,63.748],[150.446,141.641]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29.799,"s":[{"i":[[0,0],[-20.189,106.374],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[7.609,-28.202],[34.129,-13.911]],"o":[[0,0],[22.318,45.762],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-8.31,30.8],[-65.377,26.648]],"v":[[-140.397,149.931],[-209.921,1.868],[-114.277,78.655],[-32.375,-124.761],[85.15,-158.457],[114.887,-61.291],[115.811,55.25],[223.305,-13.868],[194.779,63.748],[150.446,141.641]],"c":true}],"e":[{"i":[[0,0],[41.21,118.182],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[2.856,-17.181],[43.188,-17.603]],"o":[[0,0],[77.42,0.893],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-5.559,33.437],[-65.377,26.648]],"v":[[-140.397,149.931],[-229.6,7.378],[-114.277,78.655],[-57.565,-120.825],[48.94,-156.095],[99.93,-61.291],[137.851,57.612],[217.794,8.96],[214.711,38.356],[150.446,141.641]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":59.6,"s":[{"i":[[0,0],[41.21,118.182],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[2.856,-17.181],[43.188,-17.603]],"o":[[0,0],[77.42,0.893],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-5.559,33.437],[-65.377,26.648]],"v":[[-140.397,149.931],[-229.6,7.378],[-114.277,78.655],[-57.565,-120.825],[48.94,-156.095],[99.93,-61.291],[137.851,57.612],[217.794,8.96],[214.711,38.356],[150.446,141.641]],"c":true}],"e":[{"i":[[0,0],[-20.189,106.374],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[7.609,-28.202],[34.128,-13.911]],"o":[[0,0],[22.318,45.762],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-8.31,30.8],[-65.377,26.648]],"v":[[-140.397,149.931],[-209.921,1.868],[-114.277,78.655],[-32.375,-124.761],[85.15,-158.457],[114.887,-61.291],[115.811,55.25],[223.305,-13.868],[194.779,63.748],[150.446,141.641]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":89.398,"s":[{"i":[[0,0],[-20.189,106.374],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[7.609,-28.202],[34.128,-13.911]],"o":[[0,0],[22.318,45.762],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-8.31,30.8],[-65.377,26.648]],"v":[[-140.397,149.931],[-209.921,1.868],[-114.277,78.655],[-32.375,-124.761],[85.15,-158.457],[114.887,-61.291],[115.811,55.25],[223.305,-13.868],[194.779,63.748],[150.446,141.641]],"c":true}],"e":[{"i":[[0,0],[41.21,118.182],[0,0],[-60.128,48.082],[0,0],[-45.595,-53.296],[8.199,-35.859],[0,0],[2.856,-17.181],[43.188,-17.603]],"o":[[0,0],[77.42,0.893],[0,0],[87.151,7.776],[0,0],[32.796,38.336],[28.698,-4.113],[0,0],[-5.559,33.437],[-65.377,26.648]],"v":[[-140.397,149.931],[-229.6,7.378],[-114.277,78.655],[-57.565,-120.825],[48.94,-156.095],[99.93,-61.291],[137.851,57.612],[217.794,8.96],[214.711,38.356],[150.446,141.641]],"c":true}]},{"t":119}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.607843137255,0.458823559331,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[543.404,660.825],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"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},"n":"0p667_1_0p333_0","t":0,"s":[{"i":[[0,0],[13.452,77.508],[17.261,31.191],[-6.412,-0.729],[0,0],[-109.89,170.131],[-6.612,-28.168],[0,0],[-47.658,-64.569],[9.225,-21.944],[-14.927,22.866],[-1.278,-7.108],[131.821,-55.684]],"o":[[0,0],[-11.932,-68.75],[-3.125,-5.646],[51.238,5.819],[0,0],[30.227,-43.98],[13.901,59.222],[0,0],[34.787,47.13],[20.486,-1.887],[3.947,-6.047],[9.607,53.485],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-272.405,26.77],[-264.529,14.99],[-170.613,71.075],[-83.665,-135.99],[44.667,-253.454],[80.671,-156.456],[138.398,-39.616],[174.526,84.527],[237.986,21.213],[252.538,24.163],[143.708,281.622]],"c":true}],"e":[{"i":[[0,0],[13.452,77.508],[-29.78,33.348],[1.818,-6.192],[0,0],[-135.867,128.411],[5.662,-28.374],[0,0],[-3.793,-80.163],[9.225,-21.944],[-42.677,26.31],[3.315,-6.416],[118.501,-48.778]],"o":[[0,0],[-11.932,-68.75],[4.298,-4.813],[-13.254,45.128],[0,0],[61.713,-43.193],[-13.878,69.549],[0,0],[2.596,54.865],[20.486,-1.887],[6.147,-3.79],[-41.27,79.866],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-234.62,14.175],[-226.744,2.395],[-170.613,71.075],[-54.539,-156.456],[99.769,-251.88],[109.796,-162.753],[138.398,-39.616],[174.526,84.527],[240.347,17.277],[252.537,24.163],[143.709,281.622]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":29.799,"s":[{"i":[[0,0],[13.452,77.508],[-29.78,33.348],[1.818,-6.192],[0,0],[-135.867,128.411],[5.662,-28.374],[0,0],[-3.793,-80.163],[9.225,-21.944],[-42.677,26.31],[3.315,-6.416],[118.501,-48.778]],"o":[[0,0],[-11.932,-68.75],[4.298,-4.813],[-13.254,45.128],[0,0],[61.713,-43.193],[-13.878,69.549],[0,0],[2.596,54.865],[20.486,-1.887],[6.147,-3.79],[-41.27,79.866],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-234.62,14.175],[-226.744,2.395],[-170.613,71.075],[-54.539,-156.456],[99.769,-251.88],[109.796,-162.753],[138.398,-39.616],[174.526,84.527],[240.347,17.277],[252.537,24.163],[143.709,281.622]],"c":true}],"e":[{"i":[[0,0],[13.452,77.508],[17.261,31.191],[-6.412,-0.729],[0,0],[-109.89,170.131],[-6.612,-28.168],[0,0],[-47.658,-64.569],[9.225,-21.944],[-14.927,22.866],[-1.278,-7.108],[131.821,-55.684]],"o":[[0,0],[-11.932,-68.75],[-3.125,-5.646],[51.238,5.819],[0,0],[30.227,-43.98],[13.901,59.222],[0,0],[34.787,47.13],[20.486,-1.887],[3.947,-6.047],[9.607,53.485],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-272.405,26.77],[-264.529,14.99],[-170.613,71.075],[-83.665,-135.99],[44.667,-253.454],[80.671,-156.456],[138.398,-39.616],[174.526,84.527],[237.986,21.213],[252.538,24.163],[143.708,281.622]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":59.6,"s":[{"i":[[0,0],[13.452,77.508],[17.261,31.191],[-6.412,-0.729],[0,0],[-109.89,170.131],[-6.612,-28.168],[0,0],[-47.658,-64.569],[9.225,-21.944],[-14.927,22.866],[-1.278,-7.108],[131.821,-55.684]],"o":[[0,0],[-11.932,-68.75],[-3.125,-5.646],[51.238,5.819],[0,0],[30.227,-43.98],[13.901,59.222],[0,0],[34.787,47.13],[20.486,-1.887],[3.947,-6.047],[9.607,53.485],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-272.405,26.77],[-264.529,14.99],[-170.613,71.075],[-83.665,-135.99],[44.667,-253.454],[80.671,-156.456],[138.398,-39.616],[174.526,84.527],[237.986,21.213],[252.538,24.163],[143.708,281.622]],"c":true}],"e":[{"i":[[0,0],[13.452,77.508],[-29.78,33.348],[1.818,-6.192],[0,0],[-135.867,128.411],[5.662,-28.374],[0,0],[-3.793,-80.163],[9.225,-21.944],[-42.677,26.31],[3.315,-6.416],[118.501,-48.778]],"o":[[0,0],[-11.932,-68.75],[4.298,-4.813],[-13.254,45.128],[0,0],[61.713,-43.193],[-13.878,69.549],[0,0],[2.596,54.865],[20.486,-1.887],[6.147,-3.79],[-41.27,79.866],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-234.62,14.175],[-226.744,2.395],[-170.613,71.075],[-54.539,-156.456],[99.769,-251.88],[109.796,-162.753],[138.398,-39.616],[174.526,84.527],[240.347,17.277],[252.537,24.163],[143.708,281.622]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":89.398,"s":[{"i":[[0,0],[13.452,77.508],[-29.78,33.348],[1.818,-6.192],[0,0],[-135.867,128.411],[5.662,-28.374],[0,0],[-3.793,-80.163],[9.225,-21.944],[-42.677,26.31],[3.315,-6.416],[118.501,-48.778]],"o":[[0,0],[-11.932,-68.75],[4.298,-4.813],[-13.254,45.128],[0,0],[61.713,-43.193],[-13.878,69.549],[0,0],[2.596,54.865],[20.486,-1.887],[6.147,-3.79],[-41.27,79.866],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-234.62,14.175],[-226.744,2.395],[-170.613,71.075],[-54.539,-156.456],[99.769,-251.88],[109.796,-162.753],[138.398,-39.616],[174.526,84.527],[240.347,17.277],[252.537,24.163],[143.708,281.622]],"c":true}],"e":[{"i":[[0,0],[13.452,77.508],[17.261,31.191],[-6.412,-0.729],[0,0],[-109.89,170.131],[-6.612,-28.168],[0,0],[-47.658,-64.569],[9.225,-21.944],[-14.927,22.866],[-1.278,-7.108],[131.821,-55.684]],"o":[[0,0],[-11.932,-68.75],[-3.125,-5.646],[51.238,5.819],[0,0],[30.227,-43.98],[13.901,59.222],[0,0],[34.787,47.13],[20.486,-1.887],[3.947,-6.047],[9.607,53.485],[-149.054,0]],"v":[[-162.267,277.85],[-255.168,156.655],[-272.405,26.77],[-264.529,14.99],[-170.613,71.075],[-83.665,-135.99],[44.667,-253.454],[80.671,-156.456],[138.398,-39.616],[174.526,84.527],[237.986,21.213],[252.538,24.163],[143.708,281.622]],"c":true}]},{"t":119}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.760999971278,0.447000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[545.421,573.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":600,"st":0,"bm":0}],"markers":[]}
================================================
FILE: src/assets/animations/inverseLoadingDots.json
================================================
{
"v": "4.10.2",
"fr": 29.9700012207031,
"ip": 0,
"op": 40.0000016292334,
"w": 42,
"h": 17,
"nm": "loading",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Left",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 0,
"s": [30],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 15,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 17.5,
"s": [100],
"e": [30]
},
{ "t": 30.0000012219251 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [23.188, 8.5, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [7, 7], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Caminho da elipse 1",
"mn": "ADBE Vector Shape - Ellipse",
"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,
"nm": "Traçado 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [
0.10196078431372549,
0.10588235294117647,
0.10196078431372549,
1
],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"nm": "Preenchimento 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-13.11, 0.14], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transformar"
}
],
"nm": "Elipse 1",
"np": 3,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 40.0000016292334,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Mid",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 10,
"s": [30],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 20,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 22.5,
"s": [100],
"e": [30]
},
{ "t": 35.0000014255792 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [34.188, 8.5, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [7, 7], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Caminho da elipse 1",
"mn": "ADBE Vector Shape - Ellipse",
"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,
"nm": "Traçado 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [
0.10196078431372549,
0.10588235294117647,
0.10196078431372549,
1
],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"nm": "Preenchimento 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-13.11, 0.14], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transformar"
}
],
"nm": "Elipse 1",
"np": 3,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 40.0000016292334,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Right",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 15,
"s": [30],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 25,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 27.5,
"s": [100],
"e": [30]
},
{ "t": 40.0000016292334 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [44.812, 8.5, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [7, 7], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Caminho da elipse 1",
"mn": "ADBE Vector Shape - Ellipse",
"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,
"nm": "Traçado 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [
0.10196078431372549,
0.10588235294117647,
0.10196078431372549,
1
],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"nm": "Preenchimento 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-13.11, 0.14], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transformar"
}
],
"nm": "Elipse 1",
"np": 3,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 40.0000016292334,
"st": 0,
"bm": 0
}
]
}
================================================
FILE: src/assets/animations/loadingLogo.json
================================================
{"ip":0,"fr":60,"v":"5.1.20","assets":[],"layers":[{"ty":4,"nm":"LoadingCenter","ip":0,"st":0,"ind":2,"hix":2,"ks":{"o":{"a":0,"k":100},"or":{"a":0,"k":[0,0,0]},"a":{"a":0,"k":[43,43,0]},"p":{"s":true,"x":{"a":0,"k":113},"y":{"a":0,"k":117}},"rx":{"a":0,"k":0},"ry":{"a":0,"k":0},"rz":{"a":0,"k":0},"s":{"a":0,"k":[154.7,154.7]}},"shapes":[{"ty":"gr","nm":"LoadingCenter shape group","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"v":[[27.0449,50.2128],[20.0898,57.168],[27.0449,64.1231],[34.0001,57.168]],"i":[[3.8412000000000006,0],[0,-3.8412000000000006],[-3.841199999999997,0],[0,3.8412000000000006]],"o":[[-3.841199999999997,0],[0,3.8412000000000006],[3.8412000000000006,0],[0,-3.8412000000000006]]}}},{"ty":"st","o":{"a":0,"k":0},"w":{"a":0,"k":0},"c":{"a":0,"k":[0,0,0,0]},"lc":3,"lj":1,"ml":1},{"ty":"fl","o":{"a":0,"k":100},"r":1,"c":{"a":0,"k":[1,1,1,1]}},{"ty":"tr","o":{"a":0,"k":100},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}}]},{"ty":"gr","nm":"LoadingCenter shape group","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"v":[[59.0449,50.2128],[52.0898,57.168],[59.0449,64.1231],[66.0001,57.168]],"i":[[3.8412000000000006,0],[0,-3.8412000000000006],[-3.8412000000000006,0],[0,3.8412000000000006]],"o":[[-3.8412000000000006,0],[0,3.8412000000000006],[3.8412000000000006,0],[0,-3.8412000000000006]]}}},{"ty":"st","o":{"a":0,"k":0},"w":{"a":0,"k":0},"c":{"a":0,"k":[0,0,0,0]},"lc":3,"lj":1,"ml":1},{"ty":"fl","o":{"a":0,"k":100},"r":1,"c":{"a":0,"k":[1,1,1,1]}},{"ty":"tr","o":{"a":0,"k":100},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}}]},{"ty":"gr","nm":"LoadingCenter shape group","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"v":[[43.003,57.168],[36.0479,64.1231],[43.003,71.0783],[49.9581,64.1231]],"i":[[3.8412000000000006,0],[0,-3.8411999999999935],[-3.8412000000000006,0],[0,3.8412000000000006]],"o":[[-3.8412000000000006,0],[0,3.8412000000000006],[3.8412000000000006,0],[0,-3.8411999999999935]]}}},{"ty":"st","o":{"a":0,"k":0},"w":{"a":0,"k":0},"c":{"a":0,"k":[0,0,0,0]},"lc":3,"lj":1,"ml":1},{"ty":"fl","o":{"a":0,"k":100},"r":1,"c":{"a":0,"k":[1,1,1,1]}},{"ty":"tr","o":{"a":0,"k":100},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}}]},{"ty":"gr","nm":"LoadingCenter shape group","it":[{"ty":"sh","ks":{"a":0,"k":{"c":true,"v":[[61.9145,30.2179],[56.003,42.7304],[43.003,51.9111],[31.003,42.7304],[25.3472,30.2179],[35.569,20],[40.0653,21.0417],[43.6309,23.9725],[47.1955,21.0425],[51.6904,20]],"i":[[-0.020799999999994156,-5.6325],[2.2034999999999982,-2.3193000000000055],[1.5,0],[2.3211999999999975,2.6806999999999945],[-0.02149999999999963,6.065300000000001],[-5.614100000000004,0],[-1.3984999999999985,-0.6890999999999998],[-0.9467999999999961,-1.2387000000000015],[-1.3980000000000032,0.6890000000000001],[-1.5585999999999984,-0.0032999999999994145]],"o":[[0.021600000000006503,6.065300000000001],[-2.2034999999999982,2.3193999999999946],[-1.5,0],[-2.321200000000001,-2.6806000000000054],[0.021599999999999397,-5.633300000000002],[1.5589999999999975,-0.003900000000001569],[1.3984999999999985,0.6890999999999998],[0.9466000000000037,-1.238199999999999],[1.3979999999999961,-0.6890999999999998],[5.616400000000006,0]]}}},{"ty":"st","o":{"a":0,"k":0},"w":{"a":0,"k":0},"c":{"a":0,"k":[0,0,0,0]},"lc":3,"lj":1,"ml":1},{"ty":"fl","o":{"a":0,"k":100},"r":1,"c":{"a":0,"k":[1,1,1,1]}},{"ty":"tr","o":{"a":0,"k":100},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}}]},{"ty":"gr","nm":"LoadingCenter shape group","it":[{"ty":"rc","s":{"a":0,"k":[86,86]},"r":{"a":0,"k":43},"p":{"a":0,"k":[43,43]}},{"ty":"st","o":{"a":0,"k":0},"w":{"a":0,"k":0},"c":{"a":0,"k":[0,0,0,0]},"lc":3,"lj":1,"ml":1},{"ty":"fl","o":{"a":0,"k":100},"r":1,"c":{"a":0,"k":[0.8313725490196079,0.3568627450980392,0.5647058823529412,1]}},{"ty":"tr","o":{"a":0,"k":100},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}}]}],"op":30},{"ty":4,"nm":"Oval","ip":0,"st":0,"ind":1,"hix":1,"ks":{"o":{"a":1,"k":[{"t":0,"s":[100],"e":[0],"i":{"x":[0.515],"y":[0.955]},"o":{"x":[0.455],"y":[0.03]}},{"t":30}]},"or":{"a":0,"k":[0,0,0]},"a":{"a":0,"k":[62.5,62.5,0]},"p":{"s":true,"x":{"a":1,"k":[{"t":0,"s":[112.49999999999999],"e":[112.99949666027723],"i":{"x":[0.515],"y":[0.955]},"o":{"x":[0.455],"y":[0.03]}},{"t":30}]},"y":{"a":1,"k":[{"t":0,"s":[117],"e":[116.50049666027726],"i":{"x":[0.515],"y":[0.955]},"o":{"x":[0.455],"y":[0.03]}},{"t":30}]}},"rx":{"a":0,"k":0},"ry":{"a":0,"k":0},"rz":{"a":0,"k":0},"s":{"a":1,"k":[{"t":0,"s":[100,100],"e":[179.29999999999998,179.29999999999998],"i":{"x":[0.515,0.515],"y":[0.955,0.955]},"o":{"x":[0.455,0.455],"y":[0.03,0.03]}},{"t":30}]}},"shapes":[{"ty":"gr","nm":"Oval shape group","it":[{"ty":"rc","s":{"a":0,"k":[125,125]},"r":{"a":0,"k":62},"p":{"a":0,"k":[62.5,62.5]}},{"ty":"st","o":{"a":0,"k":0},"w":{"a":0,"k":0},"c":{"a":0,"k":[0,0,0,0]},"lc":3,"lj":1,"ml":1},{"ty":"fl","o":{"a":0,"k":100},"r":1,"c":{"a":0,"k":[0.8313725490196079,0.3568627450980392,0.5647058823529412,1]}},{"ty":"tr","o":{"a":0,"k":50},"a":{"a":0,"k":[0,0]},"s":{"a":0,"k":[100,100]},"p":{"a":0,"k":[0,0]},"r":{"a":0,"k":0}}]}],"op":30}],"op":30,"w":226,"h":234}
================================================
FILE: src/assets/animations/location.json
================================================
{
"v": "5.2.1",
"fr": 30,
"ip": 0,
"op": 180,
"w": 1155,
"h": 700,
"nm": "Comp 1",
"ddd": 0,
"assets": [
{
"id": "comp_0",
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Path 4",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [28.381, 100.034, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-8.78, 0],
[0, 2.34],
[8.8, 0],
[0, -2.34]
],
"o": [
[8.8, 0],
[0, -2.34],
[-8.78, 0],
[0, 2.34]
],
"v": [
[-0.005, 4.23],
[15.915, 0],
[-0.005, -4.23],
[-15.915, 0]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.40000000596, 0.474510014057, 0.949020028114, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Combined Shape 2",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [28.381, 50.729, 0],
"e": [28.381, 43.729, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [28.381, 43.729, 0],
"e": [28.381, 50.729, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [28.381, 50.729, 0],
"e": [28.381, 43.729, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [28.381, 43.729, 0],
"e": [28.381, 50.729, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 9.4],
[-14.41, 0],
[0, -14.42],
[0, 0]
],
"o": [
[0, -14.42],
[14.42, 0],
[0, 7.78],
[0, 0]
],
"v": [
[-26.095, -16.7],
[-0.005, -42.8],
[26.095, -16.7],
[-0.005, 42.8]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 1,
"ty": "sh",
"ix": 2,
"ks": {
"a": 0,
"k": {
"i": [
[0, -7.93],
[-7.93, 0],
[0, 7.93],
[7.94, 0]
],
"o": [
[0, 7.93],
[7.94, 0],
[0, -7.93],
[-7.93, 0]
],
"v": [
[-14.365, -18.67],
[-0.005, -4.31],
[14.365, -18.67],
[-0.005, -33.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 2",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "mm",
"mm": 5,
"nm": "Merge Paths 1",
"mn": "ADBE Vector Filter - Merge",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.40000000596, 0.474510014057, 0.949020028114, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Combined Shape",
"np": 4,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
}
]
}
],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Path 74",
"parent": 27,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [5.972, 11.218, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.02, -0.28],
[-0.28, -0.02],
[0, 0],
[-0.02, 0.28],
[0.28, 0.02]
],
"o": [
[-0.28, -0.02],
[-0.02, 0.28],
[0, 0],
[0.28, 0.02],
[0.02, -0.27],
[0, 0]
],
"v": [
[-7.006, -0.931],
[-7.536, -0.461],
[-7.066, 0.069],
[7.004, 0.929],
[7.534, 0.459],
[7.064, -0.071]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Path 73",
"parent": 27,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [9.515, 6.558, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.01, 0.28],
[-0.27, -0.01],
[0, 0],
[0.01, -0.28],
[0.28, 0.01],
[0, 0]
],
"o": [
[0.01, -0.27],
[0, 0],
[0.28, 0.02],
[-0.02, 0.27],
[0, 0],
[-0.27, -0.01]
],
"v": [
[-9.069, -0.461],
[-8.549, -0.931],
[8.591, -0.071],
[9.071, 0.459],
[8.541, 0.929],
[-8.599, 0.069]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Path 72",
"parent": 27,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [13.9, 1.86, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.01, 0.28],
[-0.28, -0.01],
[0, 0],
[0.01, -0.28],
[0.28, 0.02],
[0, 0]
],
"o": [
[0.01, -0.27],
[0, 0],
[0.28, 0.02],
[-0.02, 0.27],
[0, 0],
[-0.27, -0.01]
],
"v": [
[-8.379, -0.426],
[-7.849, -0.896],
[7.901, -0.106],
[8.381, 0.424],
[7.851, 0.894],
[-7.909, 0.104]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "Path 71",
"parent": 28,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-14.213, 12.405, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.17, 0.21],
[0.21, -0.17],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[1.47, -1.17],
[1.12, -0.89],
[0.34, -0.26],
[0.09, -0.08],
[0.02, -0.01],
[0, 0],
[0, 0],
[0, 0],
[-0.15, -0.23],
[-0.23, 0.16],
[-0.08, 0.07],
[-0.17, 0.13],
[-0.56, 0.44],
[-1.47, 1.16],
[-1.09, 0.87],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0.31, 0.39],
[0, 0]
],
"o": [
[-0.17, -0.22],
[0, 0],
[-0.31, -0.39],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.09, 0.87],
[-1.46, 1.16],
[-0.55, 0.45],
[-0.17, 0.14],
[-0.06, 0.04],
[0, 0],
[0, 0],
[-0.03, 0.02],
[-0.23, 0.15],
[0.16, 0.22],
[0.03, -0.02],
[0.1, -0.07],
[0.34, -0.27],
[1.11, -0.89],
[1.46, -1.17],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0.22, -0.17]
],
"v": [
[6.296, -5.014],
[5.596, -5.094],
[5.906, -4.704],
[5.596, -5.094],
[5.596, -5.094],
[5.586, -5.094],
[5.586, -5.084],
[5.556, -5.064],
[5.466, -4.994],
[5.096, -4.694],
[3.776, -3.644],
[-0.244, -0.434],
[-4.294, 2.786],
[-5.654, 3.866],
[-6.044, 4.186],
[-6.154, 4.266],
[-6.154, 4.266],
[-6.154, 4.266],
[-6.184, 4.286],
[-6.324, 4.986],
[-5.624, 5.116],
[-5.434, 4.966],
[-5.034, 4.656],
[-3.664, 3.576],
[0.386, 0.346],
[4.396, -2.864],
[5.716, -3.914],
[6.086, -4.214],
[6.186, -4.284],
[6.206, -4.304],
[6.216, -4.314],
[6.216, -4.314],
[6.216, -4.314],
[5.906, -4.704],
[6.216, -4.314]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 5,
"ty": 4,
"nm": "Path 70",
"parent": 28,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-16.052, 7.757, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.31, -0.39],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[1.46, -1.17],
[1.11, -0.89],
[0.34, -0.27],
[0.1, -0.07],
[0.03, -0.02],
[0.16, 0.23],
[-0.23, 0.16],
[-0.02, 0.02],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-0.05, 0.04],
[-0.17, 0.14],
[-0.55, 0.45],
[-1.46, 1.17],
[-1.09, 0.87],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0.31, 0.39],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.09, 0.88],
[-1.47, 1.17],
[-0.56, 0.44],
[-0.17, 0.13],
[-0.08, 0.07],
[-0.23, 0.16],
[-0.15, -0.23],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0.02, -0.01],
[0.1, -0.08],
[0.34, -0.26],
[1.12, -0.88],
[1.47, -1.16],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[6, -4.759],
[6.31, -4.369],
[6.31, -4.369],
[6.31, -4.369],
[6.3, -4.359],
[6.28, -4.339],
[6.18, -4.269],
[5.81, -3.969],
[4.49, -2.919],
[0.48, 0.291],
[-3.57, 3.521],
[-4.94, 4.601],
[-5.34, 4.911],
[-5.53, 5.061],
[-6.23, 4.931],
[-6.09, 4.231],
[-6.07, 4.211],
[-6.06, 4.211],
[-6.06, 4.211],
[-6.06, 4.211],
[-6.06, 4.211],
[-6.06, 4.211],
[-6.06, 4.211],
[-5.96, 4.131],
[-5.56, 3.811],
[-4.2, 2.731],
[-0.15, -0.499],
[3.87, -3.699],
[5.19, -4.749],
[5.56, -5.049],
[5.65, -5.119],
[5.68, -5.139],
[5.68, -5.149],
[5.69, -5.149],
[5.69, -5.149]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 4,
"nm": "Path 62",
"parent": 28,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-16.66, 2.149, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-0.31, -0.39],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[1.18, -0.95],
[0.91, -0.72],
[0.27, -0.22],
[0.04, -0.03],
[0.16, 0.23],
[-0.23, 0.15]
],
"o": [
[0, 0],
[0.32, 0.39],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-0.87, 0.7],
[-1.18, 0.94],
[-0.45, 0.36],
[-0.26, 0.2],
[-0.23, 0.16],
[-0.15, -0.22],
[0, 0]
],
"v": [
[4.547, -4.248],
[4.857, -3.858],
[5.177, -3.468],
[5.177, -3.468],
[5.177, -3.468],
[5.167, -3.458],
[5.147, -3.448],
[5.067, -3.378],
[4.777, -3.148],
[3.707, -2.298],
[0.477, 0.292],
[-2.793, 2.902],
[-3.893, 3.782],
[-4.393, 4.162],
[-5.093, 4.022],
[-4.953, 3.332]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 7,
"ty": 4,
"nm": "Path 38",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-85.689, 133.697, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-45.875, 68.206],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40.875, 73.706],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40.875, 73.706],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-45.875, 68.206],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-45.875, 68.206],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40.875, 73.706],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-40.875, 73.706],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-45.875, 68.206],
[14.895, 3.605],
[45.875, -68.204]
],
"c": false
}
]
},
{ "t": 180 }
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 27, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 8,
"ty": 4,
"nm": "Path 37",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-59.589, 61.612, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[11.28, 6.38],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[-11.28, -6.38],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[24.206, 25.003],
[33.586, 8.152],
[4.196, -7.208],
[-23.854, -24.997],
[-33.584, -2.977],
[-0.614, 11.482]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 9,
"ty": 4,
"nm": "Path 36",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-136.918, 115.631, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-62.263, 63.615]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-67.763, 54.615]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-67.763, 54.615]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-62.263, 63.615]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-62.263, 63.615]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-67.763, 54.615]
],
"c": false
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-67.763, 54.615]
],
"c": false
}
],
"e": [
{
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[62.267, -63.615],
[23.227, 2.775],
[-62.263, 63.615]
],
"c": false
}
]
},
{ "t": 180 }
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 27, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 10,
"ty": 4,
"nm": "Path 35",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [21.781, -57.834, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[-1.52, 1.61],
[0, 0]
],
"o": [
[0, 0],
[-1.15, -1.89],
[0, 0],
[0, 0]
],
"v": [
[-0.18, 4.603],
[-2.17, 1.323],
[-1.54, -4.607],
[2.88, -2.367]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 11,
"ty": 4,
"nm": "Path 34",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [39.628, -97.064, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.67, 0.34],
[-1.93, 2.09],
[-1.48, 6.07],
[5.21, -0.13],
[-0.46, 1.41],
[-0.59, 1.81],
[7.72, 2.18],
[0, 0],
[0.69, 0.3],
[0.36, 0.11],
[3.55, -6.71],
[1.82, 0.65],
[1.3, 0.21],
[2.06, -6.94],
[-2.84, -4.35],
[-7.66, 4.21],
[-0.15, 3.47],
[-3.44, -0.35],
[-0.56, -0.49],
[-0.04, -0.82],
[-0.74, 0.73],
[-1.27, 1.35],
[-0.72, 1.05],
[0, 0],
[-0.98, -0.03],
[-1.04, 0.05],
[-0.51, 3.94]
],
"o": [
[0.85, -0.45],
[3.46, -3.72],
[-3.71, 3.11],
[0.46, -1.4],
[0.59, -1.8],
[-7.58, 4.12],
[0, 0],
[-0.68, -0.19],
[-0.52, -0.23],
[-6.28, -1.95],
[-0.49, 0.91],
[-1.12, -0.4],
[-1.68, -0.26],
[-0.22, 0.57],
[2.87, 4.4],
[7.66, -4.22],
[0.14, -3.13],
[0.9, 0.09],
[0.01, 1.34],
[0.04, 0.76],
[0.93, -0.92],
[0.83, -0.69],
[0, 0],
[1.05, -0.07],
[0.96, 0.03],
[4.25, 0.19],
[1.24, -1.17]
],
"v": [
[25.098, 1.916],
[28.718, -1.054],
[37.938, -22.034],
[25.278, -15.714],
[26.658, -19.934],
[28.428, -25.354],
[2.498, -26.404],
[2.468, -26.414],
[0.328, -27.244],
[-1.032, -27.794],
[-15.922, -23.144],
[-19.652, -23.384],
[-23.362, -24.444],
[-29.582, -11.454],
[-37.452, 21.026],
[-14.422, 27.576],
[-5.292, 17.086],
[0.618, 10.636],
[2.788, 11.586],
[2.868, 14.956],
[4.518, 16.926],
[8.078, 13.256],
[10.478, 10.646],
[10.488, 10.646],
[13.498, 10.636],
[16.468, 10.646],
[22.498, 3.786]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254901960784, 0.250980392157, 0.258823529412, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 12,
"ty": 4,
"nm": "Path 33",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [40.249, -82.275, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.54, 0]
],
"o": [
[-0.55, 0],
[0, 0]
],
"v": [
[0.817, 0],
[-0.813, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 0.75, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 13,
"ty": 4,
"nm": "Path 32",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [40.249, -82.275, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.54, 0]
],
"o": [
[-0.55, 0],
[0, 0]
],
"v": [
[0.817, 0],
[-0.813, 0]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 14,
"ty": 4,
"nm": "Path 31",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [39.558, -84.665, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.76, 0]
],
"o": [
[-0.76, 0],
[0, 0]
],
"v": [
[1.145, 0],
[-1.145, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 0.75, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 15,
"ty": 4,
"nm": "Path 30",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [39.558, -84.665, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.76, 0]
],
"o": [
[-0.76, 0],
[0, 0]
],
"v": [
[1.145, 0],
[-1.145, 0]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 16,
"ty": 4,
"nm": "Path 29",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [38.751, -81.166, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.73, 0.12],
[-4.58, 0.44],
[1.94, -2.49],
[0.07, -0.12]
],
"o": [
[0.13, 0.81],
[-5.48, -0.91],
[3.77, -0.36],
[-0.09, 0.11],
[0, 0]
],
"v": [
[1.787, 3.57],
[-1.283, 5.25],
[0.497, -5.23],
[3.397, -0.08],
[3.137, 0.25]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 17,
"ty": 4,
"nm": "Path 28",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [38.751, -81.166, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.73, 0.12],
[-4.58, 0.44],
[1.94, -2.49],
[0.07, -0.12]
],
"o": [
[0.13, 0.81],
[-5.48, -0.91],
[3.77, -0.36],
[-0.09, 0.11],
[0, 0]
],
"v": [
[1.787, 3.57],
[-1.283, 5.25],
[0.497, -5.23],
[3.397, -0.08],
[3.137, 0.25]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 18,
"ty": 4,
"nm": "Path 27",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [29.888, -62.736, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.02, -0.24],
[-0.22, 0],
[-0.01, 0.01],
[0.02, 0.24]
],
"o": [
[-0.01, 0],
[-0.23, 0.01],
[0.02, 0.23],
[0.02, 0],
[0.23, -0.01],
[-0.03, -0.22]
],
"v": [
[0, -0.42],
[-0.04, -0.41],
[-0.42, 0.03],
[0, 0.42],
[0.04, 0.41],
[0.42, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 19,
"ty": 4,
"nm": "Path 26",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [29.888, -62.736, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.02, -0.24],
[-0.24, 0.02],
[0.02, 0.23],
[0.24, -0.02]
],
"o": [
[0.03, 0.24],
[0.23, -0.01],
[-0.03, -0.24],
[-0.23, 0.01]
],
"v": [
[-0.42, 0.03],
[0.04, 0.41],
[0.42, -0.03],
[-0.04, -0.41]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 20,
"ty": 4,
"nm": "Path 25",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [37.816, -65.453, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.02, -0.23],
[-0.22, 0],
[-0.01, 0],
[0.03, 0.23]
],
"o": [
[-0.01, 0],
[-0.24, 0.02],
[0.02, 0.23],
[0.01, 0],
[0.24, -0.02],
[-0.02, -0.23]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 21,
"ty": 4,
"nm": "Path 24",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [37.816, -65.453, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.02, -0.23],
[-0.24, 0.02],
[0.03, 0.23],
[0.24, -0.02]
],
"o": [
[0.02, 0.24],
[0.24, -0.02],
[-0.02, -0.24],
[-0.24, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 22,
"ty": 4,
"nm": "Path 23",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [36.855, -67.199, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.02, -0.23],
[-0.22, 0],
[-0.01, 0],
[0.03, 0.23]
],
"o": [
[-0.01, 0],
[-0.24, 0.02],
[0.02, 0.23],
[0.01, 0],
[0.24, -0.02],
[-0.02, -0.23]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 23,
"ty": 4,
"nm": "Path 22",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [36.855, -67.199, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.02, -0.23],
[-0.24, 0.02],
[0.03, 0.23],
[0.24, -0.02]
],
"o": [
[0.02, 0.24],
[0.24, -0.02],
[-0.02, -0.24],
[-0.24, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 24,
"ty": 4,
"nm": "Path 21",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [34.888, -69.35, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.23, 0],
[0.01, 0],
[-0.02, -0.24],
[-0.23, 0],
[-0.01, 0],
[0.03, 0.24]
],
"o": [
[-0.01, 0],
[-0.24, 0.02],
[0.02, 0.22],
[0.01, 0],
[0.23, -0.02],
[-0.02, -0.22]
],
"v": [
[-0.01, -0.42],
[-0.04, -0.42],
[-0.42, 0.03],
[0.01, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 25,
"ty": 4,
"nm": "Path 20",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [34.888, -69.35, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.02, -0.24],
[-0.24, 0.01],
[0.03, 0.24],
[0.24, -0.01]
],
"o": [
[0.03, 0.24],
[0.23, -0.02],
[-0.02, -0.23],
[-0.24, 0.02]
],
"v": [
[-0.42, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 26,
"ty": 4,
"nm": "Path 19",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [35.304, -72.737, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.03, -0.23],
[-0.22, 0],
[-0.01, 0],
[0.03, 0.23]
],
"o": [
[-0.02, 0],
[-0.24, 0.02],
[0.02, 0.23],
[0.02, 0],
[0.24, -0.02],
[-0.02, -0.23]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 27,
"ty": 4,
"nm": "Path 47",
"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] },
"n": ["0p667_1_0p333_0"],
"t": 0,
"s": [0],
"e": [-7]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 45,
"s": [-7],
"e": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 90,
"s": [0],
"e": [-7]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 135,
"s": [-7],
"e": [0]
},
{ "t": 180 }
],
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [607.863, 362.649, 0],
"e": [605.863, 342.399, 0],
"to": [-0.33333334326744, -3.375, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [605.863, 342.399, 0],
"e": [607.863, 362.649, 0],
"to": [0, 0, 0],
"ti": [-0.04166666790843, 0.04166666790843, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [607.863, 362.649, 0],
"e": [606.113, 342.149, 0],
"to": [0.04166666790843, -0.04166666790843, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [606.113, 342.149, 0],
"e": [607.863, 362.649, 0],
"to": [0, 0, 0],
"ti": [-0.29166665673256, -3.41666674613953, 0]
},
{ "t": 180 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0.97, -4.33],
[0, 0],
[0.05, -5.14],
[6.6, 0.39],
[7.22, 2.61]
],
"o": [
[7.43, -1.98],
[-0.85, 3.81],
[0, 0],
[-0.04, 5.15],
[-4.66, -0.27],
[0, 0]
],
"v": [
[-18.152, -12.671],
[2.048, -13.421],
[-4.192, -6.281],
[20.658, -2.811],
[3.628, 15.599],
[-20.662, 11.679]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 28,
"ty": 4,
"nm": "Path 46",
"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] },
"n": ["0p667_1_0p333_0"],
"t": 0,
"s": [0],
"e": [-5]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 45,
"s": [-5],
"e": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 90,
"s": [0],
"e": [-5]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 135,
"s": [-5],
"e": [0]
},
{ "t": 180 }
],
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [337.874, 324.118, 0],
"e": [344.874, 321.118, 0],
"to": [1.16666662693024, -0.5, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [344.874, 321.118, 0],
"e": [337.874, 324.118, 0],
"to": [0, 0, 0],
"ti": [0, -0.04166666790843, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [337.874, 324.118, 0],
"e": [344.874, 321.368, 0],
"to": [0, 0.04166666790843, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [344.874, 321.368, 0],
"e": [337.874, 324.118, 0],
"to": [0, 0, 0],
"ti": [1.16666662693024, -0.45833334326744, 0]
},
{ "t": 180 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[2.61, 3.77],
[0, 0],
[4.06, 3.82],
[-5.17, 4.97],
[-7.48, 3.29]
],
"o": [
[-4.03, 7.49],
[-2.41, -3.48],
[0, 0],
[-4.07, -3.83],
[3.89, -3.75],
[0, 0]
],
"v": [
[20.327, -0.69],
[6.627, 14.89],
[5.527, 4.66],
[-15.523, 21.9],
[-17.653, -5.21],
[4.777, -22.36]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 29,
"ty": 4,
"nm": "Path 40",
"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 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [465.138, 333.385, 0],
"e": [464.138, 323.385, 0],
"to": [-0.16666667163372, -1.66666662693024, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [464.138, 323.385, 0],
"e": [465.138, 333.385, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [465.138, 333.385, 0],
"e": [464.138, 323.385, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [464.138, 323.385, 0],
"e": [465.138, 333.385, 0],
"to": [0, 0, 0],
"ti": [-0.16666667163372, -1.66666662693024, 0]
},
{ "t": 180 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[2.94, -0.16]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[64.331, 39.749],
[121.551, 46.199],
[125.581, 10.419],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-81.939, -66.981],
[-125.579, -35.911],
[-104.699, -6.591],
[-65.029, -34.771]
],
"c": true
}
],
"e": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[3.391, -1.614]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[65.581, 39.749],
[121.551, 37.699],
[121.831, 4.169],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-80.689, -62.481],
[-119.329, -27.411],
[-98.199, -1.841],
[-63.779, -33.521]
],
"c": true
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[3.391, -1.614]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[65.581, 39.749],
[121.551, 37.699],
[121.831, 4.169],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-80.689, -62.481],
[-119.329, -27.411],
[-98.199, -1.841],
[-63.779, -33.521]
],
"c": true
}
],
"e": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[2.94, -0.16]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[64.331, 39.749],
[121.551, 46.199],
[125.581, 10.419],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-81.939, -66.981],
[-125.579, -35.911],
[-104.699, -6.591],
[-65.029, -34.771]
],
"c": true
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[2.94, -0.16]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[64.331, 39.749],
[121.551, 46.199],
[125.581, 10.419],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-81.939, -66.981],
[-125.579, -35.911],
[-104.699, -6.591],
[-65.029, -34.771]
],
"c": true
}
],
"e": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[3.391, -1.614]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[65.581, 39.749],
[121.551, 37.699],
[121.831, 4.169],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-80.689, -62.481],
[-119.329, -27.411],
[-98.199, -1.841],
[-63.779, -33.521]
],
"c": true
}
]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[3.391, -1.614]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[65.581, 39.749],
[121.551, 37.699],
[121.831, 4.169],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-80.689, -62.481],
[-119.329, -27.411],
[-98.199, -1.841],
[-63.779, -33.521]
],
"c": true
}
],
"e": [
{
"i": [
[-4.02, 0.1],
[-2.07, 0.03],
[-7.72, -6.24],
[-5.81, -3.82],
[-7.78, -4.53],
[-3.7, 3.53],
[-9.13, 25.91],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[2.23, 1.69],
[11.82, 2.51],
[4.79, 0.94],
[12.15, -8.34],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[2.27, -0.05],
[-17.57, 22.14],
[2.37, 1.91],
[6.26, 4.12],
[17.7, 10.3],
[4.88, -4.68],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.75, -2.2],
[-7.09, -16.86],
[-8.66, -1.84],
[-11.33, -2.22],
[0, 0],
[0, 0],
[0, 0],
[2.94, -0.16]
],
"v": [
[-54.15, -35.151],
[-47.559, -35.281],
[-87.76, 33.579],
[-74.99, 42.549],
[-53.27, 55.999],
[-13.6, 71.689],
[29.43, 1.519],
[30.051, 1.849],
[51.661, 32.289],
[56.331, 38.849],
[64.331, 39.749],
[121.551, 46.199],
[125.581, 10.419],
[76.361, 4.879],
[58.57, -20.161],
[58.29, -20.561],
[57.99, -20.941],
[51.99, -26.791],
[-5.51, -65.301],
[-28.79, -70.041],
[-81.939, -66.981],
[-125.579, -35.911],
[-104.699, -6.591],
[-65.029, -34.771]
],
"c": true
}
]
},
{ "t": 180 }
],
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.996078431372549, 0.8, 0.08627450980392157, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 30,
"ty": 4,
"nm": "Path 18",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [35.304, -72.737, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.03, -0.23],
[-0.24, 0.02],
[0.03, 0.23],
[0.24, -0.02]
],
"o": [
[0.02, 0.24],
[0.24, -0.02],
[-0.02, -0.24],
[-0.24, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 31,
"ty": 4,
"nm": "Path 17",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [38.992, -70.192, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.03, -0.23],
[-0.22, 0],
[-0.01, 0],
[0.03, 0.23]
],
"o": [
[-0.01, 0],
[-0.24, 0.02],
[0.02, 0.23],
[0.01, 0],
[0.24, -0.02],
[-0.02, -0.23]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 32,
"ty": 4,
"nm": "Path 16",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [38.992, -70.192, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.03, -0.23],
[-0.24, 0.02],
[0.03, 0.23],
[0.24, -0.02]
],
"o": [
[0.02, 0.24],
[0.24, -0.02],
[-0.02, -0.24],
[-0.24, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 33,
"ty": 4,
"nm": "Path 15",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [31.405, -70.61, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.02, -0.24],
[-0.22, 0],
[-0.01, 0],
[0.02, 0.24]
],
"o": [
[-0.02, 0],
[-0.23, 0.02],
[0.03, 0.22],
[0.01, 0],
[0.23, -0.02],
[-0.02, -0.22]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.42, 0.03],
[0.01, 0.42],
[0.04, 0.42],
[0.42, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 34,
"ty": 4,
"nm": "Path 14",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [31.405, -70.609, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.02, -0.24],
[-0.24, 0.01],
[0.02, 0.24],
[0.24, -0.01]
],
"o": [
[0.03, 0.24],
[0.23, -0.02],
[-0.03, -0.24],
[-0.23, 0.02]
],
"v": [
[-0.42, 0.03],
[0.04, 0.42],
[0.42, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 35,
"ty": 4,
"nm": "Path 13",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [40.701, -73.157, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.03, -0.24],
[-0.22, 0],
[-0.01, 0],
[0.02, 0.24]
],
"o": [
[-0.02, 0],
[-0.23, 0.02],
[0.02, 0.22],
[0.01, 0],
[0.23, -0.02],
[-0.02, -0.22]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0.01, 0.42],
[0.04, 0.42],
[0.42, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 36,
"ty": 4,
"nm": "Path 12",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [40.701, -73.157, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.02, -0.24],
[-0.24, 0.01],
[0.02, 0.24],
[0.24, -0.01]
],
"o": [
[0.03, 0.24],
[0.23, -0.02],
[-0.03, -0.24],
[-0.23, 0.02]
],
"v": [
[-0.42, 0.03],
[0.04, 0.42],
[0.42, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 37,
"ty": 4,
"nm": "Path 11",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [32.239, -61.08, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.03, -0.24],
[-0.22, 0],
[-0.01, 0],
[0.03, 0.23]
],
"o": [
[-0.02, 0],
[-0.24, 0.02],
[0.02, 0.22],
[0.02, 0],
[0.23, -0.02],
[-0.02, -0.22]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 38,
"ty": 4,
"nm": "Path 10",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [32.239, -61.08, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.03, -0.23],
[-0.24, 0.01],
[0.03, 0.23],
[0.24, -0.02]
],
"o": [
[0.02, 0.24],
[0.23, -0.02],
[-0.02, -0.24],
[-0.24, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 39,
"ty": 4,
"nm": "Path 9",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [35.883, -63.151, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.03, -0.23],
[-0.23, 0],
[-0.01, 0],
[0.03, 0.24]
],
"o": [
[-0.02, 0],
[-0.24, 0.02],
[0.02, 0.23],
[0.01, 0],
[0.23, -0.02],
[-0.02, -0.22]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0.01, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 40,
"ty": 4,
"nm": "Path 8",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [35.883, -63.151, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.03, -0.24],
[-0.24, 0.01],
[0.03, 0.23],
[0.24, -0.02]
],
"o": [
[0.02, 0.24],
[0.23, -0.02],
[-0.02, -0.24],
[-0.24, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 41,
"ty": 4,
"nm": "Path 7",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [33.922, -64.272, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.22, 0],
[0.01, 0],
[-0.03, -0.24],
[-0.23, 0],
[-0.01, 0],
[0.03, 0.24]
],
"o": [
[-0.02, 0],
[-0.24, 0.02],
[0.02, 0.23],
[0.01, 0],
[0.23, -0.02],
[-0.02, -0.22]
],
"v": [
[0, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0.01, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 42,
"ty": 4,
"nm": "Path 6",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [33.922, -64.272, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.03, -0.24],
[-0.24, 0.01],
[0.03, 0.23],
[0.24, -0.02]
],
"o": [
[0.02, 0.24],
[0.23, -0.02],
[-0.02, -0.24],
[-0.24, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 43,
"ty": 4,
"nm": "Path 5",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [31.37, -66.4, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.23, 0],
[0.01, 0],
[-0.02, -0.24],
[-0.23, 0],
[-0.01, 0],
[0.02, 0.24]
],
"o": [
[-0.01, 0],
[-0.23, 0.02],
[0.02, 0.22],
[0.01, 0],
[0.23, -0.02],
[-0.02, -0.22]
],
"v": [
[-0.01, -0.42],
[-0.04, -0.42],
[-0.41, 0.03],
[0.01, 0.42],
[0.04, 0.42],
[0.41, -0.03]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 44,
"ty": 4,
"nm": "Path 4",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [31.37, -66.399, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.02, -0.24],
[-0.24, 0.02],
[0.02, 0.24],
[0.24, -0.02]
],
"o": [
[0.02, 0.23],
[0.23, -0.02],
[-0.02, -0.23],
[-0.23, 0.02]
],
"v": [
[-0.41, 0.03],
[0.04, 0.42],
[0.41, -0.03],
[-0.04, -0.42]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 45,
"ty": 4,
"nm": "Shape 2",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [22.304, -75.839, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[1.926, 15.987],
[2.156, 15.537],
[1.646, 15.287],
[1.456, 15.817]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 1,
"ty": "sh",
"ix": 2,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[9.071, 17.908],
[8.871, 17.448],
[8.871, 17.448]
],
"c": true
},
"ix": 2
},
"nm": "Path 2",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 2,
"ty": "sh",
"ix": 3,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[27.907, -8.329],
[28.367, -8.129],
[28.367, -8.129]
],
"c": true
},
"ix": 2
},
"nm": "Path 3",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 3,
"ty": "sh",
"ix": 4,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[29.281, -12.77],
[29.761, -12.65],
[29.761, -12.65]
],
"c": true
},
"ix": 2
},
"nm": "Path 4",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 4,
"ty": "sh",
"ix": 5,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[30.337, -16.405],
[30.797, -16.225],
[30.957, -16.645],
[30.557, -16.845]
],
"c": true
},
"ix": 2
},
"nm": "Path 5",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 5,
"ty": "sh",
"ix": 6,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[7.884, -27.693],
[8.104, -28.143],
[8.064, -28.163],
[8.024, -28.173]
],
"c": true
},
"ix": 2
},
"nm": "Path 6",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 6,
"ty": "sh",
"ix": 7,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-2.921, -30.936],
[-2.781, -31.416],
[-2.831, -31.426],
[-2.881, -31.436]
],
"c": true
},
"ix": 2
},
"nm": "Path 7",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 7,
"ty": "sh",
"ix": 8,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-8.458, -31.368],
[-8.418, -31.858],
[-9.018, -31.908],
[-8.948, -31.308]
],
"c": true
},
"ix": 2
},
"nm": "Path 8",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 8,
"ty": "sh",
"ix": 9,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-7.524, -22.955],
[-7.224, -22.545],
[-6.984, -22.715],
[-7.024, -23.005]
],
"c": true
},
"ix": 2
},
"nm": "Path 9",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 9,
"ty": "sh",
"ix": 10,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-10.15, -21.078],
[-10.44, -21.478],
[-10.57, -21.388],
[-10.63, -21.238]
],
"c": true
},
"ix": 2
},
"nm": "Path 10",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 10,
"ty": "sh",
"ix": 11,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-11.448, -17.47],
[-11.918, -17.63],
[-11.928, -17.61],
[-11.928, -17.58]
],
"c": true
},
"ix": 2
},
"nm": "Path 11",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 11,
"ty": "sh",
"ix": 12,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-12.201, -14.109],
[-12.691, -14.219],
[-12.721, -14.069],
[-12.661, -13.919]
],
"c": true
},
"ix": 2
},
"nm": "Path 12",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 12,
"ty": "sh",
"ix": 13,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-6.503, -0.775],
[-6.943, -0.555],
[-6.043, -0.975]
],
"c": true
},
"ix": 2
},
"nm": "Path 13",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 13,
"ty": "sh",
"ix": 14,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-12.408, -12.532],
[-11.968, -12.762],
[-12.398, -13.622],
[-12.848, -12.772]
],
"c": true
},
"ix": 2
},
"nm": "Path 14",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 14,
"ty": "sh",
"ix": 15,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-20.285, -1.056],
[-20.685, -1.356],
[-20.685, -1.356]
],
"c": true
},
"ix": 2
},
"nm": "Path 15",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 15,
"ty": "sh",
"ix": 16,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-29.615, 12.892],
[-29.175, 13.112],
[-29.175, 13.112]
],
"c": true
},
"ix": 2
},
"nm": "Path 16",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 16,
"ty": "sh",
"ix": 17,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-8.055, 31.096],
[-7.975, 31.596],
[-7.975, 31.596]
],
"c": true
},
"ix": 2
},
"nm": "Path 17",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 17,
"ty": "sh",
"ix": 18,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-1.32, -0.45],
[-1.09, 0.45],
[0, 0],
[1.28, 0.44],
[1.09, 0.55]
],
"o": [
[1.08, 0.55],
[1.3, 0.44],
[0, 0],
[-0.72, 0.29],
[-1.24, -0.42],
[0, 0]
],
"v": [
[1.703, 16.43],
[5.463, 18.11],
[9.253, 18.37],
[8.873, 17.45],
[5.783, 17.16],
[2.153, 15.54]
],
"c": true
},
"ix": 2
},
"nm": "Path 18",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 18,
"ty": "sh",
"ix": 19,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-1.88, 2.02],
[-1.69, 2.62],
[-1.65, 3.88],
[0, 0],
[3.36, -5.18],
[1.83, -1.97],
[1.75, -0.72]
],
"o": [
[1.95, -0.8],
[1.88, -2.02],
[3.4, -5.24],
[0, 0],
[-1.63, 3.84],
[-1.67, 2.6],
[-1.84, 1.98],
[0, 0]
],
"v": [
[9.255, 18.368],
[15.035, 13.948],
[20.445, 6.818],
[28.365, -8.132],
[27.445, -8.522],
[19.605, 6.268],
[14.305, 13.268],
[8.875, 17.448]
],
"c": true
},
"ix": 2
},
"nm": "Path 19",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 19,
"ty": "sh",
"ix": 20,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-0.32, 1.34],
[0, 0],
[0.73, -1.71]
],
"o": [
[0.76, -1.79],
[0, 0],
[-0.31, 1.34],
[0, 0]
],
"v": [
[28.367, -8.13],
[29.767, -12.65],
[28.787, -12.88],
[27.447, -8.52]
],
"c": true
},
"ix": 2
},
"nm": "Path 20",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 20,
"ty": "sh",
"ix": 21,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-0.51, 1.33],
[0, 0],
[0.27, -1.14]
],
"o": [
[0.27, -1.14],
[0, 0],
[-0.53, 1.4],
[0, 0]
],
"v": [
[29.76, -12.651],
[30.8, -16.221],
[29.86, -16.581],
[28.79, -12.881]
],
"c": true
},
"ix": 2
},
"nm": "Path 21",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 21,
"ty": "sh",
"ix": 22,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[30.557, -16.85],
[8.107, -28.14],
[7.657, -27.25],
[30.107, -15.95]
],
"c": true
},
"ix": 2
},
"nm": "Path 22",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 22,
"ty": "sh",
"ix": 23,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[8.023, -28.176],
[-2.777, -31.416],
[-3.067, -30.456],
[7.743, -27.216]
],
"c": true
},
"ix": 2
},
"nm": "Path 23",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 23,
"ty": "sh",
"ix": 24,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-2.884, -31.432],
[-8.414, -31.862],
[-8.494, -30.862],
[-2.964, -30.442]
],
"c": true
},
"ix": 2
},
"nm": "Path 24",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 24,
"ty": "sh",
"ix": 25,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-8.952, -31.309],
[-8.012, -22.899],
[-7.022, -23.009],
[-7.962, -31.419]
],
"c": true
},
"ix": 2
},
"nm": "Path 25",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 25,
"ty": "sh",
"ix": 26,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-7.805, -23.358],
[-10.445, -21.478],
[-9.865, -20.668],
[-7.225, -22.548]
],
"c": true
},
"ix": 2
},
"nm": "Path 26",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 26,
"ty": "sh",
"ix": 27,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-10.625, -21.242],
[-11.915, -17.632],
[-10.975, -17.302],
[-9.685, -20.902]
],
"c": true
},
"ix": 2
},
"nm": "Path 27",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 27,
"ty": "sh",
"ix": 28,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-11.928, -17.576],
[-12.688, -14.226],
[-11.708, -14.006],
[-10.958, -17.356]
],
"c": true
},
"ix": 2
},
"nm": "Path 28",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 28,
"ty": "sh",
"ix": 29,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-12.66, -13.919],
[-6.96, -0.579],
[-6.04, -0.979],
[-11.74, -14.309]
],
"c": true
},
"ix": 2
},
"nm": "Path 29",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 29,
"ty": "sh",
"ix": 30,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-6.048, -1],
[-11.968, -12.76],
[-12.858, -12.31],
[-6.948, -0.55]
],
"c": true
},
"ix": 2
},
"nm": "Path 30",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 30,
"ty": "sh",
"ix": 31,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[3.04, -4.02],
[0, 0],
[-1.93, 3.61]
],
"o": [
[-1.88, 3.53],
[0, 0],
[3.02, -4.01],
[0, 0]
],
"v": [
[-12.855, -12.771],
[-20.685, -1.361],
[-19.885, -0.751],
[-11.965, -12.301]
],
"c": true
},
"ix": 2
},
"nm": "Path 31",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 31,
"ty": "sh",
"ix": 32,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[2.29, -4.64],
[0, 0],
[-3.48, 4.62]
],
"o": [
[-3.47, 4.6],
[0, 0],
[2.24, -4.53],
[0, 0]
],
"v": [
[-20.687, -1.356],
[-30.067, 12.674],
[-29.167, 13.114],
[-19.887, -0.756]
],
"c": true
},
"ix": 2
},
"nm": "Path 32",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 32,
"ty": "sh",
"ix": 33,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-4.34, -3.84],
[-6.8, 1.23],
[0, 0],
[4.16, 3.69],
[-1.97, 4]
],
"o": [
[-2.26, 4.58],
[4.36, 3.87],
[0, 0],
[-6.46, 1.16],
[-4.19, -3.71],
[0, 0]
],
"v": [
[-30.071, 12.67],
[-25.731, 26.48],
[-7.971, 31.59],
[-8.151, 30.61],
[-25.071, 25.73],
[-29.171, 13.11]
],
"c": true
},
"ix": 2
},
"nm": "Path 33",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ind": 33,
"ty": "sh",
"ix": 34,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-1.05, 1.08],
[-0.84, 1.52],
[-0.99, 2.72],
[0, 0],
[1.63, -2.95],
[0.97, -0.98],
[1.06, -0.19]
],
"o": [
[1.33, -0.25],
[1.05, -1.07],
[1.67, -3.03],
[0, 0],
[-0.99, 2.73],
[-0.81, 1.47],
[-0.96, 0.99],
[0, 0]
],
"v": [
[-7.968, 31.597],
[-4.398, 29.487],
[-1.568, 25.507],
[2.402, 16.157],
[1.462, 15.817],
[-2.448, 25.027],
[-5.118, 28.787],
[-8.148, 30.607]
],
"c": true
},
"ix": 2
},
"nm": "Path 34",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "mm",
"mm": 1,
"nm": "Merge Paths 1",
"mn": "ADBE Vector Filter - Merge",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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",
"np": 36,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 46,
"ty": 4,
"nm": "Path 79",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [22.241, -75.817, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-1.97, 5.46],
[-1.81, 0.75],
[-3.29, 7.72],
[-0.32, 1.34],
[-0.52, 1.36],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[3.03, -4.01],
[2.27, -4.59],
[-13.26, 2.39]
],
"o": [
[2.16, 1.09],
[7.4, -3.04],
[0.74, -1.75],
[0.26, -1.14],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.91, 3.57],
[-3.47, 4.61],
[-4.24, 8.57],
[4.79, -0.86]
],
"v": [
[1.995, 15.964],
[9.125, 17.884],
[27.975, -8.346],
[29.345, -12.786],
[30.395, -16.426],
[7.945, -27.716],
[-2.855, -30.956],
[-8.395, -31.386],
[-7.455, -22.976],
[-10.095, -21.096],
[-11.385, -17.486],
[-12.135, -14.136],
[-6.435, -0.796],
[-12.345, -12.556],
[-20.225, -1.076],
[-29.555, 12.874],
[-7.995, 31.074]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 47,
"ty": 4,
"nm": "Path 2",
"parent": 29,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [44.506, -74.614, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[1.83, -1.25],
[1.4, -0.15]
],
"o": [
[-0.33, 2.52],
[-1.82, 1.25],
[0, 0]
],
"v": [
[3.445, -5.366],
[-0.005, 4.964],
[-3.445, 4.294]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 48,
"ty": 4,
"nm": "Path 78",
"parent": 53,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-25.31, 24.874, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[4.31, -3.33],
[0, 0],
[0.25, 0.27],
[-0.68, 2.02],
[0.98, 3.16],
[-1.88, 0.38],
[-0.8, -1.7]
],
"o": [
[-0.01, 0.01],
[-0.09, -0.05],
[-0.78, -0.83],
[1.04, -3.08],
[-0.68, -2.17],
[0.98, -0.2],
[1.91, 4.04]
],
"v": [
[-0.471, 9.562],
[-0.471, 9.592],
[-1.651, 8.792],
[-2.871, 4.412],
[-2.041, -4.978],
[-0.851, -9.538],
[1.819, -7.698]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.898038983345, 0.901961028576, 0.905882000923, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 49,
"ty": 4,
"nm": "Path 77",
"parent": 53,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-24.909, 24.853, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[11.79, -9.11],
[0, 0],
[0.7, 0.75],
[-1.87, 5.52],
[2.68, 8.64],
[-5.14, 1.04],
[-2.2, -4.65]
],
"o": [
[-0.04, 0.02],
[-0.27, -0.14],
[-2.12, -2.28],
[2.85, -8.41],
[-1.84, -5.93],
[2.69, -0.55],
[5.21, 11.03]
],
"v": [
[-1.29, 26.164],
[-1.36, 26.174],
[-4.52, 24.044],
[-7.84, 12.074],
[-5.59, -13.586],
[-2.33, -26.036],
[4.98, -21.006]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 50,
"ty": 4,
"nm": "Path 55",
"parent": 53,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-1.364, 21.898, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.94, 0.59],
[0.5, 0.57],
[-0.55, 1.49],
[-1.03, -0.65],
[0.59, -0.94]
],
"o": [
[-0.73, -0.46],
[0.61, -1.57],
[0.68, 1.3],
[0.93, 0.59],
[-0.59, 0.93]
],
"v": [
[-0.617, 2.943],
[-2.447, 1.373],
[-0.677, -3.247],
[1.513, -0.447],
[2.143, 2.313]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 51,
"ty": 4,
"nm": "Path 54",
"parent": 53,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-4.622, 33.251, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[-0.5, 1.43],
[-0.36, -0.24],
[0, 0],
[0, 0],
[-0.15, -0.1],
[-0.88, -0.68],
[0.67, -0.87],
[0.88, 0.67],
[0.75, 0.5],
[0.14, 0.09]
],
"o": [
[0, 0],
[0.3, -1.22],
[0.33, 0.23],
[0, 0],
[0, 0],
[0.14, 0.09],
[0.78, 0.52],
[0.88, 0.67],
[-0.67, 0.88],
[-0.78, -0.61],
[-0.14, -0.09],
[0, 0]
],
"v": [
[-2.937, 0.863],
[-2.987, 0.823],
[-1.757, -3.177],
[-0.727, -2.477],
[-0.727, -2.477],
[-0.727, -2.477],
[-0.297, -2.187],
[2.203, -0.407],
[2.573, 2.393],
[-0.237, 2.763],
[-2.527, 1.133],
[-2.937, 0.863]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 52,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 0,
"s": [0],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 15,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 143,
"s": [100],
"e": [0]
},
{ "t": 158 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [831.943, 374.158, 0],
"e": [914.943, 374.158, 0],
"to": [13.8333330154419, 0, 0],
"ti": [-13.8333330154419, 0, 0]
},
{ "t": 180 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, -11.61],
[0, 0],
[0, -11.62],
[-11.61, 0],
[0, 0],
[0, 11.61],
[11.61, 0],
[0, 0],
[10.82, 0]
],
"o": [
[-10.82, 0],
[0, 0],
[-11.61, 0],
[0, 11.61],
[0, 0],
[11.61, 0],
[0, -11.62],
[0, 0],
[0, -11.61],
[0, 0]
],
"v": [
[-1.415, -31.55],
[-21.005, -10.52],
[-25.615, -10.52],
[-46.645, 10.52],
[-25.615, 31.55],
[25.615, 31.55],
[46.645, 10.52],
[25.615, -10.52],
[25.445, -10.52],
[5.855, -31.55]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [1, 0.21176470588235294, 0.2823529411764706, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 53,
"ty": 4,
"nm": "Path 53",
"parent": 29,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 0,
"s": [0],
"e": [-5]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 45,
"s": [-5],
"e": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 90,
"s": [0],
"e": [-5]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 135,
"s": [-5],
"e": [0]
},
{ "t": 180 }
],
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [-133.302, 205.913, 0],
"e": [-126.552, 212.413, 0],
"to": [1.125, 1.08333337306976, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [-126.552, 212.413, 0],
"e": [-133.302, 205.913, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [-133.302, 205.913, 0],
"e": [-126.552, 212.413, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [-126.552, 212.413, 0],
"e": [-133.302, 205.913, 0],
"to": [0, 0, 0],
"ti": [1.125, 1.08333337306976, 0]
},
{ "t": 180 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.51, 0.39],
[0.9, 0.65],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0.87, 0.21],
[1.19, 1.53],
[-0.08, 1.46],
[0, 0],
[-0.01, 0.24],
[0.21, 0.66]
],
"o": [
[0.71, -0.55],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.25, -0.88],
[-1.14, -0.28],
[-1.51, -1.95],
[0, 0],
[0.02, -0.27],
[0.01, -0.81],
[0.83, -0.69]
],
"v": [
[-5.628, -5.049],
[-6.639, -7.079],
[-4.089, -9.529],
[7.932, 1.82],
[0.242, 9.531],
[0.242, 9.501],
[-2.859, 8.171],
[-6.158, 6.12],
[-7.488, 0.84],
[-7.488, 0.84],
[-7.449, 0.07],
[-7.928, -3.21]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 54,
"ty": 4,
"nm": "Path 41",
"parent": 53,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-13.686, 22.804, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[8.56, 1.39],
[1.06, 0.73],
[0.31, 0.2],
[6.11, 10.53],
[1.91, 0.61],
[1.16, 0.51],
[-0.36, 0.16],
[-0.72, 0.2],
[-0.49, 0.13],
[0, 0],
[-4.28, -0.3],
[-0.01, 0],
[0, 0],
[-0.03, -0.01],
[0, 0],
[-0.04, 0.01],
[-0.09, 0],
[-0.6, -0.34],
[1.04, -0.79],
[0.84, -0.68],
[0.01, -0.81],
[0.01, -0.27],
[-1.51, -1.94],
[-1.13, -0.28],
[-1.25, -0.88],
[2.18, -5.56],
[0.42, -3.17]
],
"o": [
[-1.78, -0.28],
[-0.3, -0.2],
[11.89, -9.06],
[-1.79, -3.08],
[-0.73, -0.23],
[0.5, -0.16],
[0.46, -0.2],
[0.49, -0.13],
[0, 0],
[4.08, -1.12],
[0.01, 0],
[0.01, 0.01],
[0.03, 0],
[0, 0],
[0.07, 0.01],
[0.09, -0.02],
[0.66, -1.61],
[1.01, 0.56],
[-0.51, 0.39],
[0.21, 0.66],
[-0.01, 0.24],
[-0.09, 1.46],
[1.2, 1.54],
[0.88, 0.21],
[0.2, 2.88],
[-1.84, 4.73],
[-1.05, 7.94]
],
"v": [
[-7.806, 30.536],
[-11.686, 28.816],
[-12.586, 28.216],
[-6.646, -18.964],
[-11.156, -22.914],
[-13.936, -23.944],
[-12.716, -24.424],
[-11.076, -25.024],
[-9.596, -25.424],
[-9.586, -25.434],
[3.114, -27.444],
[3.134, -27.444],
[3.154, -27.434],
[3.244, -27.414],
[3.244, -27.414],
[3.414, -27.394],
[3.674, -27.424],
[5.864, -30.624],
[8.054, -27.864],
[5.754, -26.024],
[6.234, -22.734],
[6.204, -21.964],
[7.524, -16.694],
[10.824, -14.634],
[13.924, -13.304],
[9.794, 0.656],
[5.674, 13.296]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.40000000596, 0.474510014057, 0.949020028114, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 55,
"ty": 4,
"nm": "Path 43",
"parent": 60,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-12.048, -7.202, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.53, 0.3],
[0, 0],
[5.64, 0.05],
[0, 0]
],
"o": [
[0, 0],
[-3.94, 4.17],
[0, 0],
[0.89, -0.53]
],
"v": [
[8.814, 0.82],
[7.044, -2.23],
[-8.816, 0.21],
[6.424, 2.23]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.40000000596, 0.474510014057, 0.949020028114, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 56,
"ty": 4,
"nm": "Path 76",
"parent": 60,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-27.687, 19.709, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[5.04, -2.71],
[0, 0],
[0.21, 0.3],
[-1.05, 1.97],
[0.48, 3.44],
[-2.01, 0.07],
[-0.54, -1.9]
],
"o": [
[-0.02, 0.01],
[-0.09, -0.07],
[-0.7, -0.97],
[1.61, -3.01],
[-0.32, -2.36],
[1.06, -0.04],
[1.28, 4.5]
],
"v": [
[-1.838, 9.909],
[-1.838, 9.929],
[-2.928, 8.899],
[-3.438, 4.159],
[-0.968, -5.421],
[1.052, -9.931],
[3.502, -7.561]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.898038983345, 0.901961028576, 0.905882000923, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 57,
"ty": 4,
"nm": "Path 75",
"parent": 60,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-27.66, 19.569, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[13.12, -7.05],
[0, 0],
[0.57, 0.79],
[-2.75, 5.15],
[1.23, 8.96],
[-5.23, 0.18],
[-1.41, -4.95]
],
"o": [
[-0.04, 0.02],
[-0.24, -0.17],
[-1.81, -2.52],
[4.19, -7.83],
[-0.84, -6.15],
[2.75, -0.1],
[3.33, 11.73]
],
"v": [
[-4.789, 25.799],
[-4.789, 25.859],
[-7.639, 23.179],
[-8.939, 10.829],
[-2.509, -14.111],
[2.741, -25.851],
[9.131, -19.691]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 58,
"ty": 4,
"nm": "Path 52",
"parent": 60,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-3.481, 20.79, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0.82, 0.74],
[0.4, 0.65],
[-0.79, 1.38],
[-0.91, -0.81],
[0.73, -0.82]
],
"o": [
[-0.65, -0.57],
[0.86, -1.44],
[0.46, 1.4],
[0.83, 0.73],
[-0.73, 0.83]
],
"v": [
[-0.887, 2.801],
[-2.437, 0.951],
[0.063, -3.309],
[1.763, -0.189],
[1.933, 2.631]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 59,
"ty": 4,
"nm": "Path 51",
"parent": 60,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-8.508, 31.41, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[-0.73, 1.33],
[-0.31, -0.29],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-0.13, -0.12],
[-0.76, -0.82],
[0.81, -0.75],
[0.75, 0.81],
[0.66, 0.63],
[0.06, 0.06],
[0, 0]
],
"o": [
[0, 0],
[0.5, -1.15],
[0.28, 0.28],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0.12, 0.12],
[0.68, 0.65],
[0.76, 0.81],
[-0.8, 0.75],
[-0.68, -0.73],
[-0.06, -0.06],
[0, 0],
[0, 0]
],
"v": [
[-2.881, 0.417],
[-2.931, 0.367],
[-1.061, -3.373],
[-0.171, -2.523],
[-0.161, -2.513],
[-0.161, -2.513],
[-0.161, -2.513],
[-0.161, -2.513],
[0.219, -2.163],
[2.389, 0.007],
[2.289, 2.837],
[-0.531, 2.737],
[-2.531, 0.747],
[-2.711, 0.577],
[-2.881, 0.417]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 60,
"ty": 4,
"nm": "Path 50",
"parent": 29,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 0,
"s": [0],
"e": [11]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 45,
"s": [11],
"e": [0]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 90,
"s": [0],
"e": [11]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 135,
"s": [11],
"e": [0]
},
{ "t": 180 }
],
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 0,
"s": [-200.262, 181.797, 0],
"e": [-206.762, 170.797, 0],
"to": [-1.08333337306976, -1.83333337306976, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 45,
"s": [-206.762, 170.797, 0],
"e": [-200.262, 181.797, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 90,
"s": [-200.262, 181.797, 0],
"e": [-206.762, 170.797, 0],
"to": [0, 0, 0],
"ti": [0, 0, 0]
},
{
"i": { "x": 0.667, "y": 1 },
"o": { "x": 0.333, "y": 0 },
"n": "0p667_1_0p333_0",
"t": 135,
"s": [-206.762, 170.797, 0],
"e": [-200.262, 181.797, 0],
"to": [0, 0, 0],
"ti": [-1.08333337306976, -1.83333337306976, 0]
},
{ "t": 180 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.05, 0.24],
[0.08, 0.74],
[-0.53, 0.3],
[0.8, 0.77],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0.83, 0.36],
[0.93, 1.71],
[-0.32, 1.43],
[0, 0]
],
"o": [
[0.13, -0.76],
[0.88, -0.53],
[0.78, -0.44],
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[-1.08, -1.07],
[-1.07, -0.47],
[-1.17, -2.16],
[0, 0],
[0.06, -0.26]
],
"v": [
[-5.701, -1.74],
[-5.621, -4.97],
[-3.231, -6.38],
[-3.921, -8.51],
[-3.401, -8.87],
[6.199, 4.66],
[0.329, 8.87],
[0.329, 8.83],
[-2.501, 7.01],
[-5.421, 4.44],
[-5.861, -0.98],
[-5.861, -0.98]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 61,
"ty": 4,
"nm": "Path 42",
"parent": 60,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [-16.059, 20.862, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-0.05, 0.24],
[0.08, 0.74],
[0, 0],
[0.51, -0.05],
[0.49, -0.13],
[0, 0],
[0.52, -0.08],
[-0.68, -0.35],
[-1.26, -3.33],
[13.22, -6.99],
[-0.38, -0.28],
[0, 0],
[-1.6, -0.53],
[-2.34, 7.67],
[-2.59, 4.36],
[-0.27, 2.87],
[0.83, 0.35],
[0.93, 1.71],
[-0.32, 1.43]
],
"o": [
[0.13, -0.76],
[0, 0],
[-0.52, 0.05],
[-0.75, 0.07],
[0, 0],
[-0.38, 0.09],
[1.06, 0.7],
[1.79, 0.92],
[4.3, 11.39],
[0.48, 0.33],
[0, 0],
[1.06, 0.79],
[8.22, 2.78],
[0.93, -3.05],
[3.06, -5.12],
[-1.08, -1.07],
[-1.08, -0.47],
[-1.17, -2.17],
[0.06, -0.27]
],
"v": [
[10.358, -22.601],
[10.438, -25.831],
[-4.802, -27.851],
[-6.342, -27.691],
[-8.062, -27.371],
[-8.062, -27.371],
[-9.342, -27.101],
[-6.772, -25.631],
[-2.972, -20.991],
[-16.392, 24.509],
[-15.122, 25.419],
[-15.122, 25.419],
[-11.632, 27.359],
[3.898, 12.849],
[10.028, 1.059],
[16.388, -12.031],
[13.558, -13.851],
[10.638, -16.421],
[10.198, -21.841]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.40000000596, 0.474510014057, 0.949020028114, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 62,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 0,
"s": [0],
"e": [360]
},
{ "t": 179 }
],
"ix": 10
},
"p": { "a": 0, "k": [481.164, 458.842, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-9.659, -3.329],
[3.331, -9.658],
[9.661, 3.331],
[-3.329, 9.661]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [0, 1, 0.682353019714, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 63,
"ty": 4,
"nm": "Oval",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [910.5, 245.5, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [21, 21], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Ellipse Path 1",
"mn": "ADBE Vector Shape - Ellipse",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Oval",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "tm",
"s": { "a": 0, "k": 0, "ix": 1 },
"e": { "a": 0, "k": 83, "ix": 2 },
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 0,
"s": [0],
"e": [360]
},
{ "t": 179 }
],
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 64,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [591.469, 179.178, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-0.25, -0.25],
[-0.25, 0.25],
[0.25, 0.25],
[0.25, -0.25]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 65,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [645.17, 182.476, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[0.27, -0.18],
[-0.22, -0.25],
[-0.27, 0.08],
[0.01, 0.25]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.254902005196, 0.250979989767, 0.258823990822, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 66,
"ty": 0,
"nm": "loc",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [633.5, 242.75, 0], "ix": 2 },
"a": { "a": 0, "k": [28, 53.5, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
"o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 25,
"s": [0, 0, 100],
"e": [26, 26, 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] },
"n": ["0p833_1_0p333_0", "0p833_1_0p333_0", "0p833_1_0p333_0"],
"t": 35,
"s": [26, 26, 100],
"e": [26, 26, 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] },
"n": ["0p833_1_0p167_0", "0p833_1_0p167_0", "0p833_1_0p167_0"],
"t": 150,
"s": [26, 26, 100],
"e": [0, 0, 100]
},
{ "t": 160 }
],
"ix": 6
}
},
"ao": 0,
"w": 56,
"h": 107,
"ip": 25,
"op": 205,
"st": 25,
"bm": 0
},
{
"ddd": 0,
"ind": 67,
"ty": 0,
"nm": "loc",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [749.5, 225, 0], "ix": 2 },
"a": { "a": 0, "k": [28, 53.5, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
"o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 10,
"s": [0, 0, 100],
"e": [43, 43, 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] },
"n": ["0p833_1_0p333_0", "0p833_1_0p333_0", "0p833_1_0p333_0"],
"t": 20,
"s": [43, 43, 100],
"e": [43, 43, 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] },
"n": ["0p833_1_0p167_0", "0p833_1_0p167_0", "0p833_1_0p167_0"],
"t": 157,
"s": [43, 43, 100],
"e": [0, 0, 100]
},
{ "t": 167 }
],
"ix": 6
}
},
"ao": 0,
"w": 56,
"h": 107,
"ip": 10,
"op": 190,
"st": 10,
"bm": 0
},
{
"ddd": 0,
"ind": 68,
"ty": 0,
"nm": "loc",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [557.5, 423, 0], "ix": 2 },
"a": { "a": 0, "k": [28, 53.5, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
"o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 20,
"s": [0, 0, 100],
"e": [43, 43, 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] },
"n": ["0p833_1_0p333_0", "0p833_1_0p333_0", "0p833_1_0p333_0"],
"t": 30,
"s": [43, 43, 100],
"e": [43, 43, 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] },
"n": ["0p833_1_0p167_0", "0p833_1_0p167_0", "0p833_1_0p167_0"],
"t": 163,
"s": [43, 43, 100],
"e": [0, 0, 100]
},
{ "t": 173 }
],
"ix": 6
}
},
"ao": 0,
"w": 56,
"h": 107,
"ip": 20,
"op": 200,
"st": 20,
"bm": 0
},
{
"ddd": 0,
"ind": 69,
"ty": 0,
"nm": "loc",
"refId": "comp_0",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [713, 434.5, 0], "ix": 2 },
"a": { "a": 0, "k": [28, 53.5, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
"o": { "x": [0.333, 0.333, 0.333], "y": [0, 0, 0] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 5,
"s": [0, 0, 100],
"e": [100, 100, 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] },
"n": ["0p833_1_0p333_0", "0p833_1_0p333_0", "0p833_1_0p333_0"],
"t": 15,
"s": [100, 100, 100],
"e": [100, 100, 100]
},
{
"i": { "x": [0.833, 0.833, 0.833], "y": [1, 1, 1] },
"o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] },
"n": ["0p833_1_0p167_0", "0p833_1_0p167_0", "0p833_1_0p167_0"],
"t": 141,
"s": [100, 100, 100],
"e": [0, 0, 100]
},
{ "t": 152 }
],
"ix": 6
}
},
"ao": 0,
"w": 56,
"h": 107,
"ip": 5,
"op": 185,
"st": 5,
"bm": 0
},
{
"ddd": 0,
"ind": 70,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 30,
"s": [0],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 45,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 135,
"s": [100],
"e": [0]
},
{ "t": 150 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [788.985, 296.273, 0],
"e": [758.985, 296.273, 0],
"to": [-5, 0, 0],
"ti": [5, 0, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-4.4, 0],
[0, 0],
[0, 4.39],
[4.31, 0.1],
[0, 0],
[4.4, 0],
[0, -4.4],
[0, 0],
[0, -4.4]
],
"o": [
[0, 0],
[4.39, 0],
[0, -4.33],
[0, 0],
[0, -4.4],
[-4.39, 0],
[0, 0],
[-4.4, 0],
[0, 4.39]
],
"v": [
[-9.079, 11.941],
[9.081, 11.941],
[17.041, 3.982],
[9.271, -3.979],
[9.271, -3.979],
[1.311, -11.939],
[-6.649, -3.979],
[-9.079, -3.979],
[-17.039, 3.982]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.40000000596, 0.474510014057, 0.949020028114, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 71,
"ty": 4,
"nm": "Path 3",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [364.123, 728.896, 0],
"e": [878.123, 512.896, 0],
"to": [306.837463378906, -13.7531175613403, 0],
"ti": [-53.000659942627, 76.0833053588867, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-2.49, 0],
[0, 2.48],
[2.49, 0],
[0, -2.49]
],
"o": [
[2.49, 0],
[0, -2.49],
[-2.49, 0],
[0, 2.48]
],
"v": [
[0.004, 4.504],
[4.504, 0.004],
[0.004, -4.506],
[-4.506, 0.004]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 72,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [878.123, 512.896, 0],
"e": [680.123, -23.104, 0],
"to": [177, -179.33332824707, 0],
"ti": [327, 69.3333358764648, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-2.49, 0],
[0, 2.48],
[2.49, 0],
[0, -2.49]
],
"o": [
[2.49, 0],
[0, -2.49],
[-2.49, 0],
[0, 2.48]
],
"v": [
[0.004, 4.504],
[4.504, 0.004],
[0.004, -4.506],
[-4.506, 0.004]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 73,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [582.72, 283.167, 0],
"e": [606.72, 283.167, 0],
"to": [4, 0, 0],
"ti": [-4, 0, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-10.087, 0],
[10.083, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 165,
"s": [0],
"e": [100]
},
{ "t": 175 }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 0,
"s": [0],
"e": [100]
},
{ "t": 10 }
],
"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": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 74,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [617.15, 283.167, 0],
"e": [641.15, 283.167, 0],
"to": [4, 0, 0],
"ti": [-4, 0, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-21.255, 0],
[21.255, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 150,
"s": [0],
"e": [100]
},
{ "t": 160 }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 15,
"s": [0],
"e": [100]
},
{ "t": 25 }
],
"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": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 75,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [604.306, 278.218, 0],
"e": [628.306, 278.218, 0],
"to": [4, 0, 0],
"ti": [-4, 0, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-10.087, 0],
[10.083, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 150,
"s": [0],
"e": [100]
},
{ "t": 160 }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 10,
"s": [0],
"e": [100]
},
{ "t": 20 }
],
"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": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 76,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 0,
"s": [638.732, 278.218, 0],
"e": [662.732, 278.218, 0],
"to": [4, 0, 0],
"ti": [-4, 0, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[-21.255, 0],
[21.255, 0]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 2,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Path",
"np": 2,
"cix": 2,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 154,
"s": [0],
"e": [100]
},
{ "t": 164 }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 23,
"s": [0],
"e": [100]
},
{ "t": 33 }
],
"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": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 77,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [633.671, 464.678, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[1.36, 0.13],
[0.54, -0.66],
[1.5, 1.39],
[0.89, -2.88],
[3.57, 0.27],
[-0.74, -4.38],
[0.87, 0.34],
[-0.42, -1.99],
[-0.5, -2.15],
[0.83, -0.07],
[0.14, -0.32],
[-2.43, -2.28],
[-1.94, -0.12],
[0, 0],
[0, 0],
[0, 0],
[-0.88, 4.16]
],
"o": [
[-0.51, -0.05],
[0.77, -3.29],
[-0.33, -0.31],
[-0.56, -5.17],
[-4.62, -0.36],
[-1.02, -1.57],
[-0.94, -0.36],
[0.42, 1.98],
[-0.97, -1.09],
[-1.2, 0.1],
[-1.16, 2.89],
[2.28, 2.13],
[0, 0],
[0, 0],
[0, 0],
[4.62, -0.38],
[0.6, -2.83]
],
"v": [
[9.29, 0.236],
[7.93, 1.256],
[8.76, -9.104],
[4.7, -7.704],
[-0.84, -19.994],
[-3.31, -4.914],
[-5.28, -7.884],
[-7.97, -4.934],
[-6.89, 1.756],
[-9.17, -0.054],
[-11.23, 2.156],
[-8.54, 11.026],
[-1.47, 13.846],
[-1.47, 20.006],
[0.75, 20.006],
[0.75, 13.816],
[11.5, 6.446]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 78,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 20,
"s": [0],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 35,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 162,
"s": [100],
"e": [0]
},
{ "t": 177 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.833, "y": 0.833 },
"o": { "x": 0.167, "y": 0.167 },
"n": "0p833_0p833_0p167_0p167",
"t": 10,
"s": [609.87, 507.195, 0],
"e": [556.87, 507.195, 0],
"to": [-8.83333301544189, 0, 0],
"ti": [8.83333301544189, 0, 0]
},
{ "t": 179 }
],
"ix": 2
},
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[-10.46, 0],
[0, -10.46],
[0, 0],
[0, -10.3],
[10.46, 0],
[0, 0],
[0, 10.46],
[-10.46, 0]
],
"o": [
[0, -10.46],
[10.46, 0],
[0, 0],
[10.25, 0.24],
[0, 10.46],
[0, 0],
[-10.46, 0],
[0, -10.46],
[0, 0]
],
"v": [
[-15.809, -9.471],
[3.13, -28.411],
[22.07, -9.471],
[22.07, -9.462],
[40.551, 9.469],
[21.611, 28.408],
[-21.609, 28.408],
[-40.549, 9.469],
[-21.609, -9.471]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.4, 0.474509803922, 0.949019607843, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 79,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [612.062, 473.987, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[1.36, 0.13],
[0.55, -0.66],
[1.5, 1.39],
[0.89, -2.88],
[3.57, 0.27],
[-0.74, -4.38],
[0.87, 0.33],
[-0.42, -1.99],
[-0.5, -2.15],
[0.83, -0.07],
[0.14, -0.32],
[-2.43, -2.28],
[-1.94, -0.12],
[0, 0],
[0, 0],
[0, 0],
[-0.88, 4.16]
],
"o": [
[-0.51, -0.05],
[0.78, -3.29],
[-0.33, -0.31],
[-0.56, -5.17],
[-4.62, -0.36],
[-1.02, -1.57],
[-0.94, -0.36],
[0.42, 1.98],
[-0.97, -1.09],
[-1.2, 0.1],
[-1.16, 2.89],
[2.28, 2.13],
[0, 0],
[0, 0],
[0, 0],
[4.62, -0.39],
[0.6, -2.83]
],
"v": [
[9.29, 0.237],
[7.92, 1.257],
[8.76, -9.103],
[4.7, -7.703],
[-0.84, -19.993],
[-3.31, -4.913],
[-5.28, -7.883],
[-7.97, -4.933],
[-6.89, 1.757],
[-9.17, -0.053],
[-11.23, 2.157],
[-8.54, 11.027],
[-1.47, 13.847],
[-1.47, 20.007],
[0.75, 20.007],
[0.75, 13.817],
[11.5, 6.447]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 80,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [735.179, 328.561, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[1.36, 0.13],
[0.54, -0.66],
[1.5, 1.39],
[0.89, -2.88],
[3.57, 0.27],
[-0.74, -4.38],
[0.87, 0.33],
[-0.42, -1.99],
[-0.5, -2.15],
[0.83, -0.07],
[0.14, -0.32],
[-2.43, -2.28],
[-1.94, -0.12],
[0, 0],
[0, 0],
[0, 0],
[-0.88, 4.16]
],
"o": [
[-0.51, -0.05],
[0.77, -3.29],
[-0.33, -0.31],
[-0.56, -5.17],
[-4.62, -0.36],
[-1.02, -1.57],
[-0.94, -0.36],
[0.42, 1.98],
[-0.97, -1.09],
[-1.2, 0.1],
[-1.16, 2.89],
[2.28, 2.13],
[0, 0],
[0, 0],
[0, 0],
[4.62, -0.38],
[0.6, -2.83]
],
"v": [
[9.29, 0.237],
[7.93, 1.257],
[8.76, -9.103],
[4.7, -7.703],
[-0.84, -19.993],
[-3.31, -4.913],
[-5.28, -7.883],
[-7.97, -4.933],
[-6.89, 1.757],
[-9.17, -0.053],
[-11.23, 2.157],
[-8.54, 11.027],
[-1.47, 13.847],
[-1.47, 20.007],
[0.75, 20.007],
[0.75, 13.817],
[11.5, 6.447]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.815685987473, 0.823529005051, 0.827450990677, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 81,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [724.418, 321.663, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[1.36, 0.13],
[0.55, -0.66],
[1.5, 1.39],
[0.89, -2.88],
[3.57, 0.27],
[-0.74, -4.39],
[0.88, 0.33],
[-0.42, -1.99],
[-0.5, -2.15],
[0.84, -0.07],
[0.13, -0.32],
[-2.44, -2.28],
[-1.94, -0.12],
[0, 0],
[0, 0],
[0, 0],
[-0.88, 4.16]
],
"o": [
[-0.51, -0.05],
[0.78, -3.29],
[-0.33, -0.31],
[-0.56, -5.17],
[-4.62, -0.36],
[-1.02, -1.57],
[-0.93, -0.36],
[0.42, 1.98],
[-0.97, -1.09],
[-1.19, 0.1],
[-1.16, 2.89],
[2.28, 2.13],
[0, 0],
[0, 0],
[0, 0],
[4.62, -0.39],
[0.6, -2.83]
],
"v": [
[9.29, 0.237],
[7.92, 1.257],
[8.76, -9.103],
[4.7, -7.703],
[-0.84, -19.993],
[-3.31, -4.913],
[-5.29, -7.883],
[-7.97, -4.933],
[-6.89, 1.757],
[-9.18, -0.053],
[-11.23, 2.157],
[-8.54, 11.027],
[-1.47, 13.847],
[-1.47, 20.007],
[0.75, 20.007],
[0.75, 13.817],
[11.5, 6.447]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 82,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [765.533, 290.074, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-19.03, -19.54],
[18.05, -7.01],
[6.09, -0.76],
[16.08, 36.39],
[18.38, 17.6],
[-7.01, 68.17],
[11.02, 1.53],
[-2.37, 18],
[-0.07, 0],
[-4.51, 0],
[-34.5, -39.67],
[7.14, -2.74],
[2.19, -11.49]
],
"o": [
[13.51, 13.87],
[-9, 3.49],
[-18.38, 2.3],
[-16.09, -36.38],
[-18.39, -17.59],
[7.01, -68.17],
[-7.12, -0.99],
[0.07, -0.01],
[4.33, -0.33],
[52.55, 0],
[-11.87, 5.65],
[-17.62, 6.75],
[-1.24, 6.5]
],
"v": [
[67.733, 64.6],
[58.153, 108.62],
[34.303, 115.73],
[-18.547, 88.54],
[-75.227, 63.67],
[-35.287, -57.37],
[-68.637, -72.69],
[-71.307, -117.28],
[-71.107, -117.3],
[-57.777, -117.79],
[79.173, -55.38],
[48.093, -42.97],
[28.283, 14.63]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 83,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [696.833, 426.705, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[-4.46, -4.64],
[69.4, 0],
[0, 100.78],
[-1.62, 9.78],
[-0.5, -0.16],
[-44.95, -39.3],
[-57.4, 19.34],
[-22.43, -1.54],
[-3.75, 12.38]
],
"o": [
[-30.84, 57.05],
[-100.77, 0],
[0, -10.22],
[0.5, 0.1],
[0, 0],
[44.95, 39.29],
[57.39, -19.34],
[22.42, 1.55],
[3.18, -10.5]
],
"v": [
[171.54, 14.704],
[10.93, 110.504],
[-171.54, -71.966],
[-169.08, -101.996],
[-167.58, -101.606],
[-81.41, -89.076],
[11.34, 40.704],
[101.99, 12.854],
[148.52, 6.664]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 1, 1, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 84,
"ty": 4,
"nm": "Path",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [707.763, 354.745, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, -45.7],
[13.86, -25.72],
[0.05, -0.09],
[69.4, 0],
[0, 100.78],
[-1.62, 9.78],
[-0.07, 0.4],
[-84.07, 6.1],
[-4.51, 0],
[-33.45, -38.57]
],
"o": [
[0, 31.26],
[-0.05, 0.09],
[-30.84, 57.05],
[-100.77, 0],
[0, -10.22],
[0.06, -0.4],
[14.07, -81.6],
[4.42, -0.33],
[55.07, 0],
[27.78, 32.02]
],
"v": [
[182.47, -0.005],
[160.75, 86.405],
[160.61, 86.665],
[0, 182.465],
[-182.47, -0.005],
[-180.01, -30.035],
[-179.81, -31.225],
[-13.4, -181.975],
[0, -182.465],
[137.89, -119.505]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "fl",
"c": {
"a": 0,
"k": [0.941175997257, 0.945097982883, 0.945097982883, 1],
"ix": 4
},
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"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": "Path",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 85,
"ty": 4,
"nm": "Oval Copy",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [708, 355, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [388, 388], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Ellipse Path 1",
"mn": "ADBE Vector Shape - Ellipse",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [0.137254998088, 0.121569000185, 0.125489994884, 1],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 1, "ix": 5 },
"lc": 1,
"lj": 1,
"ml": 4,
"ml2": { "a": 0, "k": 4, "ix": 8 },
"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": "Oval Copy",
"np": 2,
"cix": 2,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 155,
"s": [0],
"e": [75]
},
{ "t": 175 }
],
"ix": 1
},
"e": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 5,
"s": [0],
"e": [75]
},
{ "t": 20 }
],
"ix": 2
},
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 10,
"s": [0],
"e": [360]
},
{ "t": 179 }
],
"ix": 3
},
"m": 1,
"ix": 2,
"nm": "Trim Paths 1",
"mn": "ADBE Vector Filter - Trim",
"hd": false
}
],
"ip": 0,
"op": 180,
"st": 0,
"bm": 0
}
],
"markers": []
}
================================================
FILE: src/assets/animations/primaryLoadingDots.json
================================================
{
"v": "4.10.2",
"fr": 29.9700012207031,
"ip": 0,
"op": 40.0000016292334,
"w": 42,
"h": 17,
"nm": "loading",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 4,
"nm": "Left",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 0,
"s": [30],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 15,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 17.5,
"s": [100],
"e": [30]
},
{ "t": 30.0000012219251 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [23.188, 8.5, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [7, 7], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Caminho da elipse 1",
"mn": "ADBE Vector Shape - Ellipse",
"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,
"nm": "Traçado 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.8, 0, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"nm": "Preenchimento 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-13.11, 0.14], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transformar"
}
],
"nm": "Elipse 1",
"np": 3,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 40.0000016292334,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 2,
"ty": 4,
"nm": "Mid",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 10,
"s": [30],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 20,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 22.5,
"s": [100],
"e": [30]
},
{ "t": 35.0000014255792 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [34.188, 8.5, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [7, 7], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Caminho da elipse 1",
"mn": "ADBE Vector Shape - Ellipse",
"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,
"nm": "Traçado 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.8, 0, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"nm": "Preenchimento 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-13.11, 0.14], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transformar"
}
],
"nm": "Elipse 1",
"np": 3,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 40.0000016292334,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Right",
"sr": 1,
"ks": {
"o": {
"a": 1,
"k": [
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 15,
"s": [30],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 25,
"s": [100],
"e": [100]
},
{
"i": { "x": [0.833], "y": [0.833] },
"o": { "x": [0.167], "y": [0.167] },
"n": ["0p833_0p833_0p167_0p167"],
"t": 27.5,
"s": [100],
"e": [30]
},
{ "t": 40.0000016292334 }
],
"ix": 11
},
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [44.812, 8.5, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"d": 1,
"ty": "el",
"s": { "a": 0, "k": [7, 7], "ix": 2 },
"p": { "a": 0, "k": [0, 0], "ix": 3 },
"nm": "Caminho da elipse 1",
"mn": "ADBE Vector Shape - Ellipse",
"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,
"nm": "Traçado 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "fl",
"c": { "a": 0, "k": [1, 0.8, 0, 1], "ix": 4 },
"o": { "a": 0, "k": 100, "ix": 5 },
"r": 1,
"nm": "Preenchimento 1",
"mn": "ADBE Vector Graphic - Fill",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [-13.11, 0.14], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transformar"
}
],
"nm": "Elipse 1",
"np": 3,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 40.0000016292334,
"st": 0,
"bm": 0
}
]
}
================================================
FILE: src/assets/animations/swipe.json
================================================
{
"v": "5.1.20",
"fr": 30,
"ip": 0,
"op": 66,
"w": 930,
"h": 950,
"nm": "Hand_02",
"ddd": 0,
"assets": [],
"layers": [
{
"ddd": 0,
"ind": 1,
"ty": 3,
"nm": "Scale",
"sr": 1,
"ks": {
"o": { "a": 0, "k": 0, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [465.00000000000006, 475, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0, 0], "ix": 1 },
"s": {
"a": 1,
"k": [
{
"i": { "x": [0.667, 0.667, 0.667], "y": [1, 1, 1] },
"o": { "x": [0.167, 0.167, 0.167], "y": [0, 0, 0] },
"n": ["0p667_1_0p167_0", "0p667_1_0p167_0", "0p667_1_0p167_0"],
"t": 7,
"s": [105, 105, 100],
"e": [109.00000000000001, 109.00000000000001, 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] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 23,
"s": [109.00000000000001, 109.00000000000001, 100],
"e": [109.00000000000001, 109.00000000000001, 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] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 41,
"s": [109.00000000000001, 109.00000000000001, 100],
"e": [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] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 45,
"s": [100, 100, 100],
"e": [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] },
"n": ["0p667_1_0p333_0", "0p667_1_0p333_0", "0p667_1_0p333_0"],
"t": 48,
"s": [100, 100, 100],
"e": [105, 105, 100]
},
{ "t": 51 }
],
"ix": 6
}
},
"ao": 0,
"ip": 0,
"op": 754,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 3,
"ty": 4,
"nm": "Pfeile 5",
"parent": 6,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [22.508, 8.557, 0], "ix": 2 },
"a": { "a": 0, "k": [28.193, 11.958, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[8.608, 11.958],
[19.26, 11.958]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [
0.36470588235294116,
0.3843137254901961,
0.4588235294117647,
1
],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 3, "ix": 5 },
"lc": 2,
"lj": 2,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[2.229, 4.458],
[-2.229, 0.001],
[2.229, -4.458]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [
0.36470588235294116,
0.3843137254901961,
0.4588235294117647,
1
],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 3, "ix": 5 },
"lc": 2,
"lj": 2,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [9.729, 11.958], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 2",
"np": 2,
"cix": 2,
"ix": 2,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 754,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 4,
"ty": 4,
"nm": "Pfeile 4",
"parent": 6,
"sr": 1,
"ks": {
"o": { "a": 0, "k": 100, "ix": 11 },
"r": { "a": 0, "k": 0, "ix": 10 },
"p": { "a": 0, "k": [26.108, 8.557, 0], "ix": 2 },
"a": { "a": 0, "k": [28.193, 11.958, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0]
],
"v": [
[47.777, 11.958],
[37.125, 11.958]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [
0.36470588235294116,
0.3843137254901961,
0.4588235294117647,
1
],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 3, "ix": 5 },
"lc": 2,
"lj": 2,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [0, 0], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 3",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
},
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[0, 0]
],
"o": [
[0, 0],
[0, 0],
[0, 0]
],
"v": [
[-2.229, -4.458],
[2.229, -0.001],
[-2.229, 4.458]
],
"c": false
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [
0.36470588235294116,
0.3843137254901961,
0.4588235294117647,
1
],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 3, "ix": 5 },
"lc": 2,
"lj": 2,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [46.656, 11.958], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 4",
"np": 2,
"cix": 2,
"ix": 2,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 754,
"st": 0,
"bm": 0
},
{
"ddd": 0,
"ind": 6,
"ty": 4,
"nm": "Hand Rework",
"parent": 1,
"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] },
"n": ["0p667_1_0p333_0"],
"t": 7,
"s": [0],
"e": [5]
},
{
"i": { "x": [0.667], "y": [1] },
"o": { "x": [0.333], "y": [0] },
"n": ["0p667_1_0p333_0"],
"t": 45,
"s": [5],
"e": [0]
},
{
"i": { "x": [0.314], "y": [1] },
"o": { "x": [0.094], "y": [0] },
"n": ["0p314_1_0p094_0"],
"t": 49,
"s": [0],
"e": [0]
},
{ "t": 59 }
],
"ix": 10
},
"p": {
"a": 1,
"k": [
{
"i": { "x": 0.437, "y": 1 },
"o": { "x": 0.268, "y": 0 },
"n": "0p437_1_0p268_0",
"t": 7,
"s": [-74.001, 88.131, 0],
"e": [166.999, 88.131, 0],
"to": [40.1666603088379, 0, 0],
"ti": [6.50000476837158, 0, 0]
},
{
"i": { "x": 0.298, "y": 1 },
"o": { "x": 0.092, "y": 0 },
"n": "0p298_1_0p092_0",
"t": 45,
"s": [166.999, 88.131, 0],
"e": [-113.001, 88.131, 0],
"to": [-6.50000476837158, 0, 0],
"ti": [40.1666679382324, 0, 0]
},
{
"i": { "x": 0.203, "y": 1 },
"o": { "x": 0.158, "y": 0 },
"n": "0p203_1_0p158_0",
"t": 49,
"s": [-113.001, 88.131, 0],
"e": [-74.001, 88.131, 0],
"to": [-40.1666679382324, 0, 0],
"ti": [-6.5, 0, 0]
},
{ "t": 58 }
],
"ix": 2
},
"a": { "a": 0, "k": [29.889, 38.87, 0], "ix": 1 },
"s": { "a": 0, "k": [1000, 1000, 100], "ix": 6 }
},
"ao": 0,
"shapes": [
{
"ty": "gr",
"it": [
{
"ind": 0,
"ty": "sh",
"ix": 1,
"ks": {
"a": 0,
"k": {
"i": [
[0, 0],
[0, 0],
[1.997, -0.944],
[-0.944, -1.997],
[0, 0],
[-9, 2.334],
[0, 4.14],
[0, 0],
[2.164, 0],
[0, -2.164],
[0, 0],
[0, 0],
[2.219, 0],
[0, -2.22],
[0, 0],
[0, 0],
[2.123, 0],
[0, 0],
[0, -2.123],
[0, 0],
[0, 0],
[2.209, 0],
[0, -2.209]
],
"o": [
[0, 0],
[-0.943, -1.997],
[-1.998, 0.943],
[0, 0],
[4.25, 9.249],
[9.686, -2.51],
[0, 0],
[0, -2.164],
[-2.164, 0],
[0, 0],
[0, 0],
[0, -2.22],
[-2.22, 0],
[0, 0],
[0, 0],
[0, -2.123],
[0, 0],
[-2.123, 0],
[0, 0],
[0, 0],
[0, -2.209],
[-2.209, 0],
[0, 0]
],
"v": [
[-9.48, 4.599],
[-14.212, -5.822],
[-19.537, -7.73],
[-21.445, -2.405],
[-11.855, 17.662],
[9.895, 29.036],
[22.389, 12.343],
[22.389, -2.113],
[18.47, -6.032],
[14.551, -2.113],
[14.551, -1.969],
[14.551, -4.594],
[10.533, -8.613],
[6.514, -4.594],
[6.514, -4.207],
[6.514, -7.05],
[2.67, -10.894],
[2.364, -10.894],
[-1.48, -7.05],
[-1.48, -5.55],
[-1.48, -27.37],
[-5.48, -31.37],
[-9.48, -27.37]
],
"c": true
},
"ix": 2
},
"nm": "Path 1",
"mn": "ADBE Vector Shape - Group",
"hd": false
},
{
"ty": "st",
"c": {
"a": 0,
"k": [
0.36470588235294116,
0.3843137254901961,
0.4588235294117647,
1
],
"ix": 3
},
"o": { "a": 0, "k": 100, "ix": 4 },
"w": { "a": 0, "k": 3, "ix": 5 },
"lc": 2,
"lj": 2,
"nm": "Stroke 1",
"mn": "ADBE Vector Graphic - Stroke",
"hd": false
},
{
"ty": "tr",
"p": { "a": 0, "k": [29.889, 38.87], "ix": 2 },
"a": { "a": 0, "k": [0, 0], "ix": 1 },
"s": { "a": 0, "k": [100, 100], "ix": 3 },
"r": { "a": 0, "k": 0, "ix": 6 },
"o": { "a": 0, "k": 100, "ix": 7 },
"sk": { "a": 0, "k": 0, "ix": 4 },
"sa": { "a": 0, "k": 0, "ix": 5 },
"nm": "Transform"
}
],
"nm": "Group 1",
"np": 2,
"cix": 2,
"ix": 1,
"mn": "ADBE Vector Group",
"hd": false
}
],
"ip": 0,
"op": 754,
"st": 0,
"bm": 0
}
],
"markers": []
}
================================================
FILE: src/assets/fonts/Gilroy-Bold.hhea.xml
================================================
]>
================================================
FILE: src/assets/fonts/Gilroy-ExtraBold.hhea.xml
================================================
]>
================================================
FILE: src/assets/fonts/Gilroy-Light.hhea.xml
================================================
]>
================================================
FILE: src/assets/fonts/Gilroy-Medium.hhea.xml
================================================
]>
================================================
FILE: src/assets/fonts/Gilroy-Regular.hhea.xml
================================================
]>
================================================
FILE: src/assets/fonts/Gilroy-SemiBold.hhea.xml
================================================
]>
================================================
FILE: src/components/Button/index.tsx
================================================
import React from "react";
import { Container, ButtonText, ContainerProps } from "./styles";
import Loading from "~components/Loading";
const Button: React.FC = (props) => {
const enabled = !props.loading && !props.disabled;
return (
{props.loading && }
{!props.loading && (
{props.children}
)}
);
};
export default Button;
================================================
FILE: src/components/Button/styles.ts
================================================
import styled, { css } from "styled-components/native";
import Text from "~components/Text";
import { TouchableOpacityProps } from "react-native";
interface VariantProps {
variant?: "outline" | "default";
}
export interface ContainerProps extends VariantProps, TouchableOpacityProps {
loading?: boolean;
disabled?: boolean;
}
export const Container = styled.TouchableOpacity`
padding: 18px;
border-radius: 15px;
justify-content: center;
align-items: center;
overflow: hidden;
height: 68px;
border: 3px ${(props) => props.theme.colors.primary};
${(props) =>
props.variant !== "outline" &&
css`
background-color: ${props.theme.colors.primary};
`}
`;
export const ButtonText = styled(Text)`
color: ${(props) =>
props.variant === "outline" ? props.theme.colors.primary : "white"};
`;
================================================
FILE: src/components/Divider.ts
================================================
import styled from "styled-components/native";
import { StyleSheet } from "react-native";
export default styled.View`
background-color: ${(props) => props.theme.colors.border};
height: ${StyleSheet.hairlineWidth * 2}px;
`;
================================================
FILE: src/components/FeedbackCard/components/LikeFeedback/index.tsx
================================================
import React from "react";
import { Image } from "react-native";
import { Container } from "./styles";
const LikeFeedback: React.FC = () => {
return (
);
};
export default LikeFeedback;
================================================
FILE: src/components/FeedbackCard/components/LikeFeedback/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.View`
flex: 1;
justify-content: center;
align-items: center;
background-color: #cbffd0;
border-radius: 15px;
`;
================================================
FILE: src/components/FeedbackCard/components/MaybeFeedback/index.tsx
================================================
import React from "react";
import { Image } from "react-native";
import { Container } from "./styles";
const MaybeFeedback: React.FC = () => {
return (
);
};
export default MaybeFeedback;
================================================
FILE: src/components/FeedbackCard/components/MaybeFeedback/styles.ts
================================================
import styled from "styled-components/native";
import * as LikeFeedbackStyles from "../LikeFeedback/styles";
export const Container = styled(LikeFeedbackStyles.Container)`
background-color: #fffacb;
`;
================================================
FILE: src/components/FeedbackCard/components/NopeFeedback/index.tsx
================================================
import React from "react";
import { Image } from "react-native";
import { Container } from "./styles";
const NopeFeedback: React.FC = () => {
return (
);
};
export default NopeFeedback;
================================================
FILE: src/components/FeedbackCard/components/NopeFeedback/styles.ts
================================================
import styled from "styled-components/native";
import * as LikeFeedbackStyles from "../LikeFeedback/styles";
export const Container = styled(LikeFeedbackStyles.Container)`
background-color: #ffcecb;
`;
================================================
FILE: src/components/FeedbackCard/index.tsx
================================================
import React from "react";
import {
Extrapolate,
interpolate,
useAnimatedStyle,
} from "react-native-reanimated";
import { ACTION_OFFSET } from "~src/constants";
import LikeFeedback from "./components/LikeFeedback";
import MainCard from "../MainCard";
import MaybeFeedback from "./components/MaybeFeedback";
import NopeFeedback from "./components/NopeFeedback";
import { AbsolutePosition, Container } from "./styles";
const FeedbackCard = ({ user, translation, ...rest }: any) => {
const likeOpacity = useAnimatedStyle(() => ({
opacity: interpolate(
translation.x.value,
[10, ACTION_OFFSET],
[0, 1],
Extrapolate.CLAMP
),
}));
const nopeOpacity = useAnimatedStyle(() => ({
opacity: interpolate(
translation.x.value,
[-ACTION_OFFSET, -10],
[1, 0],
Extrapolate.CLAMP
),
}));
const maybeOpacity = useAnimatedStyle(() => ({
opacity: interpolate(
translation.y.value,
[-ACTION_OFFSET, -10],
[1, 0],
Extrapolate.CLAMP
),
}));
return (
);
};
export default FeedbackCard;
================================================
FILE: src/components/FeedbackCard/styles.ts
================================================
import Animated from "react-native-reanimated";
import styled, { css } from "styled-components/native";
import { absoluteFill } from "../MainCard/styles";
interface IContainer {
isFirst: boolean;
}
export const Container = styled(Animated.View)`
margin: 5px 10px;
flex: 1;
border-radius: 15px;
${(props) =>
props.isFirst &&
css`
elevation: 0.5;
shadow-color: #000;
shadow-offset: 0px 1px;
shadow-opacity: 0.1;
shadow-radius: 1px;
`}
`;
export const AbsolutePosition = styled(Animated.View).attrs((props) => ({
pointerEvents: "none",
...props,
}))`
flex: 1;
${absoluteFill}
`;
================================================
FILE: src/components/Glassmorphism/index.tsx
================================================
import React from "react";
import { Container, Gradient } from "./styles";
const Glassmorphism: React.FC<{ children: React.ReactElement }> = ({
children,
...props
}) => {
return (
{children}
);
};
export default Glassmorphism;
================================================
FILE: src/components/Glassmorphism/styles.ts
================================================
import { BlurView } from "expo-blur";
import styled, { DefaultTheme } from "styled-components/native";
import { LinearGradient } from "expo-linear-gradient";
import Color from "color";
export const getBlurViewProps = (props: { theme: DefaultTheme }) => ({
intensity: 90,
tint: props.theme.dark ? "dark" : "light",
});
export const Container = styled(BlurView).attrs(getBlurViewProps)`
overflow: hidden;
`;
export const getGradientProps = (props: { theme: DefaultTheme }) => ({
colors: [
Color(props.theme.colors.secondaryBackground).fade(0.3).rgb().string(),
Color(props.theme.colors.secondaryBackground).fade(0.5).rgb().string(),
],
start: { x: 0, y: 1 },
end: { x: 1, y: 0 },
});
export const Gradient = styled(LinearGradient).attrs(getGradientProps)``;
================================================
FILE: src/components/Input/index.tsx
================================================
import React from "react";
import { TextInputProps, View } from "react-native";
import { CancelIcon, CancelTouchArea, Content, TextInput } from "./styles";
import Text from "~components/Text";
interface SearchProps extends TextInputProps {
title: string;
}
const Input: React.FC = ({ title, ...props }) => {
return (
{title}
{!!props.value && (
props.onChangeText("")}>
)}
);
};
export default Input;
================================================
FILE: src/components/Input/styles.ts
================================================
import Color from "color";
import styled from "styled-components/native";
import cancelIcon from "~images/Cancel.svg";
export const Content = styled.View`
flex-direction: row;
align-items: center;
background: ${(props) => props.theme.colors.secondaryBackground};
border-radius: 15px;
padding: 15px 0 15px 15px;
margin-top: 20px;
`;
export const TextInput = styled.TextInput.attrs((props) => ({
placeholderTextColor: Color(props.theme.colors.text).fade(0.5).rgb().string(),
}))`
flex: 1;
color: ${(props) => props.theme.colors.text};
font-family: ${(props) => props.theme.typography.fontFamily.medium};
font-size: ${(props) => props.theme.typography.sizes.small.size}px;
padding-left: 10px;
`;
export const CancelTouchArea = styled.TouchableOpacity`
padding: 0 20px 0 10px;
justify-content: center;
`;
export const CancelIcon = styled(cancelIcon).attrs((props) => ({
fill: props.theme.colors.text,
}))`
opacity: 0.6;
width: 18px;
height: 18px;
`;
================================================
FILE: src/components/Loading.ts
================================================
import styled from "styled-components/native";
import LottieView from "lottie-react-native";
import LoadingDots from "~animations/inverseLoadingDots.json";
interface LoadingProps {
inverse?: boolean;
}
export default styled(LottieView).attrs((props: LoadingProps) => ({
autoPlay: true,
source: LoadingDots,
...props,
}))`
width: 50px;
margin: auto;
`;
================================================
FILE: src/components/MainCard/components/Distance/index.tsx
================================================
import React from "react";
import { Container, Content, DistanceText } from "./styles";
import Location from "~images/Location.svg";
import { useContext } from "react";
import { ThemeContext } from "styled-components/native";
function Distance() {
const themeContext = useContext(ThemeContext);
return (
19km
);
}
export default Distance;
================================================
FILE: src/components/MainCard/components/Distance/styles.ts
================================================
import styled from "styled-components/native";
import Text from "~components/Text";
import Glassmorphism from "~components/Glassmorphism";
export const Container = styled(Glassmorphism)`
margin: 15px;
border-radius: 5px;
margin-bottom: auto;
overflow: hidden;
align-self: flex-start;
`;
export const Content = styled.View`
padding: 10px;
align-items: center;
flex-direction: row;
`;
export const DistanceText = styled(Text).attrs({
fontWeight: "semiBold",
})`
margin-left: 5px;
margin-bottom: 3px;
flex-grow: 0;
color: ${(props) => props.theme.colors.text};
`;
================================================
FILE: src/components/MainCard/components/Pagination/index.tsx
================================================
import React from "react";
import { useAnimatedStyle, withTiming } from "react-native-reanimated";
import { Container, Content, Dot } from "./styles";
function Pagination({ pages, currentPage }) {
return (
{Array.from({ length: pages }).map((_, index) => {
const active = index === currentPage;
const style = useAnimatedStyle(() => {
const size = withTiming(active ? 8 : 6, { duration: 200 });
return { width: size, height: size };
});
return ;
})}
);
}
export default Pagination;
================================================
FILE: src/components/MainCard/components/Pagination/styles.ts
================================================
import Animated from "react-native-reanimated";
import styled from "styled-components/native";
import Glassmorphism from "~components/Glassmorphism";
export const Content = styled.View`
padding: 5px;
margin-bottom: auto;
align-items: center;
`;
export const Container = styled(Glassmorphism)`
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
margin-bottom: auto;
align-self: flex-end;
width: 24px;
`;
interface IDot {
active: boolean;
}
export const Dot = styled(Animated.View)`
background-color: ${(props) => props.theme.colors.text};
opacity: ${(props) => (props.active ? 1 : 0.6)};
border-radius: 5px;
margin: 3px;
`;
================================================
FILE: src/components/MainCard/components/PersonalInfo/index.tsx
================================================
import React from "react";
import { Container, Name, Age, Description } from "./styles";
import Glassmorphism from "~components/Glassmorphism";
function PersonalInfo({ user }) {
return (
{user.name}
, {user.age}
{user.description}
);
}
export default PersonalInfo;
================================================
FILE: src/components/MainCard/components/PersonalInfo/styles.ts
================================================
import styled from "styled-components/native";
import Text from "~components/Text";
export const Container = styled.View`
padding: 25px;
padding-bottom: 50px;
`;
export const Name = styled(Text).attrs({
fontWeight: "extraBold",
fontSize: "h3",
})`
color: ${(props) => props.theme.colors.text};
`;
export const Age = styled(Name).attrs({
fontWeight: "medium",
})``;
export const Description = styled(Text)`
color: ${(props) => props.theme.colors.text};
`;
================================================
FILE: src/components/MainCard/index.tsx
================================================
import React, { useCallback, useState } from "react";
import {
CarouselContainer,
PreviousImage,
NextImage,
UpperPart,
Picture,
Container,
} from "./styles";
import PersonalInfo from "./components/PersonalInfo";
import Distance from "./components/Distance";
import Pagination from "./components/Pagination";
import { useNavigation } from "@react-navigation/native";
import { TouchableOpacity } from "react-native-gesture-handler";
import {
FadeIn,
FadeOut,
FlipOutYLeft,
SlideOutDown,
useAnimatedStyle,
useSharedValue,
withSequence,
withSpring,
ZoomOut,
} from "react-native-reanimated";
import { SceneName } from "~src/@types/SceneName";
const springConfig = { mass: 0.2 };
function VisitingCard({ user, shouldShowPersonalInfo = true, ...props }: any) {
const { pictures } = user;
const [currentImage, setCurrentImage] = useState(0);
const navigation = useNavigation();
const rotation = useSharedValue(0);
const openUserProfile = useCallback(() => {
navigation.navigate(SceneName.UserProfile, { user });
}, []);
const gotoPreviousImage = () => {
if (currentImage !== 0) return setCurrentImage((index) => index - 1);
rotation.value = withSequence(
withSpring(-0.5, springConfig),
withSpring(0, springConfig)
);
};
const gotoNextImage = () => {
if (currentImage + 1 < pictures.length) {
return setCurrentImage((index) => index + 1);
}
rotation.value = withSequence(
withSpring(0.5, springConfig),
withSpring(0, springConfig)
);
};
const transform = useAnimatedStyle(() => {
return {
transform: [{ perspective: 100 }, { rotateY: rotation.value + "deg" }],
};
});
return (
{!!shouldShowPersonalInfo && (
)}
);
}
export default VisitingCard;
================================================
FILE: src/components/MainCard/styles.ts
================================================
import styled, { css } from "styled-components/native";
import { Image } from "react-native";
import Animated from "react-native-reanimated";
export const absoluteFill = css`
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
`;
export const Container = styled(Animated.View)`
background-color: ${(props) => props.theme.colors.background};
overflow: hidden;
border-radius: 15px;
`;
export const Picture = styled(Animated.Image)`
flex: 1;
background-color: white;
${absoluteFill}
`;
export const UpperPart = styled.View`
flex: 1;
`;
export const CarouselContainer = styled.View`
flex-direction: row;
${absoluteFill}
`;
export const PreviousImage = styled.Pressable`
flex: 1;
`;
export const NextImage = styled.Pressable`
flex: 1;
`;
================================================
FILE: src/components/MatchActionBar/index.tsx
================================================
import React from "react";
import Animated, { FadeInDown, ZoomOutDown } from "react-native-reanimated";
import {
Container,
ActionItem,
ConfusedEmoji,
HeartEyesEmoji,
ThinkingEmoji,
} from "./styles";
const MatchActionBar = ({
onNope,
onYep,
onMaybe,
animated,
...props
}: any) => {
return (
);
};
export default MatchActionBar;
================================================
FILE: src/components/MatchActionBar/styles.ts
================================================
import styled from "styled-components/native";
import Animated from "react-native-reanimated";
// Should preload for a better user experience, so no inline requires
import confusedEmoji from "~assets/images/ConfusedEmoji.png";
import thinkingEmoji from "~assets/images/ThinkingEmoji.png";
import heartEyesEmoji from "~assets/images/HeartEyesEmoji.png";
export const Container = styled(Animated.View).attrs({
pointerEvents: "box-none",
})`
width: 100%;
position: absolute;
bottom: 0;
justify-content: space-around;
align-items: center;
flex-direction: row;
`;
export const ActionItem = styled.TouchableOpacity`
padding: 14px;
background-color: ${(props) => props.theme.colors.secondaryBackground};
border-radius: 100px;
shadow-color: #000;
shadow-offset: 0 1px;
shadow-opacity: 0.02;
shadow-radius: 1.41px;
elevation: 60;
`;
export const ConfusedEmoji = styled.Image.attrs({
source: confusedEmoji,
})`
width: 60px;
height: 60px;
`;
export const ThinkingEmoji = styled.Image.attrs({
source: thinkingEmoji,
})`
width: 43px;
height: 43px;
`;
export const HeartEyesEmoji = styled(ConfusedEmoji).attrs({
source: heartEyesEmoji,
})``;
================================================
FILE: src/components/Navbar/index.tsx
================================================
import React, { useContext } from "react";
import { Container, Tabs, Tab, Indicator } from "./styles";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { Dimensions } from "react-native";
import { ThemeContext } from "styled-components";
import { MaterialTopTabBarProps } from "@react-navigation/material-top-tabs";
const NAVBAR_HEIGHT = 68;
const screenWidth = Dimensions.get("window").width;
export const useNavbarStyle = () => {
const { top } = useSafeAreaInsets();
return {
paddingTop: top,
height: top + NAVBAR_HEIGHT,
};
};
const INDICATOR_WIDTH = 15;
function Navbar({
state,
descriptors,
navigation,
position,
}: MaterialTopTabBarProps) {
const style = useNavbarStyle();
const themeContext = useContext(ThemeContext);
// Translate the indicator to the middle of the tab
const tabWidth = screenWidth / state.routes.length;
const initialPosition = tabWidth / 2 - INDICATOR_WIDTH / 2;
const translate = position.interpolate({
inputRange: [0, state.routes.length],
outputRange: [
initialPosition,
tabWidth * state.routes.length + initialPosition,
],
});
return (
{state.routes.map((route, index) => {
const { options } = descriptors[route.key];
const isFocused = state.index === index;
const onPress = () => {
const event = navigation.emit({
type: "tabPress",
target: route.key,
canPreventDefault: true,
});
if (!isFocused && !event.defaultPrevented) {
navigation.navigate(route.name);
}
};
const TabIcon = options.tabBarIcon as unknown as React.FC<
Parameters[0]
>;
return (
);
})}
);
}
export default Navbar;
================================================
FILE: src/components/Navbar/styles.ts
================================================
import { Animated } from "react-native";
import styled from "styled-components/native";
export const Container = styled.View`
background-color: ${(props) => props.theme.colors.background};
`;
export const Tabs = styled.View`
flex-direction: row;
flex: 1;
`;
export const Tab = styled.TouchableOpacity`
flex: 1;
justify-content: center;
align-items: center;
`;
export const Indicator = styled(Animated.View)`
height: 3px;
background-color: ${(props) => props.theme.colors.primary};
border-radius: 5px;
`;
================================================
FILE: src/components/RadioButtons/index.tsx
================================================
import React from "react";
import { View } from "react-native";
import Text from "~components/Text";
import {
Container,
OptionButtonProps,
RadioButtonContainer,
TextButton,
} from "./styles";
interface RadioButtonsProps {
title: string;
data: string[];
value: string;
onChange: React.Dispatch>;
}
const RadioButton: React.FC = (props) => {
return (
{props.children}
);
};
const RadioButtons: React.FC = ({
title,
data,
onChange,
value,
}) => {
return (
{title}
{data.map((item, index) => {
return (
onChange(item)}
last={index === data.length - 1}
>
{item}
);
})}
);
};
export default RadioButtons;
================================================
FILE: src/components/RadioButtons/styles.ts
================================================
import { TouchableOpacityProps } from "react-native";
import styled, { css } from "styled-components/native";
import Text from "~components/Text";
export interface OptionButtonProps extends TouchableOpacityProps {
marked?: boolean;
last?: boolean;
}
export const Container = styled.View`
justify-content: space-between;
flex-grow: 1;
align-items: center;
flex-direction: row;
padding-top: 20px;
`;
export const RadioButtonContainer = styled.TouchableOpacity`
padding: 10px 20px;
background-color: ${(props) => props.theme.colors.background};
border: 3px solid ${(props) => props.theme.colors.primary};
border-radius: 15px;
flex: 1;
align-items: center;
${(props) => {
if (!props?.last) {
return css`
margin-right: 5px;
`;
}
}};
${(props) => {
if (props?.marked) {
return css`
background-color: ${(props) => props.theme.colors.primary};
color: ${(props) => props.theme.colors.secondaryBackground};
`;
}
}};
`;
export const TextButton = styled(Text)`
color: ${(props) => props.theme.colors.primary};
${(props) => {
if (props?.marked) {
return css`
color: ${(props) => props.theme.colors.secondaryBackground};
`;
}
}}
`;
================================================
FILE: src/components/SafeComponent/index.tsx
================================================
import React, { useState, useEffect } from "react";
import {
Container,
Content,
Title,
ContainedText,
DisconnectedIllustration,
ErrorIllustration,
} from "./styles";
import Loading from "~components/Loading";
import Button from "~components/Button";
import NetInfo from "@react-native-community/netinfo";
import ErrorBoundary from "react-native-error-boundary";
export const OfflineComponent = ({ refetch }: { refetch: () => void }) => {
return (
Oops, você está offline
Aguarde um pouquinho e tente novamente quando a conexão estiver
estável
);
};
export const RequestErrorComponent = ({ refetch }: { refetch: () => void }) => {
return (
Oops, alguma coisa deu errada
Não conseguimos processar sua requisição no momento, mas já estamos
trabalhando para resolver o problema.
);
};
export const UnknownErrorComponent = () => {
return (
Oops, alguma coisa deu errada
Tentar novamente
);
};
// NetInfo is always disconnected on the first render. Workaround hook
export function useIsOffline() {
const [netInfo, setNetInfo] = useState({
isInternetReachable: true,
});
useEffect(() => {
const unsubscribe = NetInfo.addEventListener(setNetInfo);
return unsubscribe;
}, []);
return !netInfo.isInternetReachable;
}
interface SafeComponentProps {
request?: { data?: any; error?: any; loading?: boolean };
refetch?: () => void;
children: any;
}
export default function SafeComponent({
request,
children,
refetch,
}: SafeComponentProps) {
const offline = useIsOffline();
const SafeChildren = (
{children || null}
);
if (request?.loading)
return (
);
if (request?.data) return SafeChildren;
if (request && offline) return ;
if (request?.error) return ;
return SafeChildren;
}
================================================
FILE: src/components/SafeComponent/styles.ts
================================================
import styled from "styled-components/native";
import Text from "~components/Text";
import Disconnected from "~animations/disconnected.json";
import Error from "~animations/error.json";
import LottieView from "lottie-react-native";
export const Container = styled.ScrollView.attrs({
contentContainerStyle: { flex: 1 },
})``;
export const Content = styled.View`
justify-content: center;
align-items: center;
/* background: ${(props) => props.theme.colors.background}; */
padding: 20px;
flex-grow: 1;
flex-shrink: 0;
margin: 0 25px;
`;
export const Title = styled(Text).attrs({
fontSize: "large",
fontWeight: "bold",
})``;
export const ContainedText = styled(Text)`
max-width: 350px;
margin-bottom: 25px;
`;
export const DisconnectedIllustration = styled(LottieView).attrs({
autoPlay: true,
loop: true,
source: Disconnected,
})`
height: 150px;
align-self: center;
`;
export const ErrorIllustration = styled(LottieView).attrs({
autoPlay: true,
loop: true,
delay: 2000,
source: Error,
})`
height: 150px;
align-self: center;
`;
================================================
FILE: src/components/Text.ts
================================================
import styled, { css } from "styled-components/native";
import { DefaultTheme as DefaultThemeProps } from "styled-components";
export interface TextProps {
fontSize?: keyof DefaultThemeProps["typography"]["sizes"];
color?: keyof DefaultThemeProps["colors"];
fontWeight?: keyof DefaultThemeProps["typography"]["fontFamily"];
}
export default styled.Text`
color: ${(props) => {
const { colors } = props.theme;
return colors?.[props.color ?? "text"];
}};
font-family: ${(props) => {
const { fontFamily } = props.theme.typography;
return fontFamily?.[props.fontWeight ?? "regular"];
}};
${(props) => {
const { sizes } = props.theme.typography;
const selectedSize = sizes?.[props.fontSize ?? "regular"];
return css`
font-size: ${selectedSize.size}px;
line-height: ${selectedSize.lineHeight}px;
`;
}}
`;
================================================
FILE: src/components/index.ts
================================================
export { default as Text } from "./Text";
export { default as Button } from "./Button";
export { default as Input } from "./Input";
export { default as Loading } from "./Loading";
export { default as SafeComponent } from "./SafeComponent";
export { default as MainCard } from "./MainCard";
export { default as FeedbackCard } from "./FeedbackCard";
export { default as MatchActionBar } from "./MatchActionBar";
export { default as RadioButtons } from "./RadioButtons";
================================================
FILE: src/constants.ts
================================================
import { Dimensions } from "react-native";
export const { width, height } = Dimensions.get("screen");
export const CARD = {
CARD_WIDTH: width * 0.9,
CARD_HEIGHT: height * 0.78,
CARD_OUT_HEIGHT: height * 1.7,
CARD_OUT_WIDTH: width * 1.7,
};
export const ACTION_OFFSET = 100;
export const ACTION_VELOCITY = 1000;
export const ACTION_THRESHOLD = 1 / 35;
================================================
FILE: src/index.tsx
================================================
import React, { useEffect, useMemo } from "react";
import { registerRootComponent } from "expo";
import { useFonts } from "@use-expo/font";
import { DefaultTheme, Font, LightTheme, DarkTheme } from "./themes";
import { ThemeProvider } from "styled-components/native";
import { NavigationContainer } from "@react-navigation/native";
import Router from "./views/index.routes";
import { store } from "./store";
import { Provider } from "react-redux";
import { Loading, SafeComponent } from "~components";
import { LogBox } from "react-native";
import { StatusBar } from "expo-status-bar";
import { SafeAreaProvider } from "react-native-safe-area-context";
import { enableScreens } from "react-native-screens";
import { useColorScheme } from "react-native";
import { useDidMountEffect } from "~services/utils";
import * as SplashScreen from "expo-splash-screen";
LogBox.ignoreLogs([
"ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'.",
]);
enableScreens();
export default function App() {
let [fontsLoaded] = useFonts({
[Font.GilroyBold]: require("~assets/fonts/Gilroy-Bold.ttf"),
[Font.GilroyExtraBold]: require("~assets/fonts/Gilroy-ExtraBold.ttf"),
[Font.GilroyLight]: require("~assets/fonts/Gilroy-Light.ttf"),
[Font.GilroyMedium]: require("~assets/fonts/Gilroy-Medium.ttf"),
[Font.GilroyRegular]: require("~assets/fonts/Gilroy-Regular.ttf"),
[Font.GilroySemiBold]: require("~assets/fonts/Gilroy-SemiBold.ttf"),
});
const colorScheme = useColorScheme();
const theme = useMemo(() => {
if (!colorScheme) return DefaultTheme;
return colorScheme === "dark" ? DarkTheme : LightTheme;
}, [colorScheme]);
useEffect(() => {
// Wait for the assets to load before hiding the SplashScreen
SplashScreen.preventAutoHideAsync();
}, []);
useDidMountEffect(() => {
if (fontsLoaded) setTimeout(SplashScreen.hideAsync, 100);
}, [fontsLoaded]);
return (
);
}
registerRootComponent(App);
================================================
FILE: src/services/api.ts
================================================
import axios from "axios";
const axiosInstance = axios.create({
baseURL: "https://60aa8be766f1d00017772f6a.mockapi.io",
});
export default axiosInstance;
================================================
FILE: src/services/navigation.ts
================================================
import { useNavigationContainerRef } from "@react-navigation/native";
import { RootStackParamList } from "~src/@types/react-navigation.d";
import { SceneName } from "~src/@types/SceneName";
export const navigationRef = useNavigationContainerRef();
const navigate = (
routeName: SceneName,
params: Parameters[any]["params"]
) => {
if (!navigationRef.isReady()) return;
navigationRef.navigate(routeName, params);
};
const reset: typeof navigationRef.reset = (payload) => {
if (!navigationRef.isReady()) return;
navigationRef.reset(payload);
};
const goBack = () => {
if (!navigationRef.isReady()) return;
navigationRef.goBack();
};
export default {
navigate,
reset,
goBack,
};
================================================
FILE: src/services/reactotron.ts
================================================
import Reactotron from "reactotron-react-native";
import { reactotronRedux } from "reactotron-redux";
import sagaPlugin from "reactotron-redux-saga";
import AsyncStorage from "@react-native-async-storage/async-storage";
const reactotron = Reactotron.configure({
name: "Pegava",
})
.setAsyncStorageHandler(AsyncStorage)
.useReactNative()
.use(reactotronRedux())
.use(sagaPlugin({}));
if (__DEV__) {
reactotron.connect();
reactotron.clear();
}
export default reactotron;
================================================
FILE: src/services/utils.ts
================================================
import { EffectCallback, DependencyList, useRef, useEffect } from "react";
export const useDidMountEffect = (
func: EffectCallback,
deps: DependencyList
) => {
const didMount = useRef(false);
useEffect(() => {
if (didMount.current) func();
else didMount.current = true;
}, deps); // eslint-disable-line react-hooks/exhaustive-deps
};
interface ItemProps {
id: number;
}
// Sometimes the item order changes, messing up pagination. In those cases
// the duplicated items returned needs to be removed
export function removeDuplicates(
item: ItemProps,
index: number,
arr: ItemProps[]
) {
return arr.findIndex((current) => current.id === item.id) === index;
}
================================================
FILE: src/store/index.ts
================================================
import createSagaMiddleware from "redux-saga";
import reducer from "./reducers";
import sagas from "./sagas";
import { configureStore } from "@reduxjs/toolkit";
const sagaMiddleware = createSagaMiddleware();
const middlewares = [sagaMiddleware];
export const store = configureStore({
reducer,
middleware: middlewares,
});
sagaMiddleware.run(sagas);
================================================
FILE: src/store/reducers/index.ts
================================================
import * as users from "./users";
import { StateType } from "typesafe-actions";
import { combineReducers } from "redux";
export const Types = {
...users.Types,
};
export const Actions = {
users: users.Actions,
};
const rootReducer = combineReducers({
users: users.default,
});
export type RootReducer = StateType;
export default rootReducer;
================================================
FILE: src/store/reducers/users/index.ts
================================================
import * as swipe from "./swipe";
import * as list from "./list";
import reduceReducers from "reduce-reducers";
import { initialState } from "./swipe";
export const Types = {
...list.Types,
...swipe.Types,
};
export const Actions = {
swipe: swipe.Actions,
list: list.Actions,
};
export default reduceReducers(initialState, swipe.default, list.default);
================================================
FILE: src/store/reducers/users/list.ts
================================================
import produce from "immer";
import { createAsyncAction } from "typesafe-actions";
import { ActionType, createReducer } from "typesafe-actions";
import { removeDuplicates } from "~services/utils";
import { initialState } from "./swipe";
export enum Types {
FETCH_USERS_REQUEST = "FETCH_USERS_REQUEST",
FETCH_USERS_SUCCESS = "FETCH_SUCCESS",
FETCH_USERS_FAILURE = "FETCH_FAILURE",
}
export const Actions = createAsyncAction(
Types.FETCH_USERS_REQUEST,
Types.FETCH_USERS_SUCCESS,
Types.FETCH_USERS_FAILURE
)<
void,
{ users: any[]; nextPage: number; hasMore: boolean },
{ message: string }
>();
const fetchUsersRequest = (state = initialState) =>
produce(state, (draft) => {
draft.request.loading = true;
draft.request.error = null;
return draft;
});
const fetchUsersSuccess = (
state = initialState,
{ payload }: ActionType
) =>
produce(state, (draft) => {
draft.request.loading = false;
draft.request.error = null;
draft.request.data = [...draft.request.data, ...payload.users].filter(
removeDuplicates
);
draft.config.nextPage = payload.nextPage;
draft.config.hasMore = payload.hasMore;
return draft;
});
const fetchUsersFailure = (
state = initialState,
{ payload }: ActionType
) =>
produce(state, (draft) => {
draft.request.loading = false;
draft.request.error = payload.message;
return draft;
});
export default createReducer>(
initialState
)
.handleAction(Actions.request, fetchUsersRequest)
.handleAction(Actions.success, fetchUsersSuccess)
.handleAction(Actions.failure, fetchUsersFailure);
================================================
FILE: src/store/reducers/users/swipe.ts
================================================
import produce from "immer";
import { createAction, createAsyncAction } from "typesafe-actions";
import { ActionType, createReducer } from "typesafe-actions";
import { Swipe } from "~views/Swipe/components/SwipeHandler/hooks/useSwipeGesture";
export const initialState = {
request: {
data: [],
loading: true,
error: null,
},
config: {
limit: 3,
nextPage: 1,
hasMore: true,
lastCardId: null,
},
};
export enum Types {
SWIPE_USER_REQUEST = "SWIPE_USER_REQUEST",
SWIPE_USER_SUCCESS = "SWIPE_USER_SUCCESS",
SWIPE_USER_FAILURE = "SWIPE_USER_FAILURE",
SWIPE_BACK = "SWIPE_BACK",
}
const asyncActions = createAsyncAction(
Types.SWIPE_USER_REQUEST,
Types.SWIPE_USER_SUCCESS,
Types.SWIPE_USER_FAILURE
)<
{ id: number; swipeType: Swipe },
{ id: number },
{ id: number; message: string }
>();
const swipeBack = createAction(Types.SWIPE_BACK)();
export const Actions = { ...asyncActions, swipeBack };
const swipeUserRequest = (
state = initialState,
{ payload }: ActionType
) =>
produce(state, (draft) => {
const { lastCardId } = draft.config;
const { data: users } = draft.request;
const lastCardIndex = users.findIndex((user) => user.id === lastCardId);
// we shouldn't ever discard the current user
// this way we are able to 'go back' and avoid flickering issues
if (lastCardIndex > -1) {
draft.request.data.splice(lastCardIndex, 1);
}
draft.config.lastCardId = payload.id;
return draft;
});
const swipeBackHandler = (state = initialState) =>
produce(state, (draft) => {
draft.config.lastCardId = null;
return draft;
});
export default createReducer>(
initialState
)
.handleAction(Actions.request, swipeUserRequest)
.handleAction(Actions.swipeBack, swipeBackHandler);
================================================
FILE: src/store/sagas/index.ts
================================================
import { put } from "redux-saga/effects";
import users from "~store/sagas/users";
import { Actions } from "~store/reducers";
export default function* rootSaga() {
yield users;
yield put(Actions.users.list.request());
}
================================================
FILE: src/store/sagas/users/index.ts
================================================
import { all } from "redux-saga/effects";
import fetchUsersRequest from "./list";
import handleSwipeUserRequest from "./swipe";
export default all([fetchUsersRequest, handleSwipeUserRequest]);
================================================
FILE: src/store/sagas/users/list.ts
================================================
import { call, put, takeLatest, select, delay } from "redux-saga/effects";
import { Actions, Types } from "~store/reducers";
import api from "~services/api";
export function* fetchUsersRequest() {
const config = yield select((state) => state.users.config);
try {
yield delay(1000);
const { data: response } = yield call(api.get, "/users", {
params: {
page: config.nextPage,
limit: config.limit,
},
});
yield put(
Actions.users.list.success({
users: response,
nextPage: config.nextPage + 1,
hasMore: true,
})
);
} catch (err) {
const error = { message: "Alguma coisa deu errada" };
yield put(Actions.users.list.failure(error));
}
}
export default takeLatest(Types.FETCH_USERS_REQUEST, fetchUsersRequest);
================================================
FILE: src/store/sagas/users/swipe.ts
================================================
import { put, takeLatest, select, all, fork } from "redux-saga/effects";
import { Actions, Types } from "~store/reducers";
import { ActionType } from "typesafe-actions";
function* swipeUserRequest({
payload,
}: ActionType) {
const { id, swipeType: _swipeType } = payload;
try {
// const { data: response } = yield call(api.post, `/swipe/${id}`, {
// params: { swipeType: _swipeType },
// });
yield put(Actions.users.swipe.success({ id }));
} catch (err) {
const error = { id, message: "Alguma coisa deu errada" };
yield put(Actions.users.swipe.failure(error));
}
}
function* handleCardFetching() {
const request = yield select((state) => state.users.request);
if (request.data.length >= 3 || request.error) return;
yield put(Actions.users.list.request());
}
export function* handleSwipeUserRequest(
props: ActionType
) {
yield all([fork(() => swipeUserRequest(props)), fork(handleCardFetching)]);
}
export default takeLatest(Types.SWIPE_USER_REQUEST, handleSwipeUserRequest);
================================================
FILE: src/store/selectors.ts
================================================
import { createSelector } from "reselect";
import { RootReducer } from "~reducers/index";
export const getCards = createSelector(
(state: RootReducer) => state.users.request,
(request) => request.data
);
export const getLastCardId = (state: RootReducer) =>
state.users.config.lastCardId;
export const getActiveCards = createSelector(
getCards,
getLastCardId,
(cards, lastCardId) => cards.filter((card) => card.id !== lastCardId)
);
export const getCurrentCardId = createSelector(
getActiveCards,
(activeCards) => activeCards?.[0]?.id
);
================================================
FILE: src/themes.ts
================================================
import { DefaultTheme as DefaultThemeProps } from "styled-components";
export enum Font {
GilroyLight = "Gilroy-Light",
GilroyMedium = "Gilroy-Medium",
GilroyBold = "Gilroy-Bold",
GilroySemiBold = "Gilroy-SemiBold",
GilroyExtraBold = "Gilroy-ExtraBold",
GilroyRegular = "Gilroy-Regular",
}
export const DefaultConfigs = {
typography: {
fontFamily: {
light: Font.GilroyLight,
medium: Font.GilroyMedium,
regular: Font.GilroyRegular,
semiBold: Font.GilroySemiBold,
bold: Font.GilroyBold,
extraBold: Font.GilroyExtraBold,
},
sizes: {
h1: {
size: 38,
lineHeight: 44,
},
h2: {
size: 32,
lineHeight: 36,
},
h3: {
size: 24,
lineHeight: 30,
},
large: {
size: 18,
lineHeight: 26,
},
regular: {
size: 16,
lineHeight: 18,
},
small: {
size: 14,
lineHeight: 20,
},
},
},
};
export const DarkTheme: DefaultThemeProps = {
...DefaultConfigs,
dark: true,
colors: {
primary: "#D45B90",
text: "#ffffff",
background: "#07112D",
secondaryBackground: "#111D40",
border: "#111D40",
},
};
export const LightTheme: DefaultThemeProps = {
...DefaultConfigs,
dark: false,
colors: {
primary: "#EE61A1",
text: "#070F26",
background: "#ffffff",
secondaryBackground: "#F8F8F8",
border: "#f2f2f2",
},
};
export const DefaultTheme = LightTheme;
================================================
FILE: src/views/Authentication/components/HeroText/index.tsx
================================================
import React from "react";
import {
Container,
RotatedRectangle,
Title,
Line,
UnderlineContainer,
} from "./styles";
export const Underline = ({ children }) => (
{children}
);
export const RectangleHighLight = ({ children }) => (
{children}
);
const HeroText: React.FC = () => {
return (
Encontre
pessoas
perto de
você
);
};
export default HeroText;
================================================
FILE: src/views/Authentication/components/HeroText/styles.ts
================================================
import styled from "styled-components/native";
import Text from "~components/Text";
export const Container = styled.View`
align-items: center;
flex-direction: row;
max-width: 300px;
flex-wrap: wrap;
justify-content: center;
`;
export const Title = styled(Text).attrs({
fontSize: "h2",
fontWeight: "bold",
})`
color: ${(props) => props.theme.colors.text};
`;
export const TextHighlight = styled(Title)`
color: ${(props) => props.theme.colors.primary};
`;
export const UnderlineContainer = styled.View`
align-self: flex-start;
`;
export const Line = styled.View`
position: absolute;
right: 0;
left: 0;
bottom: 3px;
height: 4px;
background-color: ${(props) => props.theme.colors.primary};
border-radius: 3px;
`;
export const RotatedRectangle = styled.View`
position: absolute;
right: 0;
left: 0;
width: 110%;
margin-left: -5%;
top: 3px;
height: 34px;
transform: rotate(-3deg);
background-color: ${(props) => props.theme.colors.primary};
border-radius: 4px;
`;
================================================
FILE: src/views/Authentication/components/PhoneInput/index.tsx
================================================
import React, { useCallback, useState } from "react";
import {
Container,
TextInput,
CountryCodeContainer,
CountryCodeText,
Separator,
} from "./styles";
import { MaskService } from "react-native-masked-text";
import { TextInputProps } from "react-native";
const PhoneInput: React.FC = (props) => {
const [phoneNumber, setPhoneNumber] = useState("");
const formatPhone = useCallback((tel: string) => {
const formattedNumber = MaskService.toMask("cel-phone", tel || "");
setPhoneNumber(formattedNumber);
}, []);
return (
🇧🇷 +55
);
};
export default PhoneInput;
================================================
FILE: src/views/Authentication/components/PhoneInput/styles.ts
================================================
import styled, { css } from "styled-components/native";
import { StyleSheet } from "react-native";
import Color from "color";
const fontStyle = css`
font-family: ${(props) => props.theme.typography.fontFamily.bold};
font-size: ${(props) => props.theme.typography.sizes.large.size}px;
color: ${(props) => props.theme.colors.text};
`;
export const Container = styled.View`
border-radius: 15px;
border: 1px ${(props) => props.theme.colors.text};
flex-direction: row;
overflow: hidden;
margin: 25px 0;
`;
export const TextInput = styled.TextInput.attrs((props) => ({
placeholderTextColor: Color(props.theme.colors.text).fade(0.5).rgb().string(),
}))`
padding: 20px 15px;
flex: 1;
${fontStyle}
`;
export const CountryCodeContainer = styled.View`
padding: 15px;
align-items: center;
justify-content: center;
`;
export const CountryCodeText = styled.Text`
${fontStyle}
`;
export const Separator = styled.View`
width: ${StyleSheet.hairlineWidth}px;
margin: 20px 5px;
background-color: ${(props) => props.theme.colors.text};
`;
================================================
FILE: src/views/Authentication/index.tsx
================================================
import React, { useState, useContext } from "react";
import { BottomCard, Container, Description, TopCard } from "./styles";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { StatusBar } from "expo-status-bar";
import { Button } from "~components";
import { Title, Highlight } from "./styles";
import Logo from "~images/Logo.svg";
import HeroText from "./components/HeroText";
import PhoneInput from "./components/PhoneInput";
import { KeyboardAvoidingView, Platform } from "react-native";
import { useNavigation } from "@react-navigation/native";
import { ThemeContext } from "styled-components/native";
import { SceneName } from "~src/@types/SceneName";
export const useCustomBottomInset = () => {
const insets = useSafeAreaInsets();
return Math.max(20, insets.bottom + 5);
};
const Authentication = () => {
const insets = useSafeAreaInsets();
const bottomInset = useCustomBottomInset();
const themeContext = useContext(ThemeContext);
const navigation = useNavigation();
const [loading, setLoading] = useState(false);
/**
* For demo purposes, we'll just log the user in
*/
const handleLogin = async () => {
setLoading(true);
setTimeout(() => {
navigation.navigate(SceneName.OneTimeCode);
setLoading(false);
}, 1000);
};
return (
Insira seu celular
Vamos enviar um código de 4 digitos para autorizar sua conta. Se
ainda não tem uma, vamos cria-la
);
};
export default Authentication;
================================================
FILE: src/views/Authentication/styles.ts
================================================
import styled from "styled-components/native";
import { SafeAreaView } from "react-native-safe-area-context";
import Text from "~components/Text";
export const Container = styled(SafeAreaView).attrs({
edges: ["left", "right"],
})`
flex: 1;
`;
const getTopCardProps = (props) => ({
imageStyle: {
opacity: 0.2,
backgroundColor: props.theme.colors.background,
transform: [{ scale: 1.05 }],
},
});
export const TopCard = styled.ImageBackground.attrs(getTopCardProps)`
flex: 1;
background-color: ${(props) => props.theme.colors.background};
justify-content: center;
align-items: center;
padding: 40px 20px;
`;
export const BottomCard = styled.View`
background-color: ${(props) => props.theme.colors.background};
padding: 22px;
border-top-color: ${(props) => props.theme.colors.border};
border-top-width: 1px;
`;
export const Title = styled(Text).attrs({
fontSize: "h3",
fontWeight: "bold",
})`
color: ${(props) => props.theme.colors.text};
margin-bottom: 5px;
`;
export const Highlight = styled(Title)`
color: ${(props) => props.theme.colors.primary};
`;
export const Description = styled(Text)`
color: ${(props) => props.theme.colors.text}; ;
`;
================================================
FILE: src/views/Chat/components/DateMessage.tsx
================================================
import React, { Fragment } from "react";
import { ListRenderItemInfo } from "react-native";
import { Selectors, useContext } from "../store";
import type { Message as IMessage } from "../store/reducers";
import Message from "./Message";
import NextDay from "./NextDay";
const DateMessage: React.FC> = ({
item,
index,
}) => {
const { state } = useContext();
const messages = Selectors.getMessagesDisplay(state);
const nextMessage = messages?.[index + 1];
return (
{item.message}
);
};
const DateMessageWrapper: React.FC> = (props) => (
);
export default DateMessageWrapper;
================================================
FILE: src/views/Chat/components/Feedback.tsx
================================================
import React from "react";
import Error from "../assets/error.svg";
import Clock from "../assets/clock.svg";
import Tick from "../assets/tick.svg";
export enum FeedbackStatus {
Error = "error",
Loading = "loading",
Success = "success",
}
function Feedback({ status, ...rest }) {
if (status === FeedbackStatus.Loading) return ;
if (status === FeedbackStatus.Error) return ;
return ;
}
export default Feedback;
================================================
FILE: src/views/Chat/components/Header/index.tsx
================================================
import React, { useContext } from "react";
import { Header, BackTouchArea, Picture } from "./styles";
import Text from "~components/Text";
import { useNavigation, useRoute } from "@react-navigation/native";
import { ThemeContext } from "styled-components/native";
import { IChat } from "~views/Chat";
import BackArrow from "~images/BackArrow.svg";
export default function Component() {
const navigation = useNavigation();
const { params } = useRoute();
const { colors } = useContext(ThemeContext);
return (
navigation.goBack()}>
{params.user?.name || "Undefined"}
);
}
================================================
FILE: src/views/Chat/components/Header/styles.ts
================================================
import styled from "styled-components/native";
import { SafeAreaView } from "react-native-safe-area-context";
export const Header = styled(SafeAreaView).attrs({
edges: ["top"],
})`
flex-direction: row;
align-items: center;
background: ${(props) => props.theme.colors.secondaryBackground};
border-bottom-width: 1px;
border-bottom-color: ${(props) => props.theme.colors.border};
`;
export const BackTouchArea = styled.TouchableOpacity`
padding: 25px;
`;
export const Picture = styled.Image`
width: 35px;
height: 35px;
border-radius: 50px;
margin-right: 14px;
`;
================================================
FILE: src/views/Chat/components/Message/index.tsx
================================================
import React from "react";
import moment from "moment";
import Feedback, { FeedbackStatus } from "../Feedback";
import Text from "~components/Text";
import { Message, Time, Info } from "./styles";
import {
SlideInRight,
SlideOutLeft,
SlideOutRight,
SlideInLeft,
} from "react-native-reanimated";
export default function Component(props) {
const { children, self, createdAt, status } = props;
const isLoading = status === FeedbackStatus.Loading;
return (
{children}
{self && }
);
}
================================================
FILE: src/views/Chat/components/Message/styles.ts
================================================
import Animated from "react-native-reanimated";
import styled, { css } from "styled-components/native";
import { Text } from "~components";
import { FeedbackStatus } from "../Feedback";
interface MessageProps {
sending: boolean;
status: FeedbackStatus;
}
export const Message = styled(Animated.View)`
padding: 15px;
max-width: 60%;
background-color: ${(props) => props.theme.colors.background};
border: ${(props) => props.theme.colors.border};
border-radius: 20px;
margin-bottom: 5px;
${(props) =>
props.sending
? css`
margin-left: auto
border-bottom-right-radius: 0;
`
: css`
margin-right: auto
border-bottom-left-radius: 0;
`},
${(props) =>
props.status === FeedbackStatus.Error &&
css`
border: 1px #dd2e44;
`}
`;
export const Info = styled.View`
margin: 5px -5px -5px 20px;
margin-left: auto;
flex-direction: row;
align-items: center;
`;
export const Time = styled(Text).attrs({ fontSize: "small" })`
color: #737373;
`;
================================================
FILE: src/views/Chat/components/NextDay/index.tsx
================================================
import React from "react";
import Text from "~components/Text";
import { Container } from "./styles";
import moment from "moment";
function Component({ message, nextMessage }: any) {
if (!message || nextMessage === false) return <>>;
const nextDay = nextMessage && new Date(nextMessage?.createdAt);
const currentDay = new Date(message?.createdAt);
if (nextMessage && moment(currentDay).isSame(nextDay, "day")) return <>>;
return (
{moment(currentDay).format("LL")}
);
}
export default Component;
================================================
FILE: src/views/Chat/components/NextDay/styles.ts
================================================
import styled from 'styled-components/native';
export const Container = styled.View`
padding: 15px 0 25px 0;
margin: auto;
`;
================================================
FILE: src/views/Chat/components/Send/index.tsx
================================================
import React, { useState, useCallback } from "react";
import { Container, Input } from "./styles";
import useSendMessage from "./useSendMessage";
function Component() {
const [message, setMessage] = useState("");
const sendMessage = useSendMessage();
const Submit = useCallback(() => {
if (!message?.trim()) return;
sendMessage(message);
setMessage("");
}, [message, sendMessage]);
return (
);
}
export default Component;
================================================
FILE: src/views/Chat/components/Send/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.View`
background-color: ${(props) => props.theme.colors.secondaryBackground};
padding: 20px 25px;
border-top-width: 1px;
border-top-color: ${(props) => props.theme.colors.border};
`;
export const Input = styled.TextInput.attrs({
placeholderTextColor: "#bcbcbc",
})`
color: ${(props) => props.theme.colors.text};
font-family: ${(props) => props.theme.typography.fontFamily.regular};
font-size: ${(props) => props.theme.typography.sizes.regular.size}px;
line-height: ${(props) => props.theme.typography.sizes.regular.lineHeight}px;
`;
================================================
FILE: src/views/Chat/components/Send/useSendMessage.ts
================================================
import moment from "moment";
import uuid from "react-native-uuid";
import { Creators, useContext } from "~views/Chat/store";
import { FeedbackStatus } from "../Feedback";
// Should be a saga or something
export default function Component() {
const { dispatch } = useContext();
const submit = async (body: string) => {
const tempId = uuid.v4() as string;
try {
// Add a fake 'sending' message to give an optimistic UI
dispatch(Creators.addTemp({ _id: tempId, body }));
// You could send the actual message here. For now, we'll just fake it.
// const { data: response } = await axios.post("chat", {
// message,
// });
await new Promise((resolve) => setTimeout(resolve, 500));
// Remove the fake message and add the correct one
dispatch(Creators.removeTemp({ _id: tempId }));
dispatch(
Creators.addMessage({
message: {
_id: uuid.v4().toString(),
message: body,
createdAt: moment().toISOString(),
self: true,
status: FeedbackStatus.Success,
},
})
);
} catch (err) {
// Set error and delete the fake message after a while
dispatch(Creators.errorTemp({ _id: tempId }));
setTimeout(() => dispatch(Creators.removeTemp({ _id: tempId })), 1500);
}
};
return submit;
}
================================================
FILE: src/views/Chat/components/index.tsx
================================================
export { default as Message } from "./Message";
export { default as Header } from "./Header";
export { default as Send } from "./Send";
export { default as Feedback } from "./Feedback";
export { default as NextDay } from "./NextDay";
export { default as DateMessage } from "./DateMessage";
================================================
FILE: src/views/Chat/index.tsx
================================================
import React, { useReducer } from "react";
import { DateMessage, Send, Header, NextDay } from "./components";
import { Container, BottomPadding, Messages } from "./styles";
import { SafeComponent } from "~components";
import Store, { INITIAL_STATE, reducers, Selectors } from "./store";
import { RouteProp } from "@react-navigation/native";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { RootStackParamList } from "~src/@types/react-navigation";
import { SceneName } from "~src/@types/SceneName";
import { Message, State } from "./store/reducers";
import { Platform } from "react-native";
const Empty = () => ;
export type IChat = RouteProp;
function Chat() {
const [state, dispatch] = useReducer(reducers, INITIAL_STATE);
const displayMessages = Selectors.getMessagesDisplay(state as State);
const mockRequest = {
data: displayMessages,
loading: false,
error: false,
};
const insets = useSafeAreaInsets();
return (
String(message._id)}
ListFooterComponent={
!mockRequest.data &&
}
ListEmptyComponent={}
renderItem={DateMessage}
/>
);
}
export default Chat;
================================================
FILE: src/views/Chat/store/index.tsx
================================================
import * as selectors from "./selectors";
import React, { createContext } from "react";
const store = createContext({});
export const useContext = () => {
return React.useContext(store);
};
export {
default as reducers,
Types,
Creators,
INITIAL_STATE,
} from "./reducers";
export const Selectors = selectors;
export default store;
================================================
FILE: src/views/Chat/store/reducers.ts
================================================
import produce from "immer";
import { action, createReducer } from "typesafe-actions";
import { FeedbackStatus } from "../components/Feedback";
import moment from "moment";
export interface Message {
_id: string;
message: string;
createdAt: string;
status: FeedbackStatus;
self: boolean;
}
export interface State {
messages: Message[];
buffer: Message[];
}
const mockMessage = {
_id: "609c830794d0a801004bc667",
self: false,
message: "bom diaa",
createdAt: "2021-05-13T01:38:15.144Z",
status: FeedbackStatus.Success,
};
export const INITIAL_STATE: State = {
messages: [mockMessage],
buffer: [],
};
export enum Types {
SET_MESSAGES = "SET_MESSAGES",
ADD_MESSAGE = "ADD_MESSAGE",
ADD_TEMP = "ADD_TEMP",
REMOVE_TEMP = "REMOVE_TEMP",
ERROR_TEMP = "ERROR_TEMP",
}
export const Creators = {
setMessages: ({ messages }: { messages: Message[] }) =>
action(Types.SET_MESSAGES, { messages }),
addMessage: ({ message }: { message: Message }) =>
action(Types.ADD_MESSAGE, { message }),
addTemp: ({ _id, body }: { _id: string; body: string }) =>
action(Types.ADD_TEMP, { _id, body }),
removeTemp: ({ _id }: { _id: string }) => action(Types.REMOVE_TEMP, { _id }),
errorTemp: ({ _id }: { _id: string }) => action(Types.ERROR_TEMP, { _id }),
};
const setMessages = (state = INITIAL_STATE, { payload: { messages } }) =>
produce(state, (draft) => {
if (!messages || messages.length === draft.messages?.length) return draft;
draft.messages = messages.reverse();
return draft;
});
const addMessage = (state = INITIAL_STATE, { payload: { message } }) =>
produce(state, (draft) => {
draft.messages.unshift(message);
return draft;
});
// Adding a fake message with current time
const addTemp = (state = INITIAL_STATE, { payload: { _id, body } }) =>
produce(state, (draft) => {
draft.buffer.unshift({
_id,
message: body,
createdAt: moment().toISOString(),
self: true,
status: FeedbackStatus.Loading,
} as Message);
return draft;
});
const removeTemp = (state = INITIAL_STATE, { payload: { _id } }) =>
produce(state, (draft) => {
const index = draft.buffer.findIndex((message) => message._id === _id);
draft.buffer.splice(index, 1);
return draft;
});
const errorTemp = (state = INITIAL_STATE, { payload: { _id } }) =>
produce(state, (draft) => {
const index = draft.buffer.findIndex((message) => message._id === _id);
draft.buffer[index].status = FeedbackStatus.Error;
return draft;
});
export default createReducer(INITIAL_STATE)
.handleAction(Types.SET_MESSAGES, setMessages)
.handleAction(Types.ADD_MESSAGE, addMessage)
.handleAction(Types.ADD_TEMP, addTemp)
.handleAction(Types.ERROR_TEMP, errorTemp)
.handleAction(Types.REMOVE_TEMP, removeTemp);
================================================
FILE: src/views/Chat/store/selectors.ts
================================================
import { createSelector } from "reselect";
import { State } from "./reducers";
const messagesSelector = (state: State) => state?.messages ?? [];
const bufferSelector = (state: State) => state?.buffer ?? [];
export const getMessagesDisplay = createSelector(
messagesSelector,
bufferSelector,
(messages, buffer) => [...buffer, ...messages]
);
================================================
FILE: src/views/Chat/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.KeyboardAvoidingView`
background-color: ${(props) => props.theme.colors.background};
flex: 1;
`;
export const MessageList = styled.View`
padding: 25px;
`;
export const BottomPadding = styled.View`
background-color: ${(props) => props.theme.colors.secondaryBackground};
`;
export const Messages = styled.FlatList.attrs({
contentContainerStyle: {
paddingVertical: 12,
paddingHorizontal: 12,
},
})``;
================================================
FILE: src/views/EditProfile/index.tsx
================================================
import React, { useContext, useState } from "react";
import { StatusBar } from "expo-status-bar";
import { KeyboardAvoidingView, Platform, View } from "react-native";
import { ThemeContext } from "styled-components/native";
import {
AddRemoveContainer,
BottomPadding,
Container,
ContinueButton,
numOfColumns,
UserPictureContainer,
UserPictureContent,
userPictureHeight,
} from "./styles";
import Placeholder from "~images/placeholder.svg";
import AddRemove from "~images/AddRemove.svg";
import { DraggableGrid } from "react-native-draggable-grid";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { useNavigation } from "@react-navigation/native";
import { pictures, sortByUrl, deleteUrlFromItem, addUrlToItem } from "./utils";
import { useHeaderHeight } from "@react-navigation/elements";
import { SceneName } from "~src/@types/SceneName";
import { useDidMountEffect } from "~services/utils";
import { Input, RadioButtons } from "~components";
import { useNavbarStyle } from "~components/Navbar";
import Animated, {
useAnimatedStyle,
withSpring,
} from "react-native-reanimated";
const AddUserPhoto = ({ picture, onDelete, onAdd }) => {
const themeContext = useContext(ThemeContext);
const hasPicture = !!picture.url;
const style = useAnimatedStyle(() => {
const rotation = withSpring(hasPicture ? `45deg` : `0deg`);
return { transform: [{ rotateZ: rotation }] };
});
return (
{!hasPicture && }
);
};
export interface Positions {
[id: string]: number;
}
const EditProfile = ({ route }) => {
const themeContext = useContext(ThemeContext);
const insets = useSafeAreaInsets();
const navigation = useNavigation();
const [name, setName] = useState("");
const [bio, setBio] = useState("");
const [pics, setPics] = useState(pictures);
const [gender, setGender] = useState("");
const [genderOfInterest, setGenderOfInterest] = useState("");
// Swipe gestures need to be disabled when Draggable is active,
// othewise the user will perform multiple gestures and the behavior
// will be undesirable
const [gesturesEnabled, setgesturesEnabled] = useState(true);
const headerHeight = useHeaderHeight();
const navbarHeight = useNavbarStyle().height;
useDidMountEffect(() => {
navigation.setOptions({ swipeEnabled: gesturesEnabled });
}, [gesturesEnabled]);
const continueButtonDisabled = Boolean(!genderOfInterest || !gender);
return (
<>
(
{
const newPics = pics
.map(deleteUrlFromItem(picture))
.sort(sortByUrl);
setPics(newPics);
}}
onAdd={() => {
const newPics = pics
.map(addUrlToItem(picture))
.sort(sortByUrl);
setPics(newPics);
}}
picture={picture}
/>
)}
data={pics}
itemHeight={userPictureHeight}
style={{ zIndex: 10 }}
onDragStart={() => setgesturesEnabled(false)}
onDragRelease={(newPics) => {
setgesturesEnabled(true);
setPics(newPics);
}}
/>
navigation.navigate(SceneName.Main, { screen: SceneName.Swipe })
}
>
Salvar perfil
>
);
};
export default EditProfile;
================================================
FILE: src/views/EditProfile/styles.ts
================================================
import styled, { css } from "styled-components/native";
import { Button } from "~components";
import { width } from "~constants";
export const containerPadding = 15;
export const numOfColumns = 3;
export const userPictureHeight = 159;
export const userPictureWidth = (width - containerPadding * 2) / numOfColumns;
export const Container = styled.ScrollView`
flex-grow: 1;
`;
export const AddRemoveContainer = styled.TouchableOpacity<{
inverted: boolean;
}>`
border-radius: 15px;
width: 30px;
height: 30px;
align-items: center;
justify-content: center;
position: absolute;
bottom: 0;
right: 0;
background-color: ${(props) =>
props.inverted
? props.theme.colors.secondaryBackground
: props.theme.colors.primary};
`;
export const UserPictureContent = styled.ImageBackground<{
children: React.ReactElement;
}>`
border-radius: 15px;
align-items: center;
justify-content: center;
overflow: hidden;
width: 100%;
flex: 1;
border: 1px ${(props) => props.theme.colors.border};
background-color: ${(props) => props.theme.colors.secondaryBackground};
`;
export const UserPictureContainer = styled.View`
padding: 7px;
width: ${userPictureWidth}px;
height: ${userPictureHeight}px;
`;
export const ContinueButton = styled(Button)`
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
border-width: 0px;
border-top-width: 1px;
border-color: ${(props) => props.theme.colors.background};
${(props) =>
props.disabled &&
css`
opacity: 0.5;
`}
`;
interface BottomPaddingProps {
disabled?: boolean;
}
export const BottomPadding = styled.View`
background-color: ${(props) => props.theme.colors.primary};
${(props) =>
props.disabled &&
css`
opacity: 0.5;
`}
`;
================================================
FILE: src/views/EditProfile/utils/index.ts
================================================
export const pictures = [
{
key: "realid1",
url: "https://picsum.photos/200",
disabledDrag: false,
disabledReSorted: false,
},
{
key: "realid2",
url: "https://picsum.photos/200",
disabledDrag: false,
disabledReSorted: false,
},
{
key: "realid4",
url: "https://picsum.photos/200",
disabledDrag: false,
disabledReSorted: false,
},
{
key: "realid6",
url: "https://picsum.photos/200",
disabledDrag: false,
disabledReSorted: false,
},
{ key: "2", disabledDrag: true, disabledReSorted: true },
{ key: "3", disabledDrag: true, disabledReSorted: true },
];
export const sortByUrl = (firstItem, secondItem) =>
firstItem.url && !secondItem.url ? -1 : 1;
export const deleteUrlFromItem = (picture) => (currentPic) => {
const pictureWithoutURL = {
...currentPic,
url: "",
disabledDrag: true,
disabledReSorted: true,
};
return currentPic.key === picture.key ? pictureWithoutURL : currentPic;
};
export const addUrlToItem = (picture) => (currentPic) => {
const pictureWithURL = {
...currentPic,
url: "https://picsum.photos/200",
disabledDrag: false,
disabledReSorted: false,
};
return currentPic.key === picture.key ? pictureWithURL : currentPic;
};
================================================
FILE: src/views/Messages/__mocks__/index.ts
================================================
export const mockRequest = {
data: [
{
id: 0,
picture: "https://picsum.photos/200",
name: "Lorem Ipsum",
lastMessage: "Oiii!!",
},
{
id: 1,
picture: "https://picsum.photos/200",
name: "Irene Keebler",
lastMessage: "Oii, tudo bem??!!",
},
],
loading: false,
error: false,
};
================================================
FILE: src/views/Messages/components/Header/index.tsx
================================================
import React from "react";
import { Title, Container } from "./styles";
import { Text } from "~components";
import { FlatList } from "react-native";
import { Preview } from "../Preview";
import { mockRequest } from "~views/Messages/__mocks__";
export const Header = () => {
return (
Pegáveis
String(message.id)}
renderItem={({ item }) => }
horizontal
contentContainerStyle={{ paddingHorizontal: 10 }}
/>
Mensagens
);
};
================================================
FILE: src/views/Messages/components/Header/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.View`
background-color: ${(props) => props.theme.colors.background};
`;
export const Title = styled.View`
margin: 15px;
`;
================================================
FILE: src/views/Messages/components/Message/index.tsx
================================================
import React from "react";
import { Text } from "~components";
import { View } from "react-native";
import { useNavigation } from "@react-navigation/native";
import { Container, Picture } from "./styles";
import { SceneName } from "~src/@types/SceneName";
export const Message = ({ item }) => {
const navigation = useNavigation();
return (
navigation.navigate(SceneName.Chat, { user: item })}
>
{item.name}
{item.lastMessage}
);
};
================================================
FILE: src/views/Messages/components/Message/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.TouchableOpacity`
padding: 10px 15px;
flex: 1;
margin: 5px;
flex-direction: row;
border-radius: 10px;
align-items: center;
`;
export const PICTURE_SIZE = 55;
export const Picture = styled.Image`
width: ${PICTURE_SIZE}px;
height: ${PICTURE_SIZE}px;
border-radius: 50px;
margin-right: 15px;
`;
================================================
FILE: src/views/Messages/components/Preview/index.tsx
================================================
import React from "react";
import { Text } from "~components";
import { useNavigation } from "@react-navigation/native";
import { Container, Picture, Content } from "./styles";
import { SceneName } from "~src/@types/SceneName";
export const Preview = ({ item }) => {
const navigation = useNavigation();
return (
navigation.navigate(SceneName.Chat, { user: item })}
>
{item.name}
);
};
================================================
FILE: src/views/Messages/components/Preview/styles.ts
================================================
import styled from "styled-components/native";
export const Content = styled.View`
width: 65px;
align-items: center;
`;
export const Picture = styled.Image`
width: 80px;
height: 100px;
border-radius: 5px;
margin-bottom: 5px;
background-color: ${(props) => props.theme.colors.border};
`;
export const Container = styled.TouchableOpacity`
margin: 7px;
border-radius: 10px;
align-items: center;
justify-content: center;
`;
================================================
FILE: src/views/Messages/index.tsx
================================================
import React from "react";
import { Container } from "./styles";
import { SafeComponent } from "~components";
import { FlatList } from "react-native";
import { Message } from "./components/Message";
import { Header } from "./components/Header";
import Divider from "~components/Divider";
import { PICTURE_SIZE } from "./components/Message/styles";
import { mockRequest } from "./__mocks__";
function Component() {
return (
String(message.id)}
ItemSeparatorComponent={() => (
)}
renderItem={({ item }) => }
/>
);
}
export default Component;
================================================
FILE: src/views/Messages/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.KeyboardAvoidingView`
background-color: ${(props) => props.theme.colors.background};
flex: 1;
`;
================================================
FILE: src/views/OneTimeCode/components/CodeInput/index.tsx
================================================
import React from "react";
import { FadeIn, FadeOut, ZoomIn, ZoomOut } from "react-native-reanimated";
import {
Container,
InputNumber,
ICodeInputNumber,
InputNumberContainer,
} from "./styles";
interface ICodeInput {
value: string;
length: number;
}
const CodeInputNumber: React.FC = ({
children,
filled,
active,
}) => {
return (
{children}
);
};
const CodeInput: React.FC = ({ value, length }) => {
const oneTimeCode = value.padEnd(length, "0");
return (
{oneTimeCode.split("").map((character, index) => (
{character}
))}
);
};
export default CodeInput;
================================================
FILE: src/views/OneTimeCode/components/CodeInput/styles.ts
================================================
import Animated from "react-native-reanimated";
import styled, { css, DefaultTheme } from "styled-components/native";
import Text from "~components/Text";
export interface ICodeInputNumber {
filled: boolean;
active: boolean;
}
const containerFilledMixin = css`
background-color: ${(props) => props.theme.colors.primary};
border-color: transparent;
`;
const containerActiveMixin = css`
border-color: ${(props) => props.theme.colors.primary};
`;
const getContainerVariantsMixin = (props: ICodeInputNumber) => {
if (props.filled) return containerFilledMixin;
if (props.active) return containerActiveMixin;
};
const getInputColorMixin = (
props: ICodeInputNumber & { theme: DefaultTheme }
) => {
if (props.filled) return props.theme.colors.background;
if (props.active) return props.theme.colors.primary;
return "#979797";
};
export const InputNumberContainer = styled(Animated.View)`
border-color: transparent;
border-style: dashed;
border-width: 3px;
border-radius: 15px;
padding: 23px;
margin: 5px;
flex: 1;
justify-content: center;
align-items: center;
border-color: #979797;
${getContainerVariantsMixin}
`;
export const InputNumber = styled(Text).attrs({
fontSize: "h1",
fontWeight: "bold",
})`
color: ${getInputColorMixin};
`;
export const Container = styled.View`
flex-direction: row;
margin-top: 20px;
overflow: hidden;
`;
================================================
FILE: src/views/OneTimeCode/components/CustomKeyboard/index.tsx
================================================
import React, { useCallback, useContext } from "react";
import { TouchableOpacityProps } from "react-native";
import Erase from "~images/Erase.svg";
import {
KeyContainer,
KeyContent,
KeyboardContainer,
CustomKey,
} from "./styles";
import { ThemeContext } from "styled-components/native";
enum KeyTypes {
Digit = "Digit",
Backspace = "Backspace",
Empty = "Empty",
}
interface IKey {
key: string;
render: any;
type: KeyTypes;
value?: any;
}
const makeDigit = (digit: number): IKey => ({
key: String(digit),
type: KeyTypes.Digit,
value: digit,
render: (props: TouchableOpacityProps) => (
{digit}
),
});
const BackspaceKeyComponent = (props: TouchableOpacityProps) => {
const themeContext = useContext(ThemeContext);
return (
);
};
const BackspaceKey: IKey = {
key: KeyTypes.Backspace,
type: KeyTypes.Backspace,
render: BackspaceKeyComponent,
};
const EmptyKeyComponent = (props) => (
);
const EmptyKey: IKey = {
key: KeyTypes.Empty,
type: KeyTypes.Empty,
render: EmptyKeyComponent,
};
const keys: IKey[] = [1, 2, 3, 4, 5, 6, 7, 8, 9]
.map(makeDigit)
.concat([EmptyKey, makeDigit(0), BackspaceKey]);
const CustomKeyboard = ({ onInsert, onDelete }) => {
const renderKey = useCallback(
(item) => {
const KeyComponent = item.render;
const onKeyPress = () => {
if (item.type === KeyTypes.Backspace) return onDelete();
if (item.type === KeyTypes.Digit) return onInsert(item.value);
};
return ;
},
[onInsert, onDelete]
);
return {keys.map(renderKey)};
};
export default CustomKeyboard;
================================================
FILE: src/views/OneTimeCode/components/CustomKeyboard/styles.ts
================================================
import styled from "styled-components/native";
import Text from "~components/Text";
const numOfColumns = 3;
export const KeyContainer = styled.TouchableOpacity`
padding: 20px;
width: ${100 / numOfColumns}%;
justify-content: center;
align-items: center;
`;
export const KeyContent = styled(Text).attrs({
fontSize: "h2",
})`
text-align: center;
color: ${(props) => props.theme.colors.text};
`;
export const KeyboardContainer = styled.View`
flex-wrap: wrap;
flex-direction: row;
align-items: center;
justify-content: center;
`;
export const CustomKey = styled.View`
width: 30px;
height: 30px;
justify-content: center;
align-items: center;
`;
================================================
FILE: src/views/OneTimeCode/components/GoBack/index.tsx
================================================
import React, { useContext } from "react";
import { TouchableOpacityProps } from "react-native";
import BackArrow from "~images/BackArrow.svg";
import { Container } from "./styles";
import { ThemeContext } from "styled-components/native";
const GoBack: React.FC = (props) => {
const themeContext = useContext(ThemeContext);
return (
);
};
export default GoBack;
================================================
FILE: src/views/OneTimeCode/components/GoBack/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.TouchableOpacity`
position: absolute;
border-radius: 15px;
border-width: 2px;
border-color: ${(props) => props.theme.colors.text};
width: 50px;
height: 50px;
justify-content: center;
align-items: center;
background-color: ${(props) => props.theme.colors.background};
`;
================================================
FILE: src/views/OneTimeCode/hooks/useTimer.ts
================================================
import { Dispatch, SetStateAction, useEffect, useState } from "react";
const useTimer = (
seconds: number
): [number, Dispatch>] => {
const [timer, setTimer] = useState(seconds);
useEffect(() => {
if (timer) {
const timer = setInterval(() => setTimer((count) => count - 1), 1000);
return () => clearInterval(timer);
}
}, [timer]);
return [timer, setTimer];
};
export default useTimer;
================================================
FILE: src/views/OneTimeCode/index.tsx
================================================
import React, { useContext, useState } from "react";
import {
Container,
Content,
Description,
ResendCode,
Timer,
TopColumn,
} from "./styles";
import { StatusBar } from "expo-status-bar";
import Text from "~components/Text";
import { Underline } from "./../Authentication/components/HeroText";
import { useNavigation } from "@react-navigation/native";
import { useDidMountEffect } from "~services/utils";
import CustomKeyboard from "./components/CustomKeyboard";
import useTimer from "./hooks/useTimer";
import GoBack from "./components/GoBack";
import CodeInput from "./components/CodeInput";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { SceneName } from "~src/@types/SceneName";
import moment from "moment";
import { ThemeContext } from "styled-components";
const CODE_LENGTH = 4;
const INITIAL_TIMEOUT_IN_SECONDS = 50;
const RESEND_TIMEOUT_IN_SECONDS = 50;
const Authentication = () => {
const [timer, setTimer] = useTimer(INITIAL_TIMEOUT_IN_SECONDS);
const themeContext = useContext(ThemeContext);
const insets = useSafeAreaInsets();
const [keyboardInput, setKeyboardInput] = useState("");
const formattedTime = moment().minutes(0).seconds(timer).format("mm:ss");
const navigation = useNavigation();
const insetTop = Math.max(15 + insets.top, 50);
useDidMountEffect(() => {
if (keyboardInput.length === CODE_LENGTH) {
navigation.reset({
index: 0,
routes: [{ name: SceneName.EditProfile }],
});
}
}, [keyboardInput]);
return (
{formattedTime}
Insira o código de verificação que te enviamos
{
if (keyboardInput.length >= CODE_LENGTH) return;
setKeyboardInput(keyboardInput + num);
}}
onDelete={() => setKeyboardInput(keyboardInput.slice(0, -1))}
/>
{
setTimer(RESEND_TIMEOUT_IN_SECONDS);
setKeyboardInput("");
}}
>
Reenviar o código
);
};
export default Authentication;
================================================
FILE: src/views/OneTimeCode/styles.ts
================================================
import styled from "styled-components/native";
import Text from "~components/Text";
export const Container = styled.View`
flex: 1;
background-color: ${(props) => props.theme.colors.background};
justify-content: center;
align-items: center;
`;
export const Content = styled.ScrollView.attrs({
contentContainerStyle: {
justifyContent: "center",
alignItems: "center",
minHeight: "100%",
paddingBottom: 100,
},
})`
flex-grow: 1;
`;
export const ResendCode = styled.TouchableOpacity.attrs({
hitSlop: {
top: 50,
left: 50,
bottom: 25,
right: 50,
},
})`
align-content: center;
align-items: center;
position: absolute;
background-color: ${(props) => props.theme.colors.secondaryBackground};
opacity: ${(props) => (props.disabled ? 0.5 : 1)};
border-radius: 10px;
padding: 10px;
`;
export const TopColumn = styled.View`
margin-top: 50px;
margin-bottom: 25px;
justify-content: center;
align-items: center;
max-width: 350px;
`;
export const Timer = styled(Text).attrs({
fontSize: "h1",
fontWeight: "bold",
})`
color: ${(props) => props.theme.colors.text};
`;
export const Description = styled(Text)`
color: ${(props) => props.theme.colors.text};
max-width: 245px;
text-align: center;
`;
================================================
FILE: src/views/Swipe/components/SwipeBackButton/index.tsx
================================================
import React, { useContext } from "react";
import SwipeBackArrow from "~assets/images/SwipeBackArrow.svg";
import { SlideOutRight, SlideInRight } from "react-native-reanimated";
import { useDispatch, useSelector } from "react-redux";
import { ThemeContext } from "styled-components";
import { Actions } from "~store/reducers";
import { getLastCardId } from "~store/selectors";
import { Container, GoBack } from "./styles";
const SwipeBackButton = () => {
const dispatch = useDispatch();
const lastCardId = useSelector(getLastCardId);
const themeContext = useContext(ThemeContext);
const canGoBack = Boolean(lastCardId);
if (!canGoBack) return null;
return (
dispatch(Actions.users.swipe.swipeBack())}
>
);
};
export default SwipeBackButton;
================================================
FILE: src/views/Swipe/components/SwipeBackButton/styles.ts
================================================
import Animated from "react-native-reanimated";
import styled, { css } from "styled-components/native";
export const Container = styled(Animated.View)`
z-index: 20;
`;
export const GoBack = styled.TouchableOpacity`
width: 68px;
height: 50px;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
background-color: ${(props) => props.theme.colors.border};
justify-content: center;
margin-left: auto;
margin-top: 25px;
padding-left: 15px;
shadow-color: #000;
shadow-offset: 0 2px;
shadow-opacity: 0.025;
shadow-radius: 2px;
elevation: 25;
`;
================================================
FILE: src/views/Swipe/components/SwipeHandler/hooks/useSwipeGesture.ts
================================================
import { useState } from "react";
import {
GestureEventPayload,
PanGestureHandlerEventPayload,
PanGestureHandlerGestureEvent,
} from "react-native-gesture-handler";
import Animated, {
useAnimatedGestureHandler,
withSpring,
runOnJS,
withTiming,
useSharedValue,
} from "react-native-reanimated";
import { CARD, ACTION_OFFSET, ACTION_VELOCITY } from "~constants";
type AnimatedGHContext = {
startX: number;
startY: number;
};
export type Translation = {
x: Animated.SharedValue;
y: Animated.SharedValue;
};
type ICoordinates = {
x?: number;
y?: number;
};
export enum Swipe {
Dislike = "Dislike",
Like = "Like",
Maybe = "Maybe",
}
export const getDirectionCoordinates = (swipe: Swipe) => {
"worklet";
switch (swipe) {
case Swipe.Dislike:
return { x: -CARD.CARD_OUT_WIDTH };
case Swipe.Like:
return { x: CARD.CARD_OUT_WIDTH };
case Swipe.Maybe:
return { y: -CARD.CARD_HEIGHT };
default:
return {};
}
};
const getSwipeType = (
event: Readonly
): Swipe => {
"worklet";
const horizontalTrigger =
Math.abs(event.translationX) > ACTION_OFFSET ||
Math.abs(event.velocityX) > ACTION_VELOCITY;
if (horizontalTrigger && event.translationX < 0) return Swipe.Dislike;
if (horizontalTrigger && event.translationX > 0) return Swipe.Like;
const verticalTrigger =
Math.abs(event.translationY) > ACTION_OFFSET ||
Math.abs(event.velocityY) > ACTION_VELOCITY;
if (verticalTrigger && event.translationY < 0) return Swipe.Maybe;
};
const gotoCoordinate = (
translation: Translation,
coordinates: ICoordinates,
callback: (data?: any) => any,
animationConfig = { duration: 250 }
) => {
"worklet";
const willMoveX = coordinates?.x || coordinates?.x === 0;
const willMoveY = coordinates?.y || coordinates?.y === 0;
// This avoids calling the callback multiple times, but could still cause issues if the duration not equal on both
const callbackY = willMoveX ? null : callback;
// TODO: Research how to animate both at the same node. Would avoid the callback issue
// TODO: Maybe useAnimatedXY?
if (willMoveX) {
translation.x.value = withTiming(coordinates.x, animationConfig, callback);
}
if (willMoveY) {
translation.y.value = withTiming(coordinates.y, animationConfig, callbackY);
}
};
interface ISwipeGesture {
onSwipeComplete: (data?: any) => any;
}
export const useSwipeGesture = ({
onSwipeComplete,
}: ISwipeGesture): [
Translation,
ReturnType,
any,
boolean
] => {
const [enabled, setEnabled] = useState(true);
const translation: Translation = {
x: useSharedValue(0),
y: useSharedValue(0),
};
// We want to guarantee the animation has finished before enabling
// the card to be swiped again. Otherwise the user will be able
// to 'catch' the card on the middle of the animation.
const safelyEnableWithDelay = (duration: number) => {
setTimeout(() => setEnabled(true), duration);
};
const gotoDirection = (
swipeDirection: Swipe,
animationConfig = { duration: 250 }
) => {
"worklet";
// Avoid concurrency, should gotoDirection only once
if (!enabled) return;
runOnJS(setEnabled)(false);
const swipeCoordinates = getDirectionCoordinates(swipeDirection);
return gotoCoordinate(
translation,
swipeCoordinates,
() => {
runOnJS(onSwipeComplete)(swipeDirection);
runOnJS(safelyEnableWithDelay)(animationConfig.duration);
},
animationConfig
);
};
const gestureHander = useAnimatedGestureHandler<
PanGestureHandlerGestureEvent,
AnimatedGHContext
>({
onStart: (_, ctx) => {
ctx.startX = translation.x.value;
ctx.startY = translation.y.value;
},
onActive: (event, ctx) => {
translation.x.value = ctx.startX + event.translationX;
translation.y.value = ctx.startY + event.translationY;
},
onEnd: (event) => {
const swipeType = getSwipeType(event);
if (swipeType) {
return gotoDirection(swipeType);
}
translation.x.value = withSpring(0, { stiffness: 50 });
translation.y.value = withSpring(0, { stiffness: 50 });
},
});
return [translation, gestureHander, gotoDirection, enabled];
};
================================================
FILE: src/views/Swipe/components/SwipeHandler/index.tsx
================================================
import React, { useImperativeHandle } from "react";
import { StyleSheet } from "react-native";
import { ACTION_OFFSET } from "~constants";
import FeedbackCard from "~components/FeedbackCard";
import { PanGestureHandler } from "react-native-gesture-handler";
import Animated, {
useAnimatedStyle,
interpolate,
withSpring,
runOnUI,
} from "react-native-reanimated";
import { Swipe, useSwipeGesture } from "./hooks/useSwipeGesture";
import { useDidMountEffect } from "~services/utils";
import { getCurrentCardId } from "~store/selectors";
import { useDispatch, useSelector } from "react-redux";
import { Actions } from "~store/reducers";
const ROTATION_DEG = 8;
interface ISwipeHandler {
card: any;
}
export interface ISwipeHandlerRef {
gotoDirection: (swipeType: Swipe) => void;
}
export const swipeHandlerRef = React.createRef();
const SwipeHandler: React.FC = ({ card }) => {
const dispatch = useDispatch();
const currentCardId = useSelector(getCurrentCardId);
const isFirstCard = card.id === currentCardId;
const onSwipeComplete = (swipeType: Swipe) => {
dispatch(Actions.users.swipe.request({ id: card.id, swipeType }));
};
const [translation, gestureHandler, gotoDirection, enabled] = useSwipeGesture(
{ onSwipeComplete }
);
const automaticSwipe = (swipeType: Swipe) => {
"worklet";
gotoDirection(swipeType, { duration: 500 });
};
useImperativeHandle(isFirstCard ? swipeHandlerRef : null, () => ({
gotoDirection: runOnUI(automaticSwipe),
}));
useDidMountEffect(() => {
if (isFirstCard) {
translation.x.value = withSpring(0, { stiffness: 50 });
translation.y.value = withSpring(0, { stiffness: 50 });
}
}, [isFirstCard]);
const transform = useAnimatedStyle(() => {
const deg = interpolate(
translation.x.value * -1,
[-ACTION_OFFSET, 0, ACTION_OFFSET],
[ROTATION_DEG, 0, -ROTATION_DEG]
);
return {
transform: [
{ translateX: translation.x.value },
{ translateY: translation.y.value },
{ rotate: deg + "deg" },
],
...(isFirstCard && { zIndex: 2 }),
};
});
return (
);
};
export default SwipeHandler;
================================================
FILE: src/views/Swipe/components/SwipeHandler/styles.ts
================================================
import styled from "styled-components/native";
export const Container = styled.View`
flex: 1;
z-index: -1;
margin-bottom: 25px;
`;
================================================
FILE: src/views/Swipe/components/SwipeRequestFeedback/index.tsx
================================================
import React from "react";
import {
Container,
Content,
Title,
ContainedText,
} from "../../../../components/SafeComponent/styles";
import {
useIsOffline,
OfflineComponent,
RequestErrorComponent,
} from "~components/SafeComponent";
import { useSelector } from "react-redux";
import { RootReducer } from "~store/reducers";
import { EmptyAnimation, LogoLoading } from "./styles";
export const EmptyComponent = () => {
return (
Oops, os matches acabaram
Volte mais tarde 😉
);
};
function SwipeRequestFeedback() {
const offline = useIsOffline();
const request = useSelector((state: RootReducer) => state.users.request);
const refetch = () => null;
if (request?.loading) {
return (
);
}
if (request && offline) return ;
if (request?.error) return ;
return ;
}
export default SwipeRequestFeedback;
================================================
FILE: src/views/Swipe/components/SwipeRequestFeedback/styles.ts
================================================
import styled from "styled-components/native";
import LottieView from "lottie-react-native";
import * as LikeFeedbackStyles from "~components/FeedbackCard/components/LikeFeedback/styles";
export const Container = styled(LikeFeedbackStyles.Container)`
background-color: transparent;
`;
export const EmptyAnimation = styled(LottieView).attrs({
autoPlay: true,
source: require("~animations/empty.json"),
})`
width: 100px;
`;
export const LogoLoading = styled(LottieView).attrs({
autoPlay: true,
source: require("~animations/loadingLogo.json"),
speed: 0.5,
})`
width: 150px;
margin: auto;
`;
================================================
FILE: src/views/Swipe/index.tsx
================================================
import React from "react";
import { Container } from "./styles";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { StatusBar } from "expo-status-bar";
import { useContext } from "react";
import { ThemeContext } from "styled-components/native";
import { useSelector } from "react-redux";
import { getCards, getCurrentCardId } from "~store/selectors";
import { MatchActionBar } from "~components";
import { Swipe } from "./components/SwipeHandler/hooks/useSwipeGesture";
import SwipeHandler, { swipeHandlerRef } from "./components/SwipeHandler";
import SwipeRequestFeedback from "./components/SwipeRequestFeedback";
import SwipeBackButton from "./components/SwipeBackButton";
export const useCustomBottomInset = () => {
const insets = useSafeAreaInsets();
return Math.max(20, insets.bottom + 5);
};
const MatchActionBarWrapper = () => {
const currentCard = useSelector(getCurrentCardId);
if (!currentCard) return null;
return (
swipeHandlerRef.current.gotoDirection(Swipe.Dislike)}
onYep={() => swipeHandlerRef.current.gotoDirection(Swipe.Like)}
onMaybe={() => swipeHandlerRef.current.gotoDirection(Swipe.Maybe)}
animated
/>
);
};
const SwipeHandlerWrapper = (card) => {
return ;
};
const Matches = () => {
const bottomInset = useCustomBottomInset();
const themeContext = useContext(ThemeContext);
const cards = useSelector(getCards);
return (
{cards?.map(SwipeHandlerWrapper).reverse()}
);
};
export default Matches;
================================================
FILE: src/views/Swipe/styles.ts
================================================
import styled from "styled-components/native";
import { SafeAreaView } from "react-native-safe-area-context";
import { createMaterialTopTabNavigator } from "@react-navigation/material-top-tabs";
export const Tab = createMaterialTopTabNavigator();
export const Container = styled(SafeAreaView).attrs({
edges: ["left", "right"],
})`
flex: 1;
padding-bottom: 50px;
background-color: ${(props) => props.theme.colors.background};
`;
================================================
FILE: src/views/UserProfile/components/GoBack/index.tsx
================================================
import React from "react";
import Glassmorphism from "~components/Glassmorphism";
import { Container, Content } from "./styles";
import ArrowDown from "~images/ArrowDown.svg";
const GoBack = (props) => {
return (
);
};
export default GoBack;
================================================
FILE: src/views/UserProfile/components/GoBack/styles.ts
================================================
import styled from "styled-components/native";
import { CARD_HEIGHT } from "~views/UserProfile/styles";
const BACK_CONTAINER_SIZE = 60;
export const Container = styled.TouchableOpacity.attrs({
pointerEvents: "box-only",
activeOpacity: 0.95,
hitSlop: {
top: 15,
bottom: 15,
left: 15,
right: 15,
},
})`
margin-top: ${-BACK_CONTAINER_SIZE / 2}px;
right: 25px;
border-radius: ${BACK_CONTAINER_SIZE}px;
overflow: hidden;
align-self: flex-end;
z-index: 2;
`;
export const Content = styled.View`
width: ${BACK_CONTAINER_SIZE}px;
height: ${BACK_CONTAINER_SIZE}px;
border-radius: ${BACK_CONTAINER_SIZE}px;
justify-content: center;
align-items: center;
padding-top: 5px;
`;
================================================
FILE: src/views/UserProfile/index.tsx
================================================
import React, { useContext } from "react";
import { StatusBar } from "expo-status-bar";
import { ThemeContext } from "styled-components/native";
import {
Container,
Content,
CARD_HEIGHT,
BottomColumn,
MatchActionBarGradient,
ShareButton,
ReportButton,
} from "./styles";
import MainCard from "~components/MainCard";
import { Platform, View } from "react-native";
import { useNavigation } from "@react-navigation/native";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import MatchActionBar from "~components/MatchActionBar";
import {
Name,
Age,
Description,
} from "~components/MainCard/components/PersonalInfo/styles";
import SchoolIcon from "~images/SchoolIcon.svg";
import JobIcon from "~images/JobIcon.svg";
import { Swipe } from "~views/Swipe/components/SwipeHandler/hooks/useSwipeGesture";
import { useCustomBottomInset } from "~views/Swipe";
import { swipeHandlerRef } from "~views/Swipe/components/SwipeHandler";
import { useDispatch, useSelector } from "react-redux";
import { getCurrentCardId } from "~store/selectors";
import { Actions } from "~store/reducers";
import GoBack from "./components/GoBack";
import { Text } from "~components";
enum TeaserTypes {
School = "school",
Job = "job",
}
const Icons = {
[TeaserTypes.School]: SchoolIcon,
[TeaserTypes.Job]: JobIcon,
};
const useSwipeHandler = (user: any) => {
const currentCardId = useSelector(getCurrentCardId);
const dispatch = useDispatch();
const navigation = useNavigation();
return (swipeType: Swipe) => {
navigation.goBack();
if (user.id === currentCardId && swipeHandlerRef.current) {
return swipeHandlerRef.current.gotoDirection(swipeType);
}
dispatch(Actions.users.swipe.request({ id: user.id, swipeType }));
};
};
const Teasers = ({ teasers }) => {
const themeContext = useContext(ThemeContext);
if (!teasers?.[0]) return null;
return (
{teasers.map((teaser) => {
const TeaserIcon = Icons[teaser.type];
return (
{teaser.string}
);
})}
);
};
const UserProfile = ({ route }) => {
const { user } = route.params;
const swipeHandler = useSwipeHandler(user);
const insets = useSafeAreaInsets();
const bottomInset = useCustomBottomInset();
const navigation = useNavigation();
const themeContext = useContext(ThemeContext);
const MatchActionBarHeight = bottomInset + 100;
const firstName = user.name.split(" ")[0];
return (
<>
{Platform.OS === "ios" ? (
) : (
// Statusbar transition to hidden isn't smooth on android
)}
{user.name}
, {user.age}
{user.description}
Compartilhar perfil de {firstName}
Denunciar {firstName}
swipeHandler(Swipe.Dislike)}
onYep={() => swipeHandler(Swipe.Like)}
onMaybe={() => swipeHandler(Swipe.Maybe)}
/>
>
);
};
export default UserProfile;
================================================
FILE: src/views/UserProfile/styles.ts
================================================
import Color from "color";
import { LinearGradient } from "expo-linear-gradient";
import { clamp } from "lodash";
import styled from "styled-components/native";
import { height, width } from "~constants";
const ASPECT_RATIO = 4 / 3;
const MAX_HEIGHT = height * 0.7;
const MIN_HEIGHT = height * 0.4;
const IDEAL_HEIGHT = width * ASPECT_RATIO;
export const CARD_HEIGHT = clamp(IDEAL_HEIGHT, MIN_HEIGHT, MAX_HEIGHT);
export const Container = styled.ScrollView.attrs({
bounces: false,
})`
flex-grow: 1;
`;
export const BottomColumn = styled.View`
background-color: ${(props) => props.theme.colors.background};
`;
export const Content = styled.View`
background-color: ${(props) => props.theme.colors.background};
padding: 25px;
padding-top: 0;
`;
export const ShareButton = styled.TouchableOpacity.attrs({
hitSlop: { top: 10, bottom: 10, right: 20, left: 20 },
})`
margin-top: 50px;
align-self: center;
`;
export const ReportButton = styled.TouchableOpacity.attrs({
hitSlop: { top: 10, bottom: 10, right: 20, left: 20 },
})`
margin-top: 25px;
align-self: center;
`;
const getStatusBarProps = (props) => {
const gradientColor = Color(props.theme.colors.background);
return {
colors: [
gradientColor.fade(1).rgb().string(),
gradientColor.fade(0.2).rgb().string(),
gradientColor.fade(0).rgb().string(),
],
pointerEvents: "none",
};
};
export const MatchActionBarGradient = styled(LinearGradient).attrs(
getStatusBarProps
)`
position: absolute;
bottom: 0;
left: 0;
right: 0;
`;
================================================
FILE: src/views/index.routes.tsx
================================================
import React, { useContext } from "react";
import Navbar from "../components/Navbar";
import { ThemeContext } from "styled-components/native";
import Authentication from "./Authentication";
import OneTimeCode from "./OneTimeCode";
import UserProfile from "./UserProfile";
import EditProfile from "./EditProfile";
import Chat from "./Chat";
import {
CardStyleInterpolators,
createStackNavigator,
HeaderStyleInterpolators,
} from "@react-navigation/stack";
import { RootStackParamList } from "~src/@types/react-navigation.d";
import { SceneName } from "~src/@types/SceneName";
import SwipeView from "~views/Swipe";
import EditProfileView from "~views/EditProfile";
import MessagesView from "~views/Messages";
import { createMaterialTopTabNavigator } from "@react-navigation/material-top-tabs";
import Logo from "~images/Logo.svg";
import Messages from "~images/Messages.svg";
import Profile from "~images/User.svg";
import LogoActive from "~images/LogoActive.svg";
import MessagesActive from "~images/MessagesActive.svg";
import ProfileActive from "~images/UserActive.svg";
import { Dimensions } from "react-native";
const Tab = createMaterialTopTabNavigator();
const Stack = createStackNavigator();
const screenWidth = Dimensions.get("window").width;
const Tabs = () => {
const themeContext = useContext(ThemeContext);
return (
}
initialLayout={{ width: screenWidth }}
screenOptions={{
tabBarInactiveTintColor: themeContext.colors.text,
}}
initialRouteName={SceneName.Swipe}
>
focused ? : ,
}}
name={SceneName.Swipe}
component={SwipeView}
/>
focused ? : ,
}}
component={MessagesView}
/>
focused ? : ,
}}
component={EditProfileView}
/>
);
};
function Router() {
const theme = useContext(ThemeContext);
return (
);
}
export default Router;
================================================
FILE: tsconfig.json
================================================
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"jsx": "react-native",
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"~components": ["src/components"],
"~constants": ["src/constants"],
"~components/*": ["src/components/*"],
"~graphql": ["src/graphql"],
"~graphql/*": ["src/graphql/*"],
"~themes": ["src/themes"],
"~store/*": ["src/store/*"],
"~store": ["src/store"],
"~reducers/*": ["src/store/reducers/*"],
"~reducers": ["src/store/reducers"],
"~views/*": ["src/views/*"],
"~services/*": ["src/services/*"],
"~assets/*": ["src/assets/*"],
"~images/*": ["src/assets/images/*"],
"~animations/*": ["src/assets/animations/*"],
"~src/*": ["src/*"]
}
}
}