Full Code of GSTJ/pegava-dating-app for AI

master 5f7c4977d93d cached
145 files
627.4 KB
219.9k tokens
77 symbols
1 requests
Download .txt
Showing preview only (672K chars total). Download the full file or copy to clipboard to get everything.
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
================================================
![Cover](https://user-images.githubusercontent.com/50031755/178385492-ad9ae4c3-87fd-4710-94ad-3b6921aa10e8.png)

[![Author](https://img.shields.io/badge/author-GSTJ-F2C702?style=flat-square)](https://github.com/GSTJ)
[![Languages](https://img.shields.io/github/languages/count/GSTJ/PegavaDatingApp?color=%23F2C702&style=flat-square)](#)
[![Stars](https://img.shields.io/github/stars/GSTJ/PegavaDatingApp?color=F2C702&style=flat-square)](https://github.com/GSTJ/PegavaDatingApp/stargazers)
[![Forks](https://img.shields.io/github/forks/GSTJ/PegavaDatingApp?color=%23F2C702&style=flat-square)](https://github.com/GSTJ/PegavaDatingApp/network/members)
[![Contributors](https://img.shields.io/github/contributors/GSTJ/PegavaDatingApp?color=F2C702&style=flat-square)](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:

<a href="https://exp.host/@gstj/pegava">
<img src="https://user-images.githubusercontent.com/50031755/177367465-47e90a23-e2a6-4db8-9519-8c60cb4fd558.svg" width="250" height="250"/>
</a>

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<ExtraEventPayloadT extends Record<st
     onEnded?: (event: HandlerStateChangeEvent) => void;
     onGestureEvent?: (event: GestureEvent<ExtraEventPayloadT>) => void;
     onHandlerStateChange?: (event: HandlerStateChangeEvent<ExtraEventPayloadT>) => void;
+    children?: React.ReactNode;
 };
 export declare function filterConfig(props: Record<string, unknown>, validProps: string[], defaults?: Record<string, unknown>): {
     [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<SvgProps>;
  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<undefined>;
  [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": [
                        
Download .txt
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
Download .txt
SYMBOL INDEX (77 symbols across 49 files)

FILE: src/@types/SceneName.ts
  type SceneName (line 1) | enum SceneName {

FILE: src/@types/User.ts
  type User (line 1) | interface User {

FILE: src/@types/react-navigation.d.ts
  type RootStackParamList (line 4) | type RootStackParamList = {
  type RootParamList (line 18) | interface RootParamList extends RootStackParamList {}

FILE: src/@types/styled-components.d.ts
  type DefaultTheme (line 6) | interface DefaultTheme {

FILE: src/components/Button/styles.ts
  type VariantProps (line 5) | interface VariantProps {
  type ContainerProps (line 8) | interface ContainerProps extends VariantProps, TouchableOpacityProps {

FILE: src/components/FeedbackCard/styles.ts
  type IContainer (line 5) | interface IContainer {

FILE: src/components/Input/index.tsx
  type SearchProps (line 6) | interface SearchProps extends TextInputProps {

FILE: src/components/Loading.ts
  type LoadingProps (line 6) | interface LoadingProps {

FILE: src/components/MainCard/components/Distance/index.tsx
  function Distance (line 7) | function Distance() {

FILE: src/components/MainCard/components/Pagination/index.tsx
  function Pagination (line 5) | function Pagination({ pages, currentPage }) {

FILE: src/components/MainCard/components/Pagination/styles.ts
  type IDot (line 19) | interface IDot {

FILE: src/components/MainCard/components/PersonalInfo/index.tsx
  function PersonalInfo (line 5) | function PersonalInfo({ user }) {

FILE: src/components/MainCard/index.tsx
  function VisitingCard (line 31) | function VisitingCard({ user, shouldShowPersonalInfo = true, ...props }:...

FILE: src/components/Navbar/index.tsx
  constant NAVBAR_HEIGHT (line 8) | const NAVBAR_HEIGHT = 68;
  constant INDICATOR_WIDTH (line 20) | const INDICATOR_WIDTH = 15;
  function Navbar (line 22) | function Navbar({

FILE: src/components/RadioButtons/index.tsx
  type RadioButtonsProps (line 11) | interface RadioButtonsProps {

FILE: src/components/RadioButtons/styles.ts
  type OptionButtonProps (line 5) | interface OptionButtonProps extends TouchableOpacityProps {

FILE: src/components/SafeComponent/index.tsx
  function useIsOffline (line 60) | function useIsOffline() {
  type SafeComponentProps (line 73) | interface SafeComponentProps {
  function SafeComponent (line 79) | function SafeComponent({

FILE: src/components/Text.ts
  type TextProps (line 4) | interface TextProps {

FILE: src/constants.ts
  constant CARD (line 5) | const CARD = {
  constant ACTION_OFFSET (line 12) | const ACTION_OFFSET = 100;
  constant ACTION_VELOCITY (line 13) | const ACTION_VELOCITY = 1000;
  constant ACTION_THRESHOLD (line 14) | const ACTION_THRESHOLD = 1 / 35;

FILE: src/index.tsx
  function App (line 25) | function App() {

FILE: src/services/utils.ts
  type ItemProps (line 15) | interface ItemProps {
  function removeDuplicates (line 20) | function removeDuplicates(

FILE: src/store/reducers/index.ts
  type RootReducer (line 17) | type RootReducer = StateType<typeof rootReducer>;

FILE: src/store/reducers/users/list.ts
  type Types (line 7) | enum Types {

FILE: src/store/reducers/users/swipe.ts
  type Types (line 20) | enum Types {

FILE: src/themes.ts
  type Font (line 3) | enum Font {

FILE: src/views/Chat/components/Feedback.tsx
  type FeedbackStatus (line 6) | enum FeedbackStatus {
  function Feedback (line 12) | function Feedback({ status, ...rest }) {

FILE: src/views/Chat/components/Header/index.tsx
  function Component (line 9) | function Component() {

FILE: src/views/Chat/components/Message/index.tsx
  function Component (line 13) | function Component(props) {

FILE: src/views/Chat/components/Message/styles.ts
  type MessageProps (line 6) | interface MessageProps {

FILE: src/views/Chat/components/NextDay/index.tsx
  function Component (line 6) | function Component({ message, nextMessage }: any) {

FILE: src/views/Chat/components/Send/index.tsx
  function Component (line 5) | function Component() {

FILE: src/views/Chat/components/Send/useSendMessage.ts
  function Component (line 7) | function Component() {

FILE: src/views/Chat/index.tsx
  type IChat (line 15) | type IChat = RouteProp<RootStackParamList, SceneName.Chat>;
  function Chat (line 17) | function Chat() {

FILE: src/views/Chat/store/reducers.ts
  type Message (line 6) | interface Message {
  type State (line 14) | interface State {
  constant INITIAL_STATE (line 27) | const INITIAL_STATE: State = {
  type Types (line 32) | enum Types {

FILE: src/views/EditProfile/index.tsx
  type Positions (line 63) | interface Positions {

FILE: src/views/EditProfile/styles.ts
  type BottomPaddingProps (line 64) | interface BottomPaddingProps {

FILE: src/views/Messages/components/Message/styles.ts
  constant PICTURE_SIZE (line 12) | const PICTURE_SIZE = 55;

FILE: src/views/Messages/index.tsx
  function Component (line 11) | function Component() {

FILE: src/views/OneTimeCode/components/CodeInput/index.tsx
  type ICodeInput (line 9) | interface ICodeInput {

FILE: src/views/OneTimeCode/components/CodeInput/styles.ts
  type ICodeInputNumber (line 4) | interface ICodeInputNumber {

FILE: src/views/OneTimeCode/components/CustomKeyboard/index.tsx
  type KeyTypes (line 12) | enum KeyTypes {
  type IKey (line 17) | interface IKey {

FILE: src/views/OneTimeCode/index.tsx
  constant CODE_LENGTH (line 24) | const CODE_LENGTH = 4;
  constant INITIAL_TIMEOUT_IN_SECONDS (line 25) | const INITIAL_TIMEOUT_IN_SECONDS = 50;
  constant RESEND_TIMEOUT_IN_SECONDS (line 26) | const RESEND_TIMEOUT_IN_SECONDS = 50;

FILE: src/views/Swipe/components/SwipeHandler/hooks/useSwipeGesture.ts
  type AnimatedGHContext (line 16) | type AnimatedGHContext = {
  type Translation (line 21) | type Translation = {
  type ICoordinates (line 26) | type ICoordinates = {
  type Swipe (line 31) | enum Swipe {
  type ISwipeGesture (line 97) | interface ISwipeGesture {

FILE: src/views/Swipe/components/SwipeHandler/index.tsx
  constant ROTATION_DEG (line 18) | const ROTATION_DEG = 8;
  type ISwipeHandler (line 20) | interface ISwipeHandler {
  type ISwipeHandlerRef (line 24) | interface ISwipeHandlerRef {

FILE: src/views/Swipe/components/SwipeRequestFeedback/index.tsx
  function SwipeRequestFeedback (line 29) | function SwipeRequestFeedback() {

FILE: src/views/UserProfile/components/GoBack/styles.ts
  constant BACK_CONTAINER_SIZE (line 4) | const BACK_CONTAINER_SIZE = 60;

FILE: src/views/UserProfile/index.tsx
  type TeaserTypes (line 34) | enum TeaserTypes {

FILE: src/views/UserProfile/styles.ts
  constant ASPECT_RATIO (line 7) | const ASPECT_RATIO = 4 / 3;
  constant MAX_HEIGHT (line 8) | const MAX_HEIGHT = height * 0.7;
  constant MIN_HEIGHT (line 9) | const MIN_HEIGHT = height * 0.4;
  constant IDEAL_HEIGHT (line 10) | const IDEAL_HEIGHT = width * ASPECT_RATIO;
  constant CARD_HEIGHT (line 12) | const CARD_HEIGHT = clamp(IDEAL_HEIGHT, MIN_HEIGHT, MAX_HEIGHT);

FILE: src/views/index.routes.tsx
  function Router (line 75) | function Router() {
Condensed preview — 145 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (715K chars).
[
  {
    "path": ".expo-shared/README.md",
    "chars": 538,
    "preview": "> Why do I have a folder named \".expo-shared\" in my project?\n\nThe \".expo-shared\" folder is created when running commands"
  },
  {
    "path": ".expo-shared/assets.json",
    "chars": 2055,
    "preview": "{\n  \"a6164e4abeb497ef93629af873180de081b31b94734937559b3fdae2db69d97d\": true,\n  \"00012469d933960ab83c0f0d9e71f610cdcbae9"
  },
  {
    "path": ".github/FUNDING.yml",
    "chars": 810,
    "preview": "# These are supported funding model platforms\n\ngithub: [gstj] # Replace with up to 4 GitHub Sponsors-enabled usernames e"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "chars": 834,
    "preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Describe the b"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "chars": 595,
    "preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your fea"
  },
  {
    "path": ".gitignore",
    "chars": 844,
    "preview": "# OSX\n#\n.DS_Store\n\n# Xcode\n#\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.p"
  },
  {
    "path": "App.json",
    "chars": 1104,
    "preview": "{\n  \"displayName\": \"Pegava\",\n  \"expo\": {\n    \"name\": \"Pegava\",\n    \"description\": \"Aplicativo de relacionamento\",\n    \"s"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "chars": 5227,
    "preview": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participa"
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 6727,
    "preview": "# Contributing\n\nWe want this community to be friendly and respectful to each other. Please follow it in all your interac"
  },
  {
    "path": "LICENSE",
    "chars": 7048,
    "preview": "Creative Commons Legal Code\n\nCC0 1.0 Universal\n\n    CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n"
  },
  {
    "path": "README.md",
    "chars": 4164,
    "preview": "![Cover](https://user-images.githubusercontent.com/50031755/178385492-ad9ae4c3-87fd-4710-94ad-3b6921aa10e8.png)\n\n[![Auth"
  },
  {
    "path": "babel.config.js",
    "chars": 928,
    "preview": "module.exports = function (api) {\n  api.cache(true);\n  return {\n    presets: [\"babel-preset-expo\"],\n    plugins: [\n     "
  },
  {
    "path": "metro.config.js",
    "chars": 580,
    "preview": "const { getDefaultConfig } = require(\"metro-config\");\n\nmodule.exports = (async () => {\n  const {\n    resolver: { sourceE"
  },
  {
    "path": "package.json",
    "chars": 2575,
    "preview": "{\n  \"main\": \"src/index.tsx\",\n  \"dependencies\": {\n    \"@react-native-community/netinfo\": \"9.3.7\",\n    \"@react-navigation/"
  },
  {
    "path": "patches/react-native-gesture-handler+2.2.1.patch",
    "chars": 939,
    "preview": "diff --git a/node_modules/react-native-gesture-handler/lib/typescript/handlers/gestureHandlerCommon.d.ts b/node_modules/"
  },
  {
    "path": "pull_request_template.md",
    "chars": 939,
    "preview": "_Note: erase all explanatory text from this template, replacing it with your words/images._\n\n📝 **DESCRIPTION:**\n\n_Briefl"
  },
  {
    "path": "src/@types/SceneName.ts",
    "chars": 257,
    "preview": "export enum SceneName {\n  Authentication = \"Authentication\",\n  OneTimeCode = \"OneTimeCode\",\n  UserProfile = \"UserProfile"
  },
  {
    "path": "src/@types/User.ts",
    "chars": 99,
    "preview": "export interface User {\n  id: string;\n  picture: string;\n  name: string;\n  lastMessage?: string;\n}\n"
  },
  {
    "path": "src/@types/modules.d.ts",
    "chars": 321,
    "preview": "declare module \"*.gql\" {\n  import { DocumentNode } from \"graphql\";\n\n  const value: DocumentNode;\n  export = value;\n}\n\nde"
  },
  {
    "path": "src/@types/react-navigation.d.ts",
    "chars": 604,
    "preview": "import type { User } from \"~src/@types/User\";\nimport type { SceneName } from \"~src/@types/SceneName\";\n\nexport type RootS"
  },
  {
    "path": "src/@types/styled-components.d.ts",
    "chars": 1247,
    "preview": "// import original module declarations\nimport \"styled-components\";\n\n// and extend them!\ndeclare module \"styled-component"
  },
  {
    "path": "src/assets/animations/disconnected.json",
    "chars": 58671,
    "preview": "{\"v\":\"5.2.1\",\"fr\":60,\"ip\":0,\"op\":600,\"w\":1080,\"h\":1080,\"nm\":\"Astronaout \",\"ddd\":0,\"assets\":[],\"layers\":[{\"ddd\":0,\"ind\":1"
  },
  {
    "path": "src/assets/animations/empty.json",
    "chars": 8791,
    "preview": "{\"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,"
  },
  {
    "path": "src/assets/animations/error.json",
    "chars": 41647,
    "preview": "{\"v\":\"5.2.1\",\"fr\":60,\"ip\":0,\"op\":120,\"w\":1080,\"h\":1080,\"nm\":\"Chemical\",\"ddd\":0,\"assets\":[],\"layers\":[{\"ddd\":0,\"ind\":1,\"t"
  },
  {
    "path": "src/assets/animations/inverseLoadingDots.json",
    "chars": 9781,
    "preview": "{\n  \"v\": \"4.10.2\",\n  \"fr\": 29.9700012207031,\n  \"ip\": 0,\n  \"op\": 40.0000016292334,\n  \"w\": 42,\n  \"h\": 17,\n  \"nm\": \"loading"
  },
  {
    "path": "src/assets/animations/loadingLogo.json",
    "chars": 5265,
    "preview": "{\"ip\":0,\"fr\":60,\"v\":\"5.1.20\",\"assets\":[],\"layers\":[{\"ty\":4,\"nm\":\"LoadingCenter\",\"ip\":0,\"st\":0,\"ind\":2,\"hix\":2,\"ks\":{\"o\":"
  },
  {
    "path": "src/assets/animations/location.json",
    "chars": 333588,
    "preview": "{\n  \"v\": \"5.2.1\",\n  \"fr\": 30,\n  \"ip\": 0,\n  \"op\": 180,\n  \"w\": 1155,\n  \"h\": 700,\n  \"nm\": \"Comp 1\",\n  \"ddd\": 0,\n  \"assets\":"
  },
  {
    "path": "src/assets/animations/primaryLoadingDots.json",
    "chars": 9169,
    "preview": "{\n  \"v\": \"4.10.2\",\n  \"fr\": 29.9700012207031,\n  \"ip\": 0,\n  \"op\": 40.0000016292334,\n  \"w\": 42,\n  \"h\": 17,\n  \"nm\": \"loading"
  },
  {
    "path": "src/assets/animations/swipe.json",
    "chars": 17773,
    "preview": "{\n  \"v\": \"5.1.20\",\n  \"fr\": 30,\n  \"ip\": 0,\n  \"op\": 66,\n  \"w\": 930,\n  \"h\": 950,\n  \"nm\": \"Hand_02\",\n  \"ddd\": 0,\n  \"assets\":"
  },
  {
    "path": "src/assets/fonts/Gilroy-Bold.hhea.xml",
    "chars": 1050,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n<!DOCTYPE hheaTable [\n<!ELEMENT hheaTable EMPTY>\n<!ATTLIST hheaT"
  },
  {
    "path": "src/assets/fonts/Gilroy-ExtraBold.hhea.xml",
    "chars": 1060,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n<!DOCTYPE hheaTable [\n<!ELEMENT hheaTable EMPTY>\n<!ATTLIST hheaT"
  },
  {
    "path": "src/assets/fonts/Gilroy-Light.hhea.xml",
    "chars": 1052,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n<!DOCTYPE hheaTable [\n<!ELEMENT hheaTable EMPTY>\n<!ATTLIST hheaT"
  },
  {
    "path": "src/assets/fonts/Gilroy-Medium.hhea.xml",
    "chars": 1054,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n<!DOCTYPE hheaTable [\n<!ELEMENT hheaTable EMPTY>\n<!ATTLIST hheaT"
  },
  {
    "path": "src/assets/fonts/Gilroy-Regular.hhea.xml",
    "chars": 1056,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n<!DOCTYPE hheaTable [\n<!ELEMENT hheaTable EMPTY>\n<!ATTLIST hheaT"
  },
  {
    "path": "src/assets/fonts/Gilroy-SemiBold.hhea.xml",
    "chars": 1058,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n<!DOCTYPE hheaTable [\n<!ELEMENT hheaTable EMPTY>\n<!ATTLIST hheaT"
  },
  {
    "path": "src/components/Button/index.tsx",
    "chars": 657,
    "preview": "import React from \"react\";\nimport { Container, ButtonText, ContainerProps } from \"./styles\";\nimport Loading from \"~compo"
  },
  {
    "path": "src/components/Button/styles.ts",
    "chars": 862,
    "preview": "import styled, { css } from \"styled-components/native\";\nimport Text from \"~components/Text\";\nimport { TouchableOpacityPr"
  },
  {
    "path": "src/components/Divider.ts",
    "chars": 228,
    "preview": "import styled from \"styled-components/native\";\nimport { StyleSheet } from \"react-native\";\n\nexport default styled.View`\n "
  },
  {
    "path": "src/components/FeedbackCard/components/LikeFeedback/index.tsx",
    "chars": 295,
    "preview": "import React from \"react\";\nimport { Image } from \"react-native\";\nimport { Container } from \"./styles\";\n\nconst LikeFeedba"
  },
  {
    "path": "src/components/FeedbackCard/components/LikeFeedback/styles.ts",
    "chars": 202,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.View`\n  flex: 1;\n  justify-content: cent"
  },
  {
    "path": "src/components/FeedbackCard/components/MaybeFeedback/index.tsx",
    "chars": 296,
    "preview": "import React from \"react\";\nimport { Image } from \"react-native\";\nimport { Container } from \"./styles\";\n\nconst MaybeFeedb"
  },
  {
    "path": "src/components/FeedbackCard/components/MaybeFeedback/styles.ts",
    "chars": 205,
    "preview": "import styled from \"styled-components/native\";\nimport * as LikeFeedbackStyles from \"../LikeFeedback/styles\";\n\nexport con"
  },
  {
    "path": "src/components/FeedbackCard/components/NopeFeedback/index.tsx",
    "chars": 294,
    "preview": "import React from \"react\";\nimport { Image } from \"react-native\";\nimport { Container } from \"./styles\";\n\nconst NopeFeedba"
  },
  {
    "path": "src/components/FeedbackCard/components/NopeFeedback/styles.ts",
    "chars": 205,
    "preview": "import styled from \"styled-components/native\";\nimport * as LikeFeedbackStyles from \"../LikeFeedback/styles\";\n\nexport con"
  },
  {
    "path": "src/components/FeedbackCard/index.tsx",
    "chars": 1544,
    "preview": "import React from \"react\";\nimport {\n  Extrapolate,\n  interpolate,\n  useAnimatedStyle,\n} from \"react-native-reanimated\";\n"
  },
  {
    "path": "src/components/FeedbackCard/styles.ts",
    "chars": 652,
    "preview": "import Animated from \"react-native-reanimated\";\nimport styled, { css } from \"styled-components/native\";\nimport { absolut"
  },
  {
    "path": "src/components/Glassmorphism/index.tsx",
    "chars": 308,
    "preview": "import React from \"react\";\nimport { Container, Gradient } from \"./styles\";\n\nconst Glassmorphism: React.FC<{ children: Re"
  },
  {
    "path": "src/components/Glassmorphism/styles.ts",
    "chars": 782,
    "preview": "import { BlurView } from \"expo-blur\";\nimport styled, { DefaultTheme } from \"styled-components/native\";\nimport { LinearGr"
  },
  {
    "path": "src/components/Input/index.tsx",
    "chars": 722,
    "preview": "import React from \"react\";\nimport { TextInputProps, View } from \"react-native\";\nimport { CancelIcon, CancelTouchArea, Co"
  },
  {
    "path": "src/components/Input/styles.ts",
    "chars": 987,
    "preview": "import Color from \"color\";\nimport styled from \"styled-components/native\";\nimport cancelIcon from \"~images/Cancel.svg\";\n\n"
  },
  {
    "path": "src/components/Loading.ts",
    "chars": 367,
    "preview": "import styled from \"styled-components/native\";\n\nimport LottieView from \"lottie-react-native\";\nimport LoadingDots from \"~"
  },
  {
    "path": "src/components/MainCard/components/Distance/index.tsx",
    "chars": 527,
    "preview": "import React from \"react\";\nimport { Container, Content, DistanceText } from \"./styles\";\nimport Location from \"~images/Lo"
  },
  {
    "path": "src/components/MainCard/components/Distance/styles.ts",
    "chars": 590,
    "preview": "import styled from \"styled-components/native\";\nimport Text from \"~components/Text\";\nimport Glassmorphism from \"~componen"
  },
  {
    "path": "src/components/MainCard/components/Pagination/index.tsx",
    "chars": 684,
    "preview": "import React from \"react\";\nimport { useAnimatedStyle, withTiming } from \"react-native-reanimated\";\nimport { Container, C"
  },
  {
    "path": "src/components/MainCard/components/Pagination/styles.ts",
    "chars": 671,
    "preview": "import Animated from \"react-native-reanimated\";\nimport styled from \"styled-components/native\";\nimport Glassmorphism from"
  },
  {
    "path": "src/components/MainCard/components/PersonalInfo/index.tsx",
    "chars": 446,
    "preview": "import React from \"react\";\nimport { Container, Name, Age, Description } from \"./styles\";\nimport Glassmorphism from \"~com"
  },
  {
    "path": "src/components/MainCard/components/PersonalInfo/styles.ts",
    "chars": 473,
    "preview": "import styled from \"styled-components/native\";\nimport Text from \"~components/Text\";\n\nexport const Container = styled.Vie"
  },
  {
    "path": "src/components/MainCard/index.tsx",
    "chars": 2431,
    "preview": "import React, { useCallback, useState } from \"react\";\nimport {\n  CarouselContainer,\n  PreviousImage,\n  NextImage,\n  Uppe"
  },
  {
    "path": "src/components/MainCard/styles.ts",
    "chars": 778,
    "preview": "import styled, { css } from \"styled-components/native\";\nimport { Image } from \"react-native\";\nimport Animated from \"reac"
  },
  {
    "path": "src/components/MatchActionBar/index.tsx",
    "chars": 956,
    "preview": "import React from \"react\";\nimport Animated, { FadeInDown, ZoomOutDown } from \"react-native-reanimated\";\nimport {\n  Conta"
  },
  {
    "path": "src/components/MatchActionBar/styles.ts",
    "chars": 1180,
    "preview": "import styled from \"styled-components/native\";\nimport Animated from \"react-native-reanimated\";\n\n// Should preload for a "
  },
  {
    "path": "src/components/Navbar/index.tsx",
    "chars": 2394,
    "preview": "import React, { useContext } from \"react\";\nimport { Container, Tabs, Tab, Indicator } from \"./styles\";\nimport { useSafeA"
  },
  {
    "path": "src/components/Navbar/styles.ts",
    "chars": 526,
    "preview": "import { Animated } from \"react-native\";\nimport styled from \"styled-components/native\";\n\nexport const Container = styled"
  },
  {
    "path": "src/components/RadioButtons/index.tsx",
    "chars": 1329,
    "preview": "import React from \"react\";\nimport { View } from \"react-native\";\nimport Text from \"~components/Text\";\nimport {\n  Containe"
  },
  {
    "path": "src/components/RadioButtons/styles.ts",
    "chars": 1295,
    "preview": "import { TouchableOpacityProps } from \"react-native\";\nimport styled, { css } from \"styled-components/native\";\nimport Tex"
  },
  {
    "path": "src/components/SafeComponent/index.tsx",
    "chars": 2659,
    "preview": "import React, { useState, useEffect } from \"react\";\nimport {\n  Container,\n  Content,\n  Title,\n  ContainedText,\n  Disconn"
  },
  {
    "path": "src/components/SafeComponent/styles.ts",
    "chars": 1075,
    "preview": "import styled from \"styled-components/native\";\nimport Text from \"~components/Text\";\nimport Disconnected from \"~animation"
  },
  {
    "path": "src/components/Text.ts",
    "chars": 877,
    "preview": "import styled, { css } from \"styled-components/native\";\nimport { DefaultTheme as DefaultThemeProps } from \"styled-compon"
  },
  {
    "path": "src/components/index.ts",
    "chars": 468,
    "preview": "export { default as Text } from \"./Text\";\nexport { default as Button } from \"./Button\";\nexport { default as Input } from"
  },
  {
    "path": "src/constants.ts",
    "chars": 362,
    "preview": "import { Dimensions } from \"react-native\";\n\nexport const { width, height } = Dimensions.get(\"screen\");\n\nexport const CAR"
  },
  {
    "path": "src/index.tsx",
    "chars": 2434,
    "preview": "import React, { useEffect, useMemo } from \"react\";\nimport { registerRootComponent } from \"expo\";\nimport { useFonts } fro"
  },
  {
    "path": "src/services/api.ts",
    "chars": 158,
    "preview": "import axios from \"axios\";\n\nconst axiosInstance = axios.create({\n  baseURL: \"https://60aa8be766f1d00017772f6a.mockapi.io"
  },
  {
    "path": "src/services/navigation.ts",
    "chars": 756,
    "preview": "import { useNavigationContainerRef } from \"@react-navigation/native\";\nimport { RootStackParamList } from \"~src/@types/re"
  },
  {
    "path": "src/services/reactotron.ts",
    "chars": 486,
    "preview": "import Reactotron from \"reactotron-react-native\";\nimport { reactotronRedux } from \"reactotron-redux\";\nimport sagaPlugin "
  },
  {
    "path": "src/services/utils.ts",
    "chars": 687,
    "preview": "import { EffectCallback, DependencyList, useRef, useEffect } from \"react\";\n\nexport const useDidMountEffect = (\n  func: E"
  },
  {
    "path": "src/store/index.ts",
    "chars": 357,
    "preview": "import createSagaMiddleware from \"redux-saga\";\nimport reducer from \"./reducers\";\nimport sagas from \"./sagas\";\nimport { c"
  },
  {
    "path": "src/store/reducers/index.ts",
    "chars": 373,
    "preview": "import * as users from \"./users\";\nimport { StateType } from \"typesafe-actions\";\nimport { combineReducers } from \"redux\";"
  },
  {
    "path": "src/store/reducers/users/index.ts",
    "chars": 364,
    "preview": "import * as swipe from \"./swipe\";\nimport * as list from \"./list\";\nimport reduceReducers from \"reduce-reducers\";\nimport {"
  },
  {
    "path": "src/store/reducers/users/list.ts",
    "chars": 1707,
    "preview": "import produce from \"immer\";\nimport { createAsyncAction } from \"typesafe-actions\";\nimport { ActionType, createReducer } "
  },
  {
    "path": "src/store/reducers/users/swipe.ts",
    "chars": 1870,
    "preview": "import produce from \"immer\";\nimport { createAction, createAsyncAction } from \"typesafe-actions\";\nimport { ActionType, cr"
  },
  {
    "path": "src/store/sagas/index.ts",
    "chars": 224,
    "preview": "import { put } from \"redux-saga/effects\";\nimport users from \"~store/sagas/users\";\nimport { Actions } from \"~store/reduce"
  },
  {
    "path": "src/store/sagas/users/index.ts",
    "chars": 194,
    "preview": "import { all } from \"redux-saga/effects\";\nimport fetchUsersRequest from \"./list\";\nimport handleSwipeUserRequest from \"./"
  },
  {
    "path": "src/store/sagas/users/list.ts",
    "chars": 809,
    "preview": "import { call, put, takeLatest, select, delay } from \"redux-saga/effects\";\nimport { Actions, Types } from \"~store/reduce"
  },
  {
    "path": "src/store/sagas/users/swipe.ts",
    "chars": 1100,
    "preview": "import { put, takeLatest, select, all, fork } from \"redux-saga/effects\";\nimport { Actions, Types } from \"~store/reducers"
  },
  {
    "path": "src/store/selectors.ts",
    "chars": 557,
    "preview": "import { createSelector } from \"reselect\";\nimport { RootReducer } from \"~reducers/index\";\n\nexport const getCards = creat"
  },
  {
    "path": "src/themes.ts",
    "chars": 1507,
    "preview": "import { DefaultTheme as DefaultThemeProps } from \"styled-components\";\n\nexport enum Font {\n  GilroyLight = \"Gilroy-Light"
  },
  {
    "path": "src/views/Authentication/components/HeroText/index.tsx",
    "chars": 796,
    "preview": "import React from \"react\";\nimport {\n  Container,\n  RotatedRectangle,\n  Title,\n  Line,\n  UnderlineContainer,\n} from \"./st"
  },
  {
    "path": "src/views/Authentication/components/HeroText/styles.ts",
    "chars": 1017,
    "preview": "import styled from \"styled-components/native\";\nimport Text from \"~components/Text\";\n\nexport const Container = styled.Vie"
  },
  {
    "path": "src/views/Authentication/components/PhoneInput/index.tsx",
    "chars": 956,
    "preview": "import React, { useCallback, useState } from \"react\";\nimport {\n  Container,\n  TextInput,\n  CountryCodeContainer,\n  Count"
  },
  {
    "path": "src/views/Authentication/components/PhoneInput/styles.ts",
    "chars": 1062,
    "preview": "import styled, { css } from \"styled-components/native\";\nimport { StyleSheet } from \"react-native\";\nimport Color from \"co"
  },
  {
    "path": "src/views/Authentication/index.tsx",
    "chars": 2736,
    "preview": "import React, { useState, useContext } from \"react\";\nimport { BottomCard, Container, Description, TopCard } from \"./styl"
  },
  {
    "path": "src/views/Authentication/styles.ts",
    "chars": 1199,
    "preview": "import styled from \"styled-components/native\";\nimport { SafeAreaView } from \"react-native-safe-area-context\";\nimport Tex"
  },
  {
    "path": "src/views/Chat/components/DateMessage.tsx",
    "chars": 873,
    "preview": "import React, { Fragment } from \"react\";\nimport { ListRenderItemInfo } from \"react-native\";\nimport { Selectors, useConte"
  },
  {
    "path": "src/views/Chat/components/Feedback.tsx",
    "chars": 480,
    "preview": "import React from \"react\";\nimport Error from \"../assets/error.svg\";\nimport Clock from \"../assets/clock.svg\";\nimport Tick"
  },
  {
    "path": "src/views/Chat/components/Header/index.tsx",
    "chars": 832,
    "preview": "import React, { useContext } from \"react\";\nimport { Header, BackTouchArea, Picture } from \"./styles\";\nimport Text from \""
  },
  {
    "path": "src/views/Chat/components/Header/styles.ts",
    "chars": 585,
    "preview": "import styled from \"styled-components/native\";\nimport { SafeAreaView } from \"react-native-safe-area-context\";\n\nexport co"
  },
  {
    "path": "src/views/Chat/components/Message/index.tsx",
    "chars": 902,
    "preview": "import React from \"react\";\nimport moment from \"moment\";\nimport Feedback, { FeedbackStatus } from \"../Feedback\";\nimport T"
  },
  {
    "path": "src/views/Chat/components/Message/styles.ts",
    "chars": 1022,
    "preview": "import Animated from \"react-native-reanimated\";\nimport styled, { css } from \"styled-components/native\";\nimport { Text } "
  },
  {
    "path": "src/views/Chat/components/NextDay/index.tsx",
    "chars": 569,
    "preview": "import React from \"react\";\nimport Text from \"~components/Text\";\nimport { Container } from \"./styles\";\nimport moment from"
  },
  {
    "path": "src/views/Chat/components/NextDay/styles.ts",
    "chars": 131,
    "preview": "import styled from 'styled-components/native';\n\nexport const Container = styled.View`\n  padding: 15px 0 25px 0;\n  margin"
  },
  {
    "path": "src/views/Chat/components/Send/index.tsx",
    "chars": 766,
    "preview": "import React, { useState, useCallback } from \"react\";\nimport { Container, Input } from \"./styles\";\nimport useSendMessage"
  },
  {
    "path": "src/views/Chat/components/Send/styles.ts",
    "chars": 633,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.View`\n  background-color: ${(props) => p"
  },
  {
    "path": "src/views/Chat/components/Send/useSendMessage.ts",
    "chars": 1371,
    "preview": "import moment from \"moment\";\nimport uuid from \"react-native-uuid\";\nimport { Creators, useContext } from \"~views/Chat/sto"
  },
  {
    "path": "src/views/Chat/components/index.tsx",
    "chars": 290,
    "preview": "export { default as Message } from \"./Message\";\nexport { default as Header } from \"./Header\";\nexport { default as Send }"
  },
  {
    "path": "src/views/Chat/index.tsx",
    "chars": 1807,
    "preview": "import React, { useReducer } from \"react\";\nimport { DateMessage, Send, Header, NextDay } from \"./components\";\nimport { C"
  },
  {
    "path": "src/views/Chat/store/index.tsx",
    "chars": 348,
    "preview": "import * as selectors from \"./selectors\";\nimport React, { createContext } from \"react\";\n\nconst store = createContext({})"
  },
  {
    "path": "src/views/Chat/store/reducers.ts",
    "chars": 2837,
    "preview": "import produce from \"immer\";\nimport { action, createReducer } from \"typesafe-actions\";\nimport { FeedbackStatus } from \"."
  },
  {
    "path": "src/views/Chat/store/selectors.ts",
    "chars": 349,
    "preview": "import { createSelector } from \"reselect\";\nimport { State } from \"./reducers\";\n\nconst messagesSelector = (state: State) "
  },
  {
    "path": "src/views/Chat/styles.ts",
    "chars": 501,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.KeyboardAvoidingView`\n  background-color"
  },
  {
    "path": "src/views/EditProfile/index.tsx",
    "chars": 5734,
    "preview": "import React, { useContext, useState } from \"react\";\nimport { StatusBar } from \"expo-status-bar\";\nimport { KeyboardAvoid"
  },
  {
    "path": "src/views/EditProfile/styles.ts",
    "chars": 1795,
    "preview": "import styled, { css } from \"styled-components/native\";\nimport { Button } from \"~components\";\nimport { width } from \"~co"
  },
  {
    "path": "src/views/EditProfile/utils/index.ts",
    "chars": 1271,
    "preview": "export const pictures = [\n  {\n    key: \"realid1\",\n    url: \"https://picsum.photos/200\",\n    disabledDrag: false,\n    dis"
  },
  {
    "path": "src/views/Messages/__mocks__/index.ts",
    "chars": 346,
    "preview": "export const mockRequest = {\n  data: [\n    {\n      id: 0,\n      picture: \"https://picsum.photos/200\",\n      name: \"Lorem"
  },
  {
    "path": "src/views/Messages/components/Header/index.tsx",
    "chars": 730,
    "preview": "import React from \"react\";\nimport { Title, Container } from \"./styles\";\nimport { Text } from \"~components\";\nimport { Fla"
  },
  {
    "path": "src/views/Messages/components/Header/styles.ts",
    "chars": 208,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.View`\n  background-color: ${(props) => p"
  },
  {
    "path": "src/views/Messages/components/Message/index.tsx",
    "chars": 654,
    "preview": "import React from \"react\";\nimport { Text } from \"~components\";\nimport { View } from \"react-native\";\nimport { useNavigati"
  },
  {
    "path": "src/views/Messages/components/Message/styles.ts",
    "chars": 393,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.TouchableOpacity`\n  padding: 10px 15px;\n"
  },
  {
    "path": "src/views/Messages/components/Preview/index.tsx",
    "chars": 630,
    "preview": "import React from \"react\";\nimport { Text } from \"~components\";\nimport { useNavigation } from \"@react-navigation/native\";"
  },
  {
    "path": "src/views/Messages/components/Preview/styles.ts",
    "chars": 446,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Content = styled.View`\n  width: 65px;\n  align-items: center"
  },
  {
    "path": "src/views/Messages/index.tsx",
    "chars": 949,
    "preview": "import React from \"react\";\nimport { Container } from \"./styles\";\nimport { SafeComponent } from \"~components\";\nimport { F"
  },
  {
    "path": "src/views/Messages/styles.ts",
    "chars": 181,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.KeyboardAvoidingView`\n  background-color"
  },
  {
    "path": "src/views/OneTimeCode/components/CodeInput/index.tsx",
    "chars": 1153,
    "preview": "import React from \"react\";\nimport { FadeIn, FadeOut, ZoomIn, ZoomOut } from \"react-native-reanimated\";\nimport {\n  Contai"
  },
  {
    "path": "src/views/OneTimeCode/components/CodeInput/styles.ts",
    "chars": 1426,
    "preview": "import Animated from \"react-native-reanimated\";\nimport styled, { css, DefaultTheme } from \"styled-components/native\";\nim"
  },
  {
    "path": "src/views/OneTimeCode/components/CustomKeyboard/index.tsx",
    "chars": 1983,
    "preview": "import React, { useCallback, useContext } from \"react\";\nimport { TouchableOpacityProps } from \"react-native\";\nimport Era"
  },
  {
    "path": "src/views/OneTimeCode/components/CustomKeyboard/styles.ts",
    "chars": 673,
    "preview": "import styled from \"styled-components/native\";\nimport Text from \"~components/Text\";\n\nconst numOfColumns = 3;\nexport cons"
  },
  {
    "path": "src/views/OneTimeCode/components/GoBack/index.tsx",
    "chars": 490,
    "preview": "import React, { useContext } from \"react\";\nimport { TouchableOpacityProps } from \"react-native\";\nimport BackArrow from \""
  },
  {
    "path": "src/views/OneTimeCode/components/GoBack/styles.ts",
    "chars": 370,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.TouchableOpacity`\n  position: absolute;\n"
  },
  {
    "path": "src/views/OneTimeCode/hooks/useTimer.ts",
    "chars": 442,
    "preview": "import { Dispatch, SetStateAction, useEffect, useState } from \"react\";\n\nconst useTimer = (\n  seconds: number\n): [number,"
  },
  {
    "path": "src/views/OneTimeCode/index.tsx",
    "chars": 2913,
    "preview": "import React, { useContext, useState } from \"react\";\nimport {\n  Container,\n  Content,\n  Description,\n  ResendCode,\n  Tim"
  },
  {
    "path": "src/views/OneTimeCode/styles.ts",
    "chars": 1267,
    "preview": "import styled from \"styled-components/native\";\nimport Text from \"~components/Text\";\n\nexport const Container = styled.Vie"
  },
  {
    "path": "src/views/Swipe/components/SwipeBackButton/index.tsx",
    "chars": 1081,
    "preview": "import React, { useContext } from \"react\";\nimport SwipeBackArrow from \"~assets/images/SwipeBackArrow.svg\";\nimport { Slid"
  },
  {
    "path": "src/views/Swipe/components/SwipeBackButton/styles.ts",
    "chars": 584,
    "preview": "import Animated from \"react-native-reanimated\";\nimport styled, { css } from \"styled-components/native\";\n\nexport const Co"
  },
  {
    "path": "src/views/Swipe/components/SwipeHandler/hooks/useSwipeGesture.ts",
    "chars": 4356,
    "preview": "import { useState } from \"react\";\nimport {\n  GestureEventPayload,\n  PanGestureHandlerEventPayload,\n  PanGestureHandlerGe"
  },
  {
    "path": "src/views/Swipe/components/SwipeHandler/index.tsx",
    "chars": 2557,
    "preview": "import React, { useImperativeHandle } from \"react\";\nimport { StyleSheet } from \"react-native\";\nimport { ACTION_OFFSET } "
  },
  {
    "path": "src/views/Swipe/components/SwipeHandler/styles.ts",
    "chars": 138,
    "preview": "import styled from \"styled-components/native\";\n\nexport const Container = styled.View`\n  flex: 1;\n  z-index: -1;\n  margin"
  },
  {
    "path": "src/views/Swipe/components/SwipeRequestFeedback/index.tsx",
    "chars": 1152,
    "preview": "import React from \"react\";\nimport {\n  Container,\n  Content,\n  Title,\n  ContainedText,\n} from \"../../../../components/Saf"
  },
  {
    "path": "src/views/Swipe/components/SwipeRequestFeedback/styles.ts",
    "chars": 609,
    "preview": "import styled from \"styled-components/native\";\nimport LottieView from \"lottie-react-native\";\nimport * as LikeFeedbackSty"
  },
  {
    "path": "src/views/Swipe/index.tsx",
    "chars": 1853,
    "preview": "import React from \"react\";\nimport { Container } from \"./styles\";\nimport { useSafeAreaInsets } from \"react-native-safe-ar"
  },
  {
    "path": "src/views/Swipe/styles.ts",
    "chars": 438,
    "preview": "import styled from \"styled-components/native\";\nimport { SafeAreaView } from \"react-native-safe-area-context\";\nimport { c"
  },
  {
    "path": "src/views/UserProfile/components/GoBack/index.tsx",
    "chars": 398,
    "preview": "import React from \"react\";\nimport Glassmorphism from \"~components/Glassmorphism\";\nimport { Container, Content } from \"./"
  },
  {
    "path": "src/views/UserProfile/components/GoBack/styles.ts",
    "chars": 718,
    "preview": "import styled from \"styled-components/native\";\nimport { CARD_HEIGHT } from \"~views/UserProfile/styles\";\n\nconst BACK_CONT"
  },
  {
    "path": "src/views/UserProfile/index.tsx",
    "chars": 4978,
    "preview": "import React, { useContext } from \"react\";\nimport { StatusBar } from \"expo-status-bar\";\nimport { ThemeContext } from \"st"
  },
  {
    "path": "src/views/UserProfile/styles.ts",
    "chars": 1549,
    "preview": "import Color from \"color\";\nimport { LinearGradient } from \"expo-linear-gradient\";\nimport { clamp } from \"lodash\";\nimport"
  },
  {
    "path": "src/views/index.routes.tsx",
    "chars": 3784,
    "preview": "import React, { useContext } from \"react\";\nimport Navbar from \"../components/Navbar\";\nimport { ThemeContext } from \"styl"
  },
  {
    "path": "tsconfig.json",
    "chars": 799,
    "preview": "{\n  \"extends\": \"expo/tsconfig.base\",\n  \"compilerOptions\": {\n    \"jsx\": \"react-native\",\n    \"allowSyntheticDefaultImports"
  }
]

About this extraction

This page contains the full source code of the GSTJ/pegava-dating-app GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 145 files (627.4 KB), approximately 219.9k tokens, and a symbol index with 77 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!