├── .watchmanconfig
├── .gitattributes
├── .babelrc
├── app.json
├── src
├── config.js
├── screens
│ ├── AnimatedList.js
│ ├── Home.js
│ ├── LottieList.js
│ └── AnimatableList.js
├── components
│ └── Button.js
├── events
│ └── HelloFloripaJS.js
├── Animatable
│ ├── FadeIn.js
│ ├── ZoomIn.js
│ ├── ZoomOut.js
│ ├── FadeInDown.js
│ ├── LightSpeedIn.js
│ └── LightSpeedOut.js
├── Lottie
│ ├── Rocket.js
│ ├── World.js
│ ├── SendEmail.js
│ └── assets
│ │ ├── mailsent.json
│ │ ├── bms-rocket.json
│ │ └── world_locations.json
└── Animated
│ └── InfinitySpin.js
├── android
├── app
│ ├── src
│ │ └── main
│ │ │ ├── res
│ │ │ ├── values
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ ├── mipmap-hdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-mdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ └── mipmap-xxhdpi
│ │ │ │ └── ic_launcher.png
│ │ │ ├── java
│ │ │ └── com
│ │ │ │ └── reactnativeanimations
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── MainApplication.java
│ │ │ └── AndroidManifest.xml
│ ├── BUCK
│ ├── proguard-rules.pro
│ └── build.gradle
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── keystores
│ ├── debug.keystore.properties
│ └── BUCK
├── settings.gradle
├── build.gradle
├── gradle.properties
├── gradlew.bat
└── gradlew
├── ios
├── reactNativeAnimations
│ ├── Images.xcassets
│ │ ├── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── AppDelegate.h
│ ├── main.m
│ ├── AppDelegate.m
│ ├── Info.plist
│ └── Base.lproj
│ │ └── LaunchScreen.xib
├── reactNativeAnimationsTests
│ ├── Info.plist
│ └── reactNativeAnimationsTests.m
├── reactNativeAnimations-tvOSTests
│ └── Info.plist
├── reactNativeAnimations-tvOS
│ └── Info.plist
└── reactNativeAnimations.xcodeproj
│ └── xcshareddata
│ └── xcschemes
│ ├── reactNativeAnimations.xcscheme
│ └── reactNativeAnimations-tvOS.xcscheme
├── .buckconfig
├── index.js
├── README.md
├── package.json
├── .gitignore
├── .flowconfig
└── App.js
/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["react-native"]
3 | }
4 |
--------------------------------------------------------------------------------
/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "reactNativeAnimations",
3 | "displayName": "reactNativeAnimations"
4 | }
--------------------------------------------------------------------------------
/src/config.js:
--------------------------------------------------------------------------------
1 | export const reactImg = 'https://s3.amazonaws.com/media-p.slid.es/uploads/alexanderfarennikov/images/1198519/reactjs.png';
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | reactNativeAnimations
3 |
4 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/.buckconfig:
--------------------------------------------------------------------------------
1 |
2 | [android]
3 | target = Google Inc.:Google APIs:23
4 |
5 | [maven_repositories]
6 | central = https://repo1.maven.org/maven2
7 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/socksrust/react-native-animations/HEAD/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | import { AppRegistry } from 'react-native';
2 | import App from './App';
3 |
4 | AppRegistry.registerComponent('reactNativeAnimations', () => App);
5 |
--------------------------------------------------------------------------------
/android/keystores/debug.keystore.properties:
--------------------------------------------------------------------------------
1 | key.store=debug.keystore
2 | key.alias=androiddebugkey
3 | key.store.password=android
4 | key.alias.password=android
5 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/socksrust/react-native-animations/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/socksrust/react-native-animations/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/socksrust/react-native-animations/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/socksrust/react-native-animations/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/keystores/BUCK:
--------------------------------------------------------------------------------
1 | keystore(
2 | name = "debug",
3 | properties = "debug.keystore.properties",
4 | store = "debug.keystore",
5 | visibility = [
6 | "PUBLIC",
7 | ],
8 | )
9 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'reactNativeAnimations'
2 | include ':lottie-react-native'
3 | project(':lottie-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/lottie-react-native/src/android')
4 |
5 | include ':app'
6 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
6 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations/AppDelegate.h:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 |
10 | @interface AppDelegate : UIResponder
11 |
12 | @property (nonatomic, strong) UIWindow *window;
13 |
14 | @end
15 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations/main.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 |
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React Native animations - Animated, Animatable and Lottie
2 |
3 | ## SETUP
4 | ```
5 | yarn
6 | react-native link
7 | ```
8 |
9 | ## RUN
10 | ```
11 | cd ios
12 | open reactNativeAnimations.xcodeproj
13 | ```
14 |
15 | ## PURPOSE
16 | I built this app to collect some animations built with:
17 | ```
18 | 1 - Animated API
19 | 2 - Animatable
20 | 3 - Lottie
21 | ```
22 |
23 | ## CONTRIBUTIONS
24 | Contributions are welcome, please add more meaningful animations to the app or check for the issues.
--------------------------------------------------------------------------------
/android/app/src/main/java/com/reactnativeanimations/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.reactnativeanimations;
2 |
3 | import com.facebook.react.ReactActivity;
4 |
5 | public class MainActivity extends ReactActivity {
6 |
7 | /**
8 | * Returns the name of the main component registered from JavaScript.
9 | * This is used to schedule rendering of the component.
10 | */
11 | @Override
12 | protected String getMainComponentName() {
13 | return "reactNativeAnimations";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "reactNativeAnimations",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "start": "node node_modules/react-native/local-cli/cli.js start",
7 | "test": "jest"
8 | },
9 | "dependencies": {
10 | "lottie-react-native": "^2.5.0",
11 | "react": "16.3.1",
12 | "react-native": "0.55.1",
13 | "react-native-animatable": "^1.2.4",
14 | "react-navigation": "^1.5.11",
15 | "styled-components": "^3.2.5"
16 | },
17 | "devDependencies": {
18 | "babel-jest": "22.4.3",
19 | "babel-preset-react-native": "4.0.0",
20 | "jest": "22.4.3",
21 | "react-test-renderer": "16.3.1"
22 | },
23 | "jest": {
24 | "preset": "react-native"
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.2.3'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | mavenLocal()
18 | jcenter()
19 | maven {
20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
21 | url "$rootDir/../node_modules/react-native/android"
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | }
33 | ],
34 | "info" : {
35 | "version" : 1,
36 | "author" : "xcode"
37 | }
38 | }
--------------------------------------------------------------------------------
/src/screens/AnimatedList.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React, { Component } from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import styled from 'styled-components/native';
5 | import Button from '../components/Button';
6 |
7 | const Wrapper = styled.ScrollView.attrs({
8 | contentContainerStyle: {
9 | flexDirection: 'column',
10 | justifyContent: 'flex-start',
11 | alignItems: 'center',
12 | backgroundColor: '#00e676',
13 | flex: 1,
14 | }
15 | })``;
16 |
17 | type Props = {
18 | navigation: Object
19 | };
20 | export default class LottieList extends Component {
21 | render() {
22 | return (
23 |
24 |
26 | );
27 | }
28 | }
--------------------------------------------------------------------------------
/ios/reactNativeAnimationsTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations-tvOSTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/src/components/Button.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React, { Component } from 'react';
3 | import styled from 'styled-components/native';
4 |
5 | const Wrapper = styled.TouchableOpacity`
6 | justify-content: center;
7 | align-items: center;
8 | width: 80%;
9 | height: 50;
10 | border-bottom-left-radius: 20;
11 | border-bottom-right-radius: 20;
12 | border-top-left-radius: 20;
13 | border-top-right-radius: 20;
14 | margin-top: 20;
15 | background-color: #000;
16 | shadow-color: #fff,
17 | shadow-offset: { width: 0, height: 0 };
18 | shadow-opacity: 0.2;
19 | shadow-radius: 20;
20 | `;
21 |
22 | const ButtonText = styled.Text`
23 | color: #00e676;
24 | font-size: 32px;
25 | font-weight: 700;
26 | `
27 |
28 | const Button = (props: Object) => (
29 | props.onPress()}>
30 | {props.text || props.children}
31 |
32 | );
33 |
34 | export default Button;
35 |
--------------------------------------------------------------------------------
/src/events/HelloFloripaJS.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React, { Component } from 'react';
3 | import { Text, View, StyleSheet, Image } from 'react-native';
4 |
5 | class App extends Component<*> {
6 | render() {
7 | return (
8 |
9 | Hello
10 | Floripa
11 |
16 |
17 | );
18 | }
19 | }
20 |
21 | const styles = StyleSheet.create({
22 | wrapper: {
23 | flex: 1,
24 | justifyContent: 'center',
25 | alignItems: 'center',
26 | },
27 | title: {
28 | fontSize: 32,
29 | fontWeight: '700',
30 | },
31 | bigTitle: {
32 | fontSize: 50,
33 | fontWeight: '700',
34 | }
35 | })
36 |
37 | export default App;
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
19 |
20 | android.useDeprecatedNdk=true
21 |
--------------------------------------------------------------------------------
/src/screens/Home.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React, { Component } from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import styled from 'styled-components/native';
5 | import Button from '../components/Button';
6 |
7 | const Wrapper = styled.View`
8 | flex-direction: column;
9 | justify-content: space-around;
10 | align-items: center;
11 | background-color: #00e676;
12 | flex: 1;
13 | `;
14 |
15 | type Props = {
16 | navigation: Object
17 | };
18 |
19 | export default class Home extends Component {
20 | static navigationOptions = {
21 | header: null
22 | }
23 | render() {
24 | return (
25 |
26 |
30 | );
31 | }
32 | }
--------------------------------------------------------------------------------
/src/screens/LottieList.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React, { Component } from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import styled from 'styled-components/native';
5 | import Button from '../components/Button';
6 |
7 | const Wrapper = styled.ScrollView.attrs({
8 | contentContainerStyle: {
9 | flexDirection: 'column',
10 | justifyContent: 'flex-start',
11 | alignItems: 'center',
12 | backgroundColor: '#00e676',
13 | flex: 1,
14 | }
15 | })``;
16 |
17 | type Props = {
18 | navigation: Object
19 | };
20 | export default class LottieList extends Component {
21 | render() {
22 | return (
23 |
24 | this.props.navigation.navigate('SendEmailLottie')}/>
25 | this.props.navigation.navigate('RocketLottie')}/>
26 | this.props.navigation.navigate('WorldLottie')}/>
27 |
28 | );
29 | }
30 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | project.xcworkspace
24 |
25 | # Android/IntelliJ
26 | #
27 | build/
28 | .idea
29 | .gradle
30 | local.properties
31 | *.iml
32 |
33 | # node.js
34 | #
35 | node_modules/
36 | npm-debug.log
37 | yarn-error.log
38 |
39 | # BUCK
40 | buck-out/
41 | \.buckd/
42 | *.keystore
43 |
44 | # fastlane
45 | #
46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47 | # screenshots whenever they are needed.
48 | # For more information about the recommended setup visit:
49 | # https://docs.fastlane.tools/best-practices/source-control/
50 |
51 | */fastlane/report.xml
52 | */fastlane/Preview.html
53 | */fastlane/screenshots
54 |
55 | # Bundle artifact
56 | *.jsbundle
57 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
13 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/src/Animatable/FadeIn.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import * as Animatable from 'react-native-animatable';
5 |
6 | const animatableAnimation = () => (
7 |
8 |
11 | fadeIn
12 |
13 |
14 | );
15 |
16 | const styles = StyleSheet.create({
17 | wrapper: {
18 | flex: 1,
19 | flexDirection: 'column',
20 | justifyContent: 'center',
21 | alignItems: 'center',
22 | backgroundColor: '#00e676',
23 | },
24 | card: {
25 | justifyContent: 'center',
26 | alignItems: 'center',
27 | width: '90%',
28 | height: 250,
29 | borderWidth: 2,
30 | borderBottomLeftRadius: 50,
31 | borderBottomRightRadius: 50,
32 | borderTopLeftRadius: 50,
33 | borderTopRightRadius: 50,
34 | marginTop: 20,
35 | backgroundColor: '#000000'
36 | },
37 | cardText: {
38 | fontWeight: '700',
39 | fontSize: 32,
40 | color: '#00e676'
41 | }
42 | });
43 |
44 | export default animatableAnimation;
--------------------------------------------------------------------------------
/src/Animatable/ZoomIn.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import * as Animatable from 'react-native-animatable';
5 |
6 | const animatableAnimation = () => (
7 |
8 |
11 | fadeIn
12 |
13 |
14 | );
15 |
16 | const styles = StyleSheet.create({
17 | wrapper: {
18 | flex: 1,
19 | flexDirection: 'column',
20 | justifyContent: 'center',
21 | alignItems: 'center',
22 | backgroundColor: '#00e676',
23 | },
24 | card: {
25 | justifyContent: 'center',
26 | alignItems: 'center',
27 | width: '90%',
28 | height: 250,
29 | borderWidth: 2,
30 | borderBottomLeftRadius: 50,
31 | borderBottomRightRadius: 50,
32 | borderTopLeftRadius: 50,
33 | borderTopRightRadius: 50,
34 | marginTop: 20,
35 | backgroundColor: '#000000'
36 | },
37 | cardText: {
38 | fontWeight: '700',
39 | fontSize: 32,
40 | color: '#00e676'
41 | }
42 | });
43 |
44 | export default animatableAnimation;
--------------------------------------------------------------------------------
/src/Animatable/ZoomOut.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import * as Animatable from 'react-native-animatable';
5 |
6 | const animatableAnimation = () => (
7 |
8 |
11 | fadeIn
12 |
13 |
14 | );
15 |
16 | const styles = StyleSheet.create({
17 | wrapper: {
18 | flex: 1,
19 | flexDirection: 'column',
20 | justifyContent: 'center',
21 | alignItems: 'center',
22 | backgroundColor: '#00e676',
23 | },
24 | card: {
25 | justifyContent: 'center',
26 | alignItems: 'center',
27 | width: '90%',
28 | height: 250,
29 | borderWidth: 2,
30 | borderBottomLeftRadius: 50,
31 | borderBottomRightRadius: 50,
32 | borderTopLeftRadius: 50,
33 | borderTopRightRadius: 50,
34 | marginTop: 20,
35 | backgroundColor: '#000000'
36 | },
37 | cardText: {
38 | fontWeight: '700',
39 | fontSize: 32,
40 | color: '#00e676'
41 | }
42 | });
43 |
44 | export default animatableAnimation;
--------------------------------------------------------------------------------
/src/Animatable/FadeInDown.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import * as Animatable from 'react-native-animatable';
5 |
6 | const animatableAnimation = () => (
7 |
8 |
11 | fadeIn
12 |
13 |
14 | );
15 |
16 | const styles = StyleSheet.create({
17 | wrapper: {
18 | flex: 1,
19 | flexDirection: 'column',
20 | justifyContent: 'center',
21 | alignItems: 'center',
22 | backgroundColor: '#00e676',
23 | },
24 | card: {
25 | justifyContent: 'center',
26 | alignItems: 'center',
27 | width: '90%',
28 | height: 250,
29 | borderWidth: 2,
30 | borderBottomLeftRadius: 50,
31 | borderBottomRightRadius: 50,
32 | borderTopLeftRadius: 50,
33 | borderTopRightRadius: 50,
34 | marginTop: 20,
35 | backgroundColor: '#000000'
36 | },
37 | cardText: {
38 | fontWeight: '700',
39 | fontSize: 32,
40 | color: '#00e676'
41 | }
42 | });
43 |
44 | export default animatableAnimation;
--------------------------------------------------------------------------------
/src/Animatable/LightSpeedIn.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import * as Animatable from 'react-native-animatable';
5 |
6 | const animatableAnimation = () => (
7 |
8 |
11 | fadeIn
12 |
13 |
14 | );
15 |
16 | const styles = StyleSheet.create({
17 | wrapper: {
18 | flex: 1,
19 | flexDirection: 'column',
20 | justifyContent: 'center',
21 | alignItems: 'center',
22 | backgroundColor: '#00e676',
23 | },
24 | card: {
25 | justifyContent: 'center',
26 | alignItems: 'center',
27 | width: '90%',
28 | height: 250,
29 | borderWidth: 2,
30 | borderBottomLeftRadius: 50,
31 | borderBottomRightRadius: 50,
32 | borderTopLeftRadius: 50,
33 | borderTopRightRadius: 50,
34 | marginTop: 20,
35 | backgroundColor: '#000000'
36 | },
37 | cardText: {
38 | fontWeight: '700',
39 | fontSize: 32,
40 | color: '#00e676'
41 | }
42 | });
43 |
44 | export default animatableAnimation;
--------------------------------------------------------------------------------
/src/Animatable/LightSpeedOut.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import * as Animatable from 'react-native-animatable';
5 |
6 | const animatableAnimation = () => (
7 |
8 |
11 | fadeIn
12 |
13 |
14 | );
15 |
16 | const styles = StyleSheet.create({
17 | wrapper: {
18 | flex: 1,
19 | flexDirection: 'column',
20 | justifyContent: 'center',
21 | alignItems: 'center',
22 | backgroundColor: '#00e676',
23 | },
24 | card: {
25 | justifyContent: 'center',
26 | alignItems: 'center',
27 | width: '90%',
28 | height: 250,
29 | borderWidth: 2,
30 | borderBottomLeftRadius: 50,
31 | borderBottomRightRadius: 50,
32 | borderTopLeftRadius: 50,
33 | borderTopRightRadius: 50,
34 | marginTop: 20,
35 | backgroundColor: '#000000'
36 | },
37 | cardText: {
38 | fontWeight: '700',
39 | fontSize: 32,
40 | color: '#00e676'
41 | }
42 | });
43 |
44 | export default animatableAnimation;
--------------------------------------------------------------------------------
/src/screens/AnimatableList.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React, { Component } from 'react';
3 | import { View, StyleSheet, Text} from 'react-native';
4 | import styled from 'styled-components/native';
5 | import Button from '../components/Button';
6 |
7 | const Wrapper = styled.ScrollView.attrs({
8 | contentContainerStyle: {
9 | flexDirection: 'column',
10 | justifyContent: 'flex-start',
11 | alignItems: 'center',
12 | backgroundColor: '#00e676',
13 | flex: 1,
14 | }
15 | })``;
16 |
17 | type Props = {
18 | navigation: Object
19 | };
20 | export default class LottieList extends Component {
21 | render() {
22 | return (
23 |
24 | this.props.navigation.navigate('FadeInAnimatable')}/>
25 | this.props.navigation.navigate('FadeInDownAnimatable')}/>
26 | this.props.navigation.navigate('ZoomInAnimatable')}/>
27 | this.props.navigation.navigate('ZoomOutAnimatable')}/>
28 | this.props.navigation.navigate('LightSpeedInAnimatable')}/>
29 | this.props.navigation.navigate('LightSpeedOutAnimatable')}/>
30 |
31 | );
32 | }
33 | }
--------------------------------------------------------------------------------
/src/Lottie/Rocket.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import React, { Component } from 'react';
4 | import {
5 | Text,
6 | View,
7 | ScrollView,
8 | TouchableOpacity
9 | } from 'react-native';
10 | import styled from 'styled-components/native'
11 | import Button from '../components/Button'
12 | import Animation from 'lottie-react-native';
13 | import rocket from './assets/bms-rocket.json';
14 |
15 | const Wrapper = styled.View`
16 | background-color: #BA68C8;
17 | flex: 1;
18 | flex-direction: column;
19 | justify-content: space-around;
20 | align-items: center;
21 | `;
22 |
23 | const ButtonText = styled.Text`
24 | color: #BA68C8;
25 | font-weight: 700;
26 | font-size: 24px;
27 | `;
28 |
29 | class lottieAnimation extends Component<*> {
30 | render() {
31 | return (
32 |
33 |
34 | {
36 | this.animation = animation;
37 | }}
38 | style={{
39 | width: 180,
40 | height: 480,
41 | }}
42 | source={rocket}
43 | infinite={true}
44 | />
45 |
46 | this.animation.play()}>
47 | Animate
48 |
49 |
50 | );
51 | }
52 | }
53 |
54 | export default lottieAnimation;
--------------------------------------------------------------------------------
/src/Lottie/World.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import React, { Component } from 'react';
4 | import {
5 | Text,
6 | View,
7 | ScrollView,
8 | TouchableOpacity
9 | } from 'react-native';
10 | import styled from 'styled-components/native'
11 | import Button from '../components/Button'
12 | import Animation from 'lottie-react-native';
13 | import world from './assets/world_locations.json';
14 |
15 | const Wrapper = styled.View`
16 | background-color: #3949AB;
17 | flex: 1;
18 | flex-direction: column;
19 | justify-content: space-around;
20 | align-items: center;
21 | `;
22 |
23 | const ButtonText = styled.Text`
24 | color: #3949AB;
25 | font-weight: 700;
26 | font-size: 24px;
27 | `;
28 |
29 | class lottieAnimation extends Component<*> {
30 | render() {
31 | return (
32 |
33 |
34 | {
36 | this.animation = animation;
37 | }}
38 | style={{
39 | width: 380,
40 | height: 380,
41 | }}
42 | source={world}
43 | infinite={true}
44 | />
45 |
46 | this.animation.play()}>
47 | Animate
48 |
49 |
50 | );
51 | }
52 | }
53 |
54 | export default lottieAnimation;
--------------------------------------------------------------------------------
/src/Lottie/SendEmail.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import React, { Component } from 'react';
4 | import {
5 | Text,
6 | View,
7 | ScrollView,
8 | TouchableOpacity
9 | } from 'react-native';
10 | import styled from 'styled-components/native'
11 | import Button from '../components/Button'
12 | import Animation from 'lottie-react-native';
13 | import mailSent from './assets/mailsent.json';
14 |
15 | const Wrapper = styled.View`
16 | background-color: #FFE300;
17 | flex: 1;
18 | flex-direction: column;
19 | justify-content: space-around;
20 | align-items: center;
21 | `;
22 |
23 | const ButtonText = styled.Text`
24 | color: #FFE300;
25 | font-weight: 700;
26 | font-size: 24px;
27 | `;
28 |
29 | class lottieAnimation extends Component<*> {
30 | render() {
31 | return (
32 |
33 |
34 | {
36 | this.animation = animation;
37 | }}
38 | style={{
39 | width: 180,
40 | height: 480,
41 | }}
42 | source={mailSent}
43 | infinite={true}
44 | />
45 |
46 | this.animation.play()}>
47 | Animate
48 |
49 |
50 | );
51 | }
52 | }
53 |
54 | export default lottieAnimation;
--------------------------------------------------------------------------------
/android/app/src/main/java/com/reactnativeanimations/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.reactnativeanimations;
2 |
3 | import android.app.Application;
4 |
5 | import com.facebook.react.ReactApplication;
6 | import com.airbnb.android.react.lottie.LottiePackage;
7 | import com.facebook.react.ReactNativeHost;
8 | import com.facebook.react.ReactPackage;
9 | import com.facebook.react.shell.MainReactPackage;
10 | import com.facebook.soloader.SoLoader;
11 |
12 | import java.util.Arrays;
13 | import java.util.List;
14 |
15 | public class MainApplication extends Application implements ReactApplication {
16 |
17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
18 | @Override
19 | public boolean getUseDeveloperSupport() {
20 | return BuildConfig.DEBUG;
21 | }
22 |
23 | @Override
24 | protected List getPackages() {
25 | return Arrays.asList(
26 | new MainReactPackage(),
27 | new LottiePackage()
28 | );
29 | }
30 |
31 | @Override
32 | protected String getJSMainModuleName() {
33 | return "index";
34 | }
35 | };
36 |
37 | @Override
38 | public ReactNativeHost getReactNativeHost() {
39 | return mReactNativeHost;
40 | }
41 |
42 | @Override
43 | public void onCreate() {
44 | super.onCreate();
45 | SoLoader.init(this, /* native exopackage */ false);
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations/AppDelegate.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import "AppDelegate.h"
9 |
10 | #import
11 | #import
12 |
13 | @implementation AppDelegate
14 |
15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
16 | {
17 | NSURL *jsCodeLocation;
18 |
19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
20 |
21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation
22 | moduleName:@"reactNativeAnimations"
23 | initialProperties:nil
24 | launchOptions:launchOptions];
25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
26 |
27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
28 | UIViewController *rootViewController = [UIViewController new];
29 | rootViewController.view = rootView;
30 | self.window.rootViewController = rootViewController;
31 | [self.window makeKeyAndVisible];
32 | return YES;
33 | }
34 |
35 | @end
36 |
--------------------------------------------------------------------------------
/.flowconfig:
--------------------------------------------------------------------------------
1 | [ignore]
2 | ; We fork some components by platform
3 | .*/*[.]android.js
4 |
5 | ; Ignore "BUCK" generated dirs
6 | /\.buckd/
7 |
8 | ; Ignore unexpected extra "@providesModule"
9 | .*/node_modules/.*/node_modules/fbjs/.*
10 |
11 | ; Ignore duplicate module providers
12 | ; For RN Apps installed via npm, "Libraries" folder is inside
13 | ; "node_modules/react-native" but in the source repo it is in the root
14 | .*/Libraries/react-native/React.js
15 |
16 | ; Ignore polyfills
17 | .*/Libraries/polyfills/.*
18 |
19 | ; Ignore metro
20 | .*/node_modules/metro/.*
21 |
22 | [include]
23 |
24 | [libs]
25 | node_modules/react-native/Libraries/react-native/react-native-interface.js
26 | node_modules/react-native/flow/
27 | node_modules/react-native/flow-github/
28 |
29 | [options]
30 | emoji=true
31 |
32 | module.system=haste
33 |
34 | munge_underscores=true
35 |
36 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
37 |
38 | module.file_ext=.js
39 | module.file_ext=.jsx
40 | module.file_ext=.json
41 | module.file_ext=.native.js
42 |
43 | suppress_type=$FlowIssue
44 | suppress_type=$FlowFixMe
45 | suppress_type=$FlowFixMeProps
46 | suppress_type=$FlowFixMeState
47 |
48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
52 |
53 | [version]
54 | ^0.67.0
55 |
--------------------------------------------------------------------------------
/src/Animated/InfinitySpin.js:
--------------------------------------------------------------------------------
1 | //@flow
2 | import React, { Component } from 'react';
3 | import { View, Animated, Image, Easing, StyleSheet} from 'react-native';
4 | import styled from 'styled-components/native'
5 |
6 | const Wrapper = styled.View`
7 | flex: 1;
8 | flex-direction: row;
9 | justify-content: space-around;
10 | align-items: center;
11 | background-color: #000000;
12 | `;
13 |
14 | type Props = {};
15 | class animatedAnimation extends Component {
16 | constructor() {
17 | super()
18 | this.animationValue = new Animated.Value(0);
19 | }
20 |
21 | componentDidMount() {
22 | this.spin();
23 | }
24 |
25 | spin() {
26 | this.animationValue.setValue(0);
27 | Animated.timing(
28 | this.animationValue,
29 | {
30 | toValue: 1,
31 | duration: 2500,
32 | easing: Easing.linear,
33 | }
34 | ).start(() => this.spin());
35 | }
36 | render() {
37 | const spin = this.animationValue.interpolate({
38 | inputRange: [0, 1],
39 | outputRange: ['0deg', '360deg'],
40 | });
41 |
42 | return (
43 |
44 |
52 |
53 | );
54 | }
55 | }
56 |
57 | const styles = StyleSheet.create({
58 | wrapper: {
59 | flex: 1,
60 | flexDirection: 'row',
61 | justifyContent: 'space-around',
62 | alignItems: 'center',
63 | backgroundColor: '#000000',
64 | }
65 | });
66 |
67 | export default animatedAnimation;
68 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations-tvOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIRequiredDeviceCapabilities
28 |
29 | armv7
30 |
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UIViewControllerBasedStatusBarAppearance
38 |
39 | NSLocationWhenInUseUsageDescription
40 |
41 | NSAppTransportSecurity
42 |
43 |
44 | NSExceptionDomains
45 |
46 | localhost
47 |
48 | NSExceptionAllowsInsecureHTTPLoads
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/android/app/BUCK:
--------------------------------------------------------------------------------
1 | # To learn about Buck see [Docs](https://buckbuild.com/).
2 | # To run your application with Buck:
3 | # - install Buck
4 | # - `npm start` - to start the packager
5 | # - `cd android`
6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
8 | # - `buck install -r android/app` - compile, install and run application
9 | #
10 |
11 | lib_deps = []
12 |
13 | for jarfile in glob(['libs/*.jar']):
14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
15 | lib_deps.append(':' + name)
16 | prebuilt_jar(
17 | name = name,
18 | binary_jar = jarfile,
19 | )
20 |
21 | for aarfile in glob(['libs/*.aar']):
22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
23 | lib_deps.append(':' + name)
24 | android_prebuilt_aar(
25 | name = name,
26 | aar = aarfile,
27 | )
28 |
29 | android_library(
30 | name = "all-libs",
31 | exported_deps = lib_deps,
32 | )
33 |
34 | android_library(
35 | name = "app-code",
36 | srcs = glob([
37 | "src/main/java/**/*.java",
38 | ]),
39 | deps = [
40 | ":all-libs",
41 | ":build_config",
42 | ":res",
43 | ],
44 | )
45 |
46 | android_build_config(
47 | name = "build_config",
48 | package = "com.reactnativeanimations",
49 | )
50 |
51 | android_resource(
52 | name = "res",
53 | package = "com.reactnativeanimations",
54 | res = "src/main/res",
55 | )
56 |
57 | android_binary(
58 | name = "app",
59 | keystore = "//android/keystores:debug",
60 | manifest = "src/main/AndroidManifest.xml",
61 | package_type = "debug",
62 | deps = [
63 | ":app-code",
64 | ],
65 | )
66 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | reactNativeAnimations
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | LSRequiresIPhoneOS
26 |
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 | UIViewControllerBasedStatusBarAppearance
40 |
41 | NSLocationWhenInUseUsageDescription
42 |
43 | NSAppTransportSecurity
44 |
45 |
46 | NSExceptionDomains
47 |
48 | localhost
49 |
50 | NSExceptionAllowsInsecureHTTPLoads
51 |
52 |
53 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimationsTests/reactNativeAnimationsTests.m:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) 2015-present, Facebook, Inc.
3 | *
4 | * This source code is licensed under the MIT license found in the
5 | * LICENSE file in the root directory of this source tree.
6 | */
7 |
8 | #import
9 | #import
10 |
11 | #import
12 | #import
13 |
14 | #define TIMEOUT_SECONDS 600
15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
16 |
17 | @interface reactNativeAnimationsTests : XCTestCase
18 |
19 | @end
20 |
21 | @implementation reactNativeAnimationsTests
22 |
23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
24 | {
25 | if (test(view)) {
26 | return YES;
27 | }
28 | for (UIView *subview in [view subviews]) {
29 | if ([self findSubviewInView:subview matching:test]) {
30 | return YES;
31 | }
32 | }
33 | return NO;
34 | }
35 |
36 | - (void)testRendersWelcomeScreen
37 | {
38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
40 | BOOL foundElement = NO;
41 |
42 | __block NSString *redboxError = nil;
43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
44 | if (level >= RCTLogLevelError) {
45 | redboxError = message;
46 | }
47 | });
48 |
49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
52 |
53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
55 | return YES;
56 | }
57 | return NO;
58 | }];
59 | }
60 |
61 | RCTSetLogFunction(RCTDefaultLogFunction);
62 |
63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
65 | }
66 |
67 |
68 | @end
69 |
--------------------------------------------------------------------------------
/App.js:
--------------------------------------------------------------------------------
1 | //@flow
2 |
3 | import React, { Component } from 'react';
4 | import {
5 | Text,
6 | View,
7 | ScrollView,
8 | TouchableOpacity
9 | } from 'react-native';
10 | import { StackNavigator } from 'react-navigation';
11 |
12 | import Home from './src/screens/Home';
13 |
14 | //Main animations Views
15 | import Animated from './src/screens/AnimatedList';
16 | import Animatable from './src/screens/AnimatableList';
17 | import Lottie from './src/screens/LottieList';
18 |
19 | //Animated Views
20 | import InfinitySpinAnimated from './src/Animated/InfinitySpin'
21 |
22 | //Animatable View
23 | import FadeInAnimatable from './src/Animatable/FadeIn'
24 | import FadeInDownAnimatable from './src/Animatable/FadeInDown'
25 | import LightSpeedInAnimatable from './src/Animatable/LightSpeedIn'
26 | import LightSpeedOutAnimatable from './src/Animatable/LightSpeedOut'
27 | import ZoomInAnimatable from './src/Animatable/ZoomIn'
28 | import ZoomOutAnimatable from './src/Animatable/ZoomOut'
29 |
30 | //Lottie Views
31 | import SendEmailLottie from './src/Lottie/SendEmail'
32 | import RocketLottie from './src/Lottie/Rocket'
33 | import WorldLottie from './src/Lottie/World'
34 |
35 | const RootStack = StackNavigator(
36 | {
37 | Home: {
38 | screen: Home,
39 | },
40 | Lottie: {
41 | screen: Lottie,
42 | },
43 | Animated: {
44 | screen: Animated,
45 | },
46 | Animatable: {
47 | screen: Animatable,
48 | },
49 | //Animated Views
50 | InfinitySpinAnimated: {
51 | screen: InfinitySpinAnimated,
52 | },
53 |
54 | //Animatable Views
55 | FadeInAnimatable: {
56 | screen: FadeInAnimatable,
57 | },
58 | FadeInDownAnimatable: {
59 | screen: FadeInDownAnimatable,
60 | },
61 | LightSpeedInAnimatable: {
62 | screen: LightSpeedInAnimatable,
63 | },
64 | LightSpeedOutAnimatable: {
65 | screen: LightSpeedOutAnimatable,
66 | },
67 | ZoomInAnimatable: {
68 | screen: ZoomInAnimatable,
69 | },
70 | ZoomOutAnimatable: {
71 | screen: ZoomOutAnimatable,
72 | },
73 |
74 | //Lottie Views
75 | SendEmailLottie: {
76 | screen: SendEmailLottie,
77 | },
78 | WorldLottie: {
79 | screen: WorldLottie,
80 | },
81 | RocketLottie: {
82 | screen: RocketLottie,
83 | },
84 |
85 | },
86 | {
87 | initialRouteName: 'Home',
88 | }
89 | );
90 |
91 | class App extends Component<*> {
92 | render() {
93 | return
94 | }
95 | }
96 |
97 | export default App;
--------------------------------------------------------------------------------
/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
19 | # Disabling obfuscation is useful if you collect stack traces from production crashes
20 | # (unless you are using a system that supports de-obfuscate the stack traces).
21 | -dontobfuscate
22 |
23 | # React Native
24 |
25 | # Keep our interfaces so they can be used by other ProGuard rules.
26 | # See http://sourceforge.net/p/proguard/bugs/466/
27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
30 |
31 | # Do not strip any method/class that is annotated with @DoNotStrip
32 | -keep @com.facebook.proguard.annotations.DoNotStrip class *
33 | -keep @com.facebook.common.internal.DoNotStrip class *
34 | -keepclassmembers class * {
35 | @com.facebook.proguard.annotations.DoNotStrip *;
36 | @com.facebook.common.internal.DoNotStrip *;
37 | }
38 |
39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
40 | void set*(***);
41 | *** get*();
42 | }
43 |
44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; }
46 | -keepclassmembers,includedescriptorclasses class * { native ; }
47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; }
48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; }
49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; }
50 |
51 | -dontwarn com.facebook.react.**
52 |
53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details.
55 | -dontwarn android.text.StaticLayout
56 |
57 | # okhttp
58 |
59 | -keepattributes Signature
60 | -keepattributes *Annotation*
61 | -keep class okhttp3.** { *; }
62 | -keep interface okhttp3.** { *; }
63 | -dontwarn okhttp3.**
64 |
65 | # okio
66 |
67 | -keep class sun.misc.Unsafe { *; }
68 | -dontwarn java.nio.file.*
69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
70 | -dontwarn okio.**
71 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
21 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations.xcodeproj/xcshareddata/xcschemes/reactNativeAnimations.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
43 |
49 |
50 |
51 |
52 |
53 |
58 |
59 |
61 |
67 |
68 |
69 |
70 |
71 |
77 |
78 |
79 |
80 |
81 |
82 |
92 |
94 |
100 |
101 |
102 |
103 |
104 |
105 |
111 |
113 |
119 |
120 |
121 |
122 |
124 |
125 |
128 |
129 |
130 |
--------------------------------------------------------------------------------
/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10 | DEFAULT_JVM_OPTS=""
11 |
12 | APP_NAME="Gradle"
13 | APP_BASE_NAME=`basename "$0"`
14 |
15 | # Use the maximum available, or set MAX_FD != -1 to use that value.
16 | MAX_FD="maximum"
17 |
18 | warn ( ) {
19 | echo "$*"
20 | }
21 |
22 | die ( ) {
23 | echo
24 | echo "$*"
25 | echo
26 | exit 1
27 | }
28 |
29 | # OS specific support (must be 'true' or 'false').
30 | cygwin=false
31 | msys=false
32 | darwin=false
33 | case "`uname`" in
34 | CYGWIN* )
35 | cygwin=true
36 | ;;
37 | Darwin* )
38 | darwin=true
39 | ;;
40 | MINGW* )
41 | msys=true
42 | ;;
43 | esac
44 |
45 | # For Cygwin, ensure paths are in UNIX format before anything is touched.
46 | if $cygwin ; then
47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
48 | fi
49 |
50 | # Attempt to set APP_HOME
51 | # Resolve links: $0 may be a link
52 | PRG="$0"
53 | # Need this for relative symlinks.
54 | while [ -h "$PRG" ] ; do
55 | ls=`ls -ld "$PRG"`
56 | link=`expr "$ls" : '.*-> \(.*\)$'`
57 | if expr "$link" : '/.*' > /dev/null; then
58 | PRG="$link"
59 | else
60 | PRG=`dirname "$PRG"`"/$link"
61 | fi
62 | done
63 | SAVED="`pwd`"
64 | cd "`dirname \"$PRG\"`/" >&-
65 | APP_HOME="`pwd -P`"
66 | cd "$SAVED" >&-
67 |
68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
69 |
70 | # Determine the Java command to use to start the JVM.
71 | if [ -n "$JAVA_HOME" ] ; then
72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
73 | # IBM's JDK on AIX uses strange locations for the executables
74 | JAVACMD="$JAVA_HOME/jre/sh/java"
75 | else
76 | JAVACMD="$JAVA_HOME/bin/java"
77 | fi
78 | if [ ! -x "$JAVACMD" ] ; then
79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
80 |
81 | Please set the JAVA_HOME variable in your environment to match the
82 | location of your Java installation."
83 | fi
84 | else
85 | JAVACMD="java"
86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
87 |
88 | Please set the JAVA_HOME variable in your environment to match the
89 | location of your Java installation."
90 | fi
91 |
92 | # Increase the maximum file descriptors if we can.
93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
94 | MAX_FD_LIMIT=`ulimit -H -n`
95 | if [ $? -eq 0 ] ; then
96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
97 | MAX_FD="$MAX_FD_LIMIT"
98 | fi
99 | ulimit -n $MAX_FD
100 | if [ $? -ne 0 ] ; then
101 | warn "Could not set maximum file descriptor limit: $MAX_FD"
102 | fi
103 | else
104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
105 | fi
106 | fi
107 |
108 | # For Darwin, add options to specify how the application appears in the dock
109 | if $darwin; then
110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
111 | fi
112 |
113 | # For Cygwin, switch paths to Windows format before running java
114 | if $cygwin ; then
115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
158 | function splitJvmOpts() {
159 | JVM_OPTS=("$@")
160 | }
161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
163 |
164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
165 |
--------------------------------------------------------------------------------
/ios/reactNativeAnimations.xcodeproj/xcshareddata/xcschemes/reactNativeAnimations-tvOS.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
43 |
49 |
50 |
51 |
52 |
53 |
58 |
59 |
61 |
67 |
68 |
69 |
70 |
71 |
77 |
78 |
79 |
80 |
81 |
82 |
92 |
94 |
100 |
101 |
102 |
103 |
104 |
105 |
111 |
113 |
119 |
120 |
121 |
122 |
124 |
125 |
128 |
129 |
130 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation
19 | * entryFile: "index.android.js",
20 | *
21 | * // whether to bundle JS and assets in debug mode
22 | * bundleInDebug: false,
23 | *
24 | * // whether to bundle JS and assets in release mode
25 | * bundleInRelease: true,
26 | *
27 | * // whether to bundle JS and assets in another build variant (if configured).
28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
29 | * // The configuration property can be in the following formats
30 | * // 'bundleIn${productFlavor}${buildType}'
31 | * // 'bundleIn${buildType}'
32 | * // bundleInFreeDebug: true,
33 | * // bundleInPaidRelease: true,
34 | * // bundleInBeta: true,
35 | *
36 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
37 | * // for example: to disable dev mode in the staging build type (if configured)
38 | * devDisabledInStaging: true,
39 | * // The configuration property can be in the following formats
40 | * // 'devDisabledIn${productFlavor}${buildType}'
41 | * // 'devDisabledIn${buildType}'
42 | *
43 | * // the root of your project, i.e. where "package.json" lives
44 | * root: "../../",
45 | *
46 | * // where to put the JS bundle asset in debug mode
47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
48 | *
49 | * // where to put the JS bundle asset in release mode
50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
51 | *
52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
53 | * // require('./image.png')), in debug mode
54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
55 | *
56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
57 | * // require('./image.png')), in release mode
58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
59 | *
60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
64 | * // for example, you might want to remove it from here.
65 | * inputExcludes: ["android/**", "ios/**"],
66 | *
67 | * // override which node gets called and with what additional arguments
68 | * nodeExecutableAndArgs: ["node"],
69 | *
70 | * // supply additional arguments to the packager
71 | * extraPackagerArgs: []
72 | * ]
73 | */
74 |
75 | project.ext.react = [
76 | entryFile: "index.js"
77 | ]
78 |
79 | apply from: "../../node_modules/react-native/react.gradle"
80 |
81 | /**
82 | * Set this to true to create two separate APKs instead of one:
83 | * - An APK that only works on ARM devices
84 | * - An APK that only works on x86 devices
85 | * The advantage is the size of the APK is reduced by about 4MB.
86 | * Upload all the APKs to the Play Store and people will download
87 | * the correct one based on the CPU architecture of their device.
88 | */
89 | def enableSeparateBuildPerCPUArchitecture = false
90 |
91 | /**
92 | * Run Proguard to shrink the Java bytecode in release builds.
93 | */
94 | def enableProguardInReleaseBuilds = false
95 |
96 | android {
97 | compileSdkVersion 23
98 | buildToolsVersion "23.0.1"
99 |
100 | defaultConfig {
101 | applicationId "com.reactnativeanimations"
102 | minSdkVersion 16
103 | targetSdkVersion 22
104 | versionCode 1
105 | versionName "1.0"
106 | ndk {
107 | abiFilters "armeabi-v7a", "x86"
108 | }
109 | }
110 | splits {
111 | abi {
112 | reset()
113 | enable enableSeparateBuildPerCPUArchitecture
114 | universalApk false // If true, also generate a universal APK
115 | include "armeabi-v7a", "x86"
116 | }
117 | }
118 | buildTypes {
119 | release {
120 | minifyEnabled enableProguardInReleaseBuilds
121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
122 | }
123 | }
124 | // applicationVariants are e.g. debug, release
125 | applicationVariants.all { variant ->
126 | variant.outputs.each { output ->
127 | // For each separate APK per architecture, set a unique version code as described here:
128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
129 | def versionCodes = ["armeabi-v7a":1, "x86":2]
130 | def abi = output.getFilter(OutputFile.ABI)
131 | if (abi != null) { // null for the universal-debug, universal-release variants
132 | output.versionCodeOverride =
133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
134 | }
135 | }
136 | }
137 | }
138 |
139 | dependencies {
140 | compile project(':lottie-react-native')
141 | compile fileTree(dir: "libs", include: ["*.jar"])
142 | compile "com.android.support:appcompat-v7:23.0.1"
143 | compile "com.facebook.react:react-native:+" // From node_modules
144 | }
145 |
146 | // Run this once to be able to run the application with BUCK
147 | // puts all compile dependencies into folder libs for BUCK to use
148 | task copyDownloadableDepsToLibs(type: Copy) {
149 | from configurations.compile
150 | into 'libs'
151 | }
152 |
--------------------------------------------------------------------------------
/src/Lottie/assets/mailsent.json:
--------------------------------------------------------------------------------
1 | {"v":"4.5.9","fr":25,"ip":0,"op":100,"w":250,"h":250,"ddd":1,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Shape Layer 12","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[175,199,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[112,112,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.995,0],[0,-7.995],[-7.995,0],[0,7.995]],"o":[[-7.995,0],[0,7.995],[7.995,0],[0,-7.995]],"v":[[0,-14.477],[-14.477,0],[0,14.477],[14.477,0]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":8,"s":[100],"e":[0]},{"t":15}]},"w":{"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":[0],"e":[342]},{"t":17}]},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0.754,-23.488],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"mn":"ADBE Vector Group"}],"ip":-78,"op":32,"st":-78,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 11","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[175,199,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[112,112,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[7.995,0],[0,-7.995],[-7.995,0],[0,7.995]],"o":[[-7.995,0],[0,7.995],[7.995,0],[0,-7.995]],"v":[[0,-14.477],[-14.477,0],[0,14.477],[14.477,0]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":8,"s":[100],"e":[0]},{"t":12}]},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":5,"s":[0],"e":[342]},{"t":14}]},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0.754,-23.488],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":2,"mn":"ADBE Vector Group"}],"ip":-78,"op":22,"st":-78,"bm":0,"sr":1}]},{"id":"comp_1","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Shape Layer 4","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[215,105,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","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-92,-90],[-92,32]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":48,"s":[0],"e":[100]},{"t":65}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":48,"s":[0],"e":[100]},{"t":76}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"},{"ty":"st","c":{"a":0,"k":[0.905,0.802,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"mn":"ADBE Vector Group"}],"ip":29,"op":88,"st":29,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[215,205,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","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-92,-90],[-92,32]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":50,"s":[0],"e":[100]},{"t":67}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":50,"s":[0],"e":[100]},{"t":78}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"},{"ty":"st","c":{"a":0,"k":[0.905,0.802,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"mn":"ADBE Vector Group"}],"ip":31,"op":94,"st":31,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[295,125,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","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-92,-90],[-92,32]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":45,"s":[0],"e":[100]},{"t":62}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":45,"s":[0],"e":[100]},{"t":73}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"},{"ty":"st","c":{"a":0,"k":[0.905,0.802,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"mn":"ADBE Vector Group"}],"ip":26,"op":100,"st":26,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[125,125,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","ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-92,-90],[-92,32]],"c":false}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":35,"s":[0],"e":[100]},{"t":52}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":35,"s":[0],"e":[100]},{"t":63}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"},{"ty":"st","c":{"a":0,"k":[0.905,0.802,0,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":10},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"mn":"ADBE Vector Group"}],"ip":16,"op":100,"st":16,"bm":0,"sr":1}]}],"layers":[{"ddd":0,"ind":0,"ty":0,"nm":"burst","refId":"comp_0","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[125,97,0]},"a":{"a":0,"k":[175,175,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":350,"h":350,"ip":72,"op":197,"st":72,"bm":0,"sr":1},{"ddd":1,"ind":1,"ty":4,"nm":"envelopeopen Outlines","ks":{"o":{"a":0,"k":100},"rx":{"a":0,"k":0},"ry":{"a":0,"k":0},"rz":{"a":0,"k":0},"or":{"a":0,"k":[0,0,0]},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":19,"s":[125,125,0],"e":[125,161,0],"to":[0,6,0],"ti":[0,2,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":35,"s":[125,161,0],"e":[125,113,0],"to":[0,-2,0],"ti":[0,8,0]},{"t":37}]},"a":{"a":0,"k":[125,125,0]},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":9,"s":[72,72,72],"e":[62,62,62]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":12,"s":[62,62,62],"e":[68,68,68]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":14,"s":[68,68,68],"e":[57,57,57]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":16,"s":[57,57,57],"e":[57,57,57]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167","0p833_0p833_0p167_0p167"],"t":69,"s":[57,57,57],"e":[0,0,0]},{"t":78}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":9,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-98.406,171.516],[98.406,36.421],[98.406,171.42]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[21.039,153.976],[-3.74,-53.481],[87.925,153.91]],"c":true}]},{"t":12}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0,0.741,1,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[125.594,57.579],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":9,"s":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[98.406,-35],[47.406,0],[-3.594,35],[-98.406,-34.779]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[21.039,82.556],[-3.8,117.661],[-30.019,82.349],[-3.74,-124.902]],"c":true}]},{"t":12}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0,0.443,0.737,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[125.594,129],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":9,"s":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[47.406,2.212],[-47.406,67.566],[-47.406,-67.566]],"c":true}],"e":[{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[20.981,49.561],[-42.194,49.882],[47.259,-157.69]],"c":true}]},{"t":12}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.173,0.569,0.788,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[74.594,161.788],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,"mn":"ADBE Vector Group"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":9,"s":[{"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":[[-98.406,-67.326],[-49.314,-103.968],[-0.222,-140.61],[49.092,-104.079],[98.406,-67.547],[0,-67.436]],"c":true}],"e":[{"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":[[-93.194,50.122],[-3.741,-157.45],[87.924,49.941],[21.038,50.008],[-3.801,85.113],[-30.019,49.801]],"c":true}]},{"t":12}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.161,0.671,0.886,1]},"o":{"a":0,"k":100},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[125.594,161.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,"mn":"ADBE Vector Group"}],"ip":0,"op":100,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":0,"nm":"Contrails","refId":"comp_1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[125,125,0]},"a":{"a":0,"k":[125,125,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":250,"h":250,"ip":0,"op":100,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":1,"nm":"Yellow Solid 1","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[125,125,0]},"a":{"a":0,"k":[125,125,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"sw":250,"sh":250,"sc":"#ffe200","ip":0,"op":100,"st":0,"bm":0,"sr":1}]}
--------------------------------------------------------------------------------
/src/Lottie/assets/bms-rocket.json:
--------------------------------------------------------------------------------
1 | {"v":"5.1.8","fr":25,"ip":0,"op":180,"w":700,"h":700,"nm":"rocket-test-lottie","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"rocket Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.286],"y":[1]},"o":{"x":[0.795],"y":[0]},"n":["0p286_1_0p795_0"],"t":15,"s":[116.091],"e":[0]},{"t":46}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.35,"y":1},"o":{"x":0.65,"y":0},"n":"0p35_1_0p65_0","t":16,"s":[68.761,395.817,0],"e":[377.821,324.234,0],"to":[208.239166259766,176.183319091797,0],"ti":[0,0,0]},{"i":{"x":0.31,"y":0.31},"o":{"x":0.65,"y":0.65},"n":"0p31_0p31_0p65_0p65","t":50,"s":[377.821,324.234,0],"e":[377.821,324.234,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.31,"y":1},"o":{"x":0.69,"y":0},"n":"0p31_1_0p69_0","t":167,"s":[377.821,324.234,0],"e":[901.821,-301.766,0],"to":[0,0,0],"ti":[0,0,0]},{"t":177}],"ix":2},"a":{"a":0,"k":[205.927,163.586,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.286,0.286,0.52],"y":[1,1,1]},"o":{"x":[0.795,0.795,0.48],"y":[0,0,0]},"n":["0p286_1_0p795_0","0p286_1_0p795_0","0p52_1_0p48_0"],"t":16,"s":[0,0,100],"e":[126,126,100]},{"t":50}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.456,-0.518],[0.518,0.456],[-0.456,0.518],[-0.517,-0.456]],"o":[[-0.457,0.518],[-0.517,-0.456],[0.456,-0.517],[0.518,0.456]],"v":[[0.938,0.825],[-0.827,0.938],[-0.937,-0.827],[0.825,-0.937]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":20,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[378.178,83.131],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.456,-0.518],[0.518,0.456],[-0.457,0.518],[-0.517,-0.457]],"o":[[-0.457,0.518],[-0.517,-0.457],[0.456,-0.517],[0.518,0.456]],"v":[[0.938,0.826],[-0.826,0.938],[-0.937,-0.826],[0.826,-0.937]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":20,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[353.616,61.49],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","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.456,-0.518],[0.517,0.456],[-0.456,0.518],[-0.518,-0.457]],"o":[[-0.456,0.518],[-0.518,-0.457],[0.456,-0.517],[0.517,0.456]],"v":[[0.938,0.826],[-0.825,0.938],[-0.937,-0.826],[0.827,-0.937]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":20,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[327.29,38.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-31.454,-27.713],[31.454,27.713]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0,0,1],"ix":3},"o":{"a":0,"k":20,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[352.536,54.582],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[352.536,55.625],"ix":2},"a":{"a":0,"k":[352.536,55.625],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"lines","np":4,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.105,-3.524],[3.524,3.104],[-3.104,3.524],[-3.524,-3.105]],"o":[[-3.104,3.524],[-3.524,-3.105],[3.105,-3.524],[3.524,3.105]],"v":[[6.38,5.622],[-5.622,6.381],[-6.381,-5.621],[5.621,-6.38]],"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":[269.735,129.714],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.385,-11.788],[11.788,10.386],[-10.385,11.787],[-11.787,-10.386]],"o":[[-10.386,11.787],[-11.788,-10.385],[10.386,-11.788],[11.788,10.385]],"v":[[21.344,18.805],[-18.804,21.343],[-21.343,-18.804],[18.805,-21.343]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.322000002394,0.713999968884,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":[269.666,142.694],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.335,-15.136],[15.135,13.335],[-13.335,15.135],[-15.136,-13.336]],"o":[[-13.335,15.136],[-15.136,-13.336],[13.336,-15.136],[15.136,13.336]],"v":[[27.406,24.146],[-24.146,27.407],[-27.406,-24.145],[24.146,-27.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.537,0.831,1,0.5,0.429,0.773,1,1,0.322,0.714,1],"ix":9}},"s":{"a":0,"k":[0.781,9.396],"ix":5},"e":{"a":0,"k":[-5.164,-20.479],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[269.666,142.694],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.28,-18.478],[18.478,16.281],[-16.279,18.478],[-18.478,-16.28]],"o":[[-16.28,18.478],[-18.478,-16.28],[16.281,-18.478],[18.478,16.28]],"v":[[33.457,29.477],[-29.478,33.456],[-33.458,-29.479],[29.478,-33.458]],"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":[269.667,142.694],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[16.28,-18.478],[18.478,16.28],[-16.28,18.478],[-18.479,-16.28]],"o":[[-16.28,18.478],[-18.477,-16.28],[16.281,-18.478],[18.478,16.28]],"v":[[33.458,29.478],[-29.479,33.457],[-33.458,-29.478],[29.479,-33.457]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":20,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[270,147.972],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":5,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[269.833,145.333],"ix":2},"a":{"a":0,"k":[269.833,145.333],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"window","np":5,"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.833,"y":0.833},"o":{"x":0.167,"y":0},"n":"0p833_0p833_0p167_0","t":9.052,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16.241,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":23.431,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":30.62,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":37.81,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p833_1_0p167_0p167","t":45,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":51.726,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":58.915,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":66.104,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":73.294,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":80.483,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":87.674,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":94.862,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":102.052,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":109.242,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":116.432,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":123.621,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":130.811,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.167,"y":0},"n":"0p46_1_0p167_0","t":138,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":144.726,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":151.916,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":159.105,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":166.295,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":173.484,"s":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-69.277,78.315],[-69.277,78.315],[-69.948,67.718],[39.932,-56.395],[50.528,-57.064],[51.198,-46.469],[-58.682,77.646]],"c":true}],"e":[{"i":[[3.098,2.729],[0,0],[-2.73,3.099],[0,0],[-3.098,-2.73],[2.73,-3.098],[0,0]],"o":[[0,0],[-3.099,-2.729],[0,0],[2.729,-3.098],[3.099,2.73],[0,0],[-2.729,3.098]],"v":[[-50.277,57.065],[-50.277,57.065],[-50.948,46.469],[39.682,-56.395],[50.278,-57.064],[50.948,-46.469],[-39.682,56.396]],"c":true}]},{"t":180}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.255000005984,0.310000011968,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":[192.307,237.385],"ix":2},"a":{"a":0,"k":[45.076,-52.268],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"c-tail","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":[[31.613,47.663],[-51.266,-25.358],[-31.612,-47.664],[51.266,25.357]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.565,0.584,0.651,0.5,0.657,0.676,0.755,1,0.749,0.769,0.859],"ix":9}},"s":{"a":0,"k":[27.555,-6.797],"ix":5},"e":{"a":0,"k":[-19.387,-11.871],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[164.589,267.936],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"bottom","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.456,-0.518],[0.518,0.457],[-0.457,0.518],[-0.517,-0.456]],"o":[[-0.457,0.518],[-0.517,-0.456],[0.456,-0.518],[0.518,0.457]],"v":[[0.938,0.826],[-0.826,0.937],[-0.937,-0.826],[0.826,-0.938]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.564999988032,0.583999992819,0.651000019148,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":[203.984,231.321],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.456,-0.518],[0.517,0.456],[-0.456,0.518],[-0.518,-0.457]],"o":[[-0.456,0.518],[-0.518,-0.457],[0.456,-0.517],[0.517,0.456]],"v":[[0.938,0.826],[-0.825,0.938],[-0.937,-0.826],[0.827,-0.937]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.564999988032,0.583999992819,0.651000019148,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":[234.39,198.674],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 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.456,-0.518],[0.518,0.456],[-0.457,0.518],[-0.517,-0.456]],"o":[[-0.457,0.518],[-0.517,-0.456],[0.456,-0.518],[0.518,0.457]],"v":[[0.938,0.826],[-0.826,0.938],[-0.937,-0.826],[0.826,-0.938]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.564999988032,0.583999992819,0.651000019148,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":[318.932,102.131],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[0.456,-0.518],[0.518,0.456],[-0.457,0.518],[-0.517,-0.456]],"o":[[-0.457,0.518],[-0.517,-0.456],[0.456,-0.518],[0.518,0.456]],"v":[[0.938,0.826],[-0.826,0.938],[-0.937,-0.826],[0.826,-0.938]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.564999988032,0.583999992819,0.651000019148,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":[345.668,70.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 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],[0,0]],"o":[[0,0],[0,0]],"v":[[-86.037,97.651],[86.037,-97.651]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.564999988032,0.583999992819,0.651000019148,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[261.453,160.013],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"line","np":2,"cix":2,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[261.453,160.013],"ix":2},"a":{"a":0,"k":[261.453,160.013],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"lines 2","np":5,"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],[30.374,-34.474],[-55.005,-48.462],[-58.745,66.676],[-16.91,42.875]],"o":[[-40.404,22.176],[-58.745,66.675],[55.004,48.463],[30.375,-34.474],[0,0]],"v":[[68.089,-143.214],[-48.926,-52.698],[-81.134,94.751],[61.084,44.227],[136.139,-83.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.882,0.894,0.984,0.5,0.816,0.831,0.922,1,0.749,0.769,0.859],"ix":9}},"s":{"a":0,"k":[-0.289,-2.379],"ix":5},"e":{"a":0,"k":[59.207,46.965],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.882,0.894,0.984,0.5,0.816,0.831,0.922,1,0.749,0.769,0.859],"ix":9}},"s":{"a":0,"k":[-0.289,-2.379],"ix":5},"e":{"a":0,"k":[59.207,46.965],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[244.351,174.693],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"body","np":3,"cix":2,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.888,8.712],[37.738,-20.713],[0,0]],"o":[[-9.888,-8.712],[0,0],[15.795,-40.047]],"v":[[35.195,-36.882],[-45.083,-14.364],[22.968,45.594]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.565,0.584,0.651,0.5,0.657,0.676,0.755,1,0.749,0.769,0.859],"ix":9}},"s":{"a":0,"k":[27.59,11.297],"ix":5},"e":{"a":0,"k":[2.609,-9.965],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[357.523,45.844],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"top","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":[[-7.521,10.09],[22.071,5.41],[0,0],[13.58,-8.955],[0,0],[-3.792,0.738],[0,0],[-7.767,-1.752],[0,0]],"o":[[13.582,-18.219],[0,0],[-15.746,-4.084],[0,0],[-3.06,2.358],[0,0],[7.816,-1.522],[0,0],[12.265,2.818]],"v":[[77.325,23.462],[59.433,-26.339],[27.523,-34.162],[-18.542,-26.512],[-87.847,26.883],[-84.912,33.38],[-31.506,22.982],[-7.877,23.333],[44.768,35.428]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.255000005984,0.310000011968,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":[145.962,216.21],"ix":2},"a":{"a":0,"k":[54.805,5.422],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.568],"y":[1]},"o":{"x":[0.216],"y":[0]},"n":["0p568_1_0p216_0"],"t":9.052,"s":[0],"e":[-10]},{"i":{"x":[0.641],"y":[0.943]},"o":{"x":[0.301],"y":[0]},"n":["0p641_0p943_0p301_0"],"t":16.241,"s":[-10],"e":[0]},{"i":{"x":[0.661],"y":[1.015]},"o":{"x":[0.323],"y":[-0.051]},"n":["0p661_1p015_0p323_-0p051"],"t":23.431,"s":[0],"e":[-10]},{"i":{"x":[0.675],"y":[0.897]},"o":{"x":[0.337],"y":[0.015]},"n":["0p675_0p897_0p337_0p015"],"t":30.62,"s":[-10],"e":[0]},{"i":{"x":[0.695],"y":[0.989]},"o":{"x":[0.355],"y":[-0.113]},"n":["0p695_0p989_0p355_-0p113"],"t":37.81,"s":[0],"e":[-10]},{"i":{"x":[0.79],"y":[1]},"o":{"x":[0.434],"y":[-0.014]},"n":["0p79_1_0p434_-0p014"],"t":45,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":51.726,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":58.915,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":66.104,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":73.294,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":80.483,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":87.674,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":94.862,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":102.052,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":109.242,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":116.432,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":123.621,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":130.811,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p46_1_0p167_0"],"t":138,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":144.726,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":151.916,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":159.105,"s":[-10],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":166.295,"s":[0],"e":[-10]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":173.484,"s":[-10],"e":[0]},{"t":180}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"l-tail","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":[[-7.627,8.657],[-8.446,-22.226],[0,0],[7.173,-14.599],[0,0],[-0.254,3.855],[0,0],[2.717,7.484],[0,0]],"o":[[15.718,-17.84],[0,0],[6.036,15.106],[0,0],[-1.953,3.333],[0,0],[0.525,-7.945],[0,0],[-3.929,-10.848]],"v":[[-32.666,-79.706],[20.549,-70.047],[36.556,-27.927],[34.77,18.734],[-9.471,94.212],[-16.285,92.118],[-12.697,37.828],[-16.021,14.432],[-38.663,-48.073]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.717999985639,0.136999990426,0.234999997008,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":[214.845,273.161],"ix":2},"a":{"a":0,"k":[-9.504,-56.703],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.568],"y":[1]},"o":{"x":[0.216],"y":[0]},"n":["0p568_1_0p216_0"],"t":9.052,"s":[0],"e":[7]},{"i":{"x":[0.641],"y":[0.943]},"o":{"x":[0.301],"y":[0]},"n":["0p641_0p943_0p301_0"],"t":16.241,"s":[7],"e":[0]},{"i":{"x":[0.661],"y":[1.015]},"o":{"x":[0.323],"y":[-0.051]},"n":["0p661_1p015_0p323_-0p051"],"t":23.431,"s":[0],"e":[7]},{"i":{"x":[0.675],"y":[0.897]},"o":{"x":[0.337],"y":[0.015]},"n":["0p675_0p897_0p337_0p015"],"t":30.62,"s":[7],"e":[0]},{"i":{"x":[0.695],"y":[0.989]},"o":{"x":[0.355],"y":[-0.113]},"n":["0p695_0p989_0p355_-0p113"],"t":37.81,"s":[0],"e":[7]},{"i":{"x":[0.79],"y":[1]},"o":{"x":[0.434],"y":[-0.014]},"n":["0p79_1_0p434_-0p014"],"t":45,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":51.726,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":58.915,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":66.104,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":73.294,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":80.483,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":87.674,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":94.862,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":102.052,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":109.242,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":116.432,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":123.621,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":130.811,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p46_1_0p167_0"],"t":138,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":144.726,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":151.916,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":159.105,"s":[7],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":166.295,"s":[0],"e":[7]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":173.484,"s":[7],"e":[0]},{"t":180}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"r-tail","np":2,"cix":2,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[15.213,13.31],[0,0],[-13.853,15.341],[0,0],[0,0],[0,0]],"o":[[0,0],[-15.557,-13.61],[0,0],[0,0],[0,0],[-13.547,15.002]],"v":[[-29.544,32.53],[-29.544,32.53],[-32.642,-20.134],[-9.225,-45.841],[46.495,2.908],[22.295,29.48]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"g":{"p":3,"k":{"a":0,"k":[0,0.537,0.831,1,0.5,0.429,0.773,1,1,0.322,0.714,1],"ix":9}},"s":{"a":0,"k":[-33.629,39.133],"ix":5},"e":{"a":0,"k":[23.473,-22.18],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[110.571,32.952],"ix":2},"a":{"a":0,"k":[19.733,-20.635],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.568,0.568],"y":[1,1]},"o":{"x":[0.216,0.216],"y":[0,0]},"n":["0p568_1_0p216_0","0p568_1_0p216_0"],"t":9.052,"s":[100,100],"e":[80,80]},{"i":{"x":[0.641,0.641],"y":[0.943,0.943]},"o":{"x":[0.301,0.301],"y":[0,0]},"n":["0p641_0p943_0p301_0","0p641_0p943_0p301_0"],"t":16.241,"s":[80,80],"e":[100,100]},{"i":{"x":[0.661,0.661],"y":[1.015,1.015]},"o":{"x":[0.323,0.323],"y":[-0.051,-0.051]},"n":["0p661_1p015_0p323_-0p051","0p661_1p015_0p323_-0p051"],"t":23.431,"s":[100,100],"e":[80,80]},{"i":{"x":[0.675,0.675],"y":[0.897,0.897]},"o":{"x":[0.337,0.337],"y":[0.015,0.015]},"n":["0p675_0p897_0p337_0p015","0p675_0p897_0p337_0p015"],"t":30.62,"s":[80,80],"e":[100,100]},{"i":{"x":[0.695,0.695],"y":[0.989,0.989]},"o":{"x":[0.355,0.355],"y":[-0.113,-0.113]},"n":["0p695_0p989_0p355_-0p113","0p695_0p989_0p355_-0p113"],"t":37.81,"s":[100,100],"e":[80,80]},{"i":{"x":[0.79,0.79],"y":[1,1]},"o":{"x":[0.434,0.434],"y":[-0.014,-0.014]},"n":["0p79_1_0p434_-0p014","0p79_1_0p434_-0p014"],"t":45,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":51.726,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":58.915,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":66.104,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":73.294,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":80.483,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":87.674,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":94.862,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":102.052,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":109.242,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":116.432,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":123.621,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":130.811,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0,0]},"n":["0p46_1_0p167_0","0p46_1_0p167_0"],"t":138,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":144.726,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":151.916,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":159.105,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":166.295,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":173.484,"s":[80,80],"e":[100,100]},{"t":180}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"inside","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":[[13.758,12.575],[-29.756,33.773],[0,0],[0,0],[0,0]],"o":[[-12.83,-11.726],[0,0],[0,0],[0,0],[-33.227,37.713]],"v":[[-59.723,62.399],[-39.078,-30.243],[0.242,-74.975],[72.553,-11.71],[32.793,33.524]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.536999990426,0.830999995213,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":[109.979,33.144],"ix":2},"a":{"a":0,"k":[37.176,-42.08],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.568,0.568],"y":[1,1]},"o":{"x":[0.216,0.216],"y":[0,0]},"n":["0p568_1_0p216_0","0p568_1_0p216_0"],"t":7.326,"s":[100,100],"e":[80,80]},{"i":{"x":[0.641,0.641],"y":[0.943,0.943]},"o":{"x":[0.301,0.301],"y":[0,0]},"n":["0p641_0p943_0p301_0","0p641_0p943_0p301_0"],"t":14.516,"s":[80,80],"e":[100,100]},{"i":{"x":[0.661,0.661],"y":[1.015,1.015]},"o":{"x":[0.323,0.323],"y":[-0.051,-0.051]},"n":["0p661_1p015_0p323_-0p051","0p661_1p015_0p323_-0p051"],"t":21.705,"s":[100,100],"e":[80,80]},{"i":{"x":[0.675,0.675],"y":[0.897,0.897]},"o":{"x":[0.337,0.337],"y":[0.015,0.015]},"n":["0p675_0p897_0p337_0p015","0p675_0p897_0p337_0p015"],"t":28.895,"s":[80,80],"e":[100,100]},{"i":{"x":[0.695,0.695],"y":[0.989,0.989]},"o":{"x":[0.355,0.355],"y":[-0.113,-0.113]},"n":["0p695_0p989_0p355_-0p113","0p695_0p989_0p355_-0p113"],"t":36.084,"s":[100,100],"e":[80,80]},{"i":{"x":[0.79,0.79],"y":[1,1]},"o":{"x":[0.434,0.434],"y":[-0.014,-0.014]},"n":["0p79_1_0p434_-0p014","0p79_1_0p434_-0p014"],"t":43.274,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":50,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":57.189,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":64.379,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":71.568,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":78.758,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":85.948,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":93.138,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":100.326,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":107.517,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":114.706,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":121.896,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":129.085,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0,0]},"n":["0p46_1_0p167_0","0p46_1_0p167_0"],"t":136.274,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":143,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":150.19,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":157.38,"s":[80,80],"e":[100,100]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":164.569,"s":[100,100],"e":[80,80]},{"i":{"x":[0.46,0.46],"y":[1,1]},"o":{"x":[0.54,0.54],"y":[0,0]},"n":["0p46_1_0p54_0","0p46_1_0p54_0"],"t":171.759,"s":[80,80],"e":[100,100]},{"t":178}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"outside","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":0,"k":[128.726,311.18],"ix":2},"a":{"a":0,"k":[75.726,72.18],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"fire","np":2,"cix":2,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"tr","p":{"a":1,"k":[{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":71.104,"s":[217.982,148.891],"e":[255.247,177.258],"to":[3.10506939888,2.36362838745117],"ti":[-3.10586810112,-2.36423635482788]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":96,"s":[255.247,177.258],"e":[255.247,177.258],"to":[3.85937809944153,2.93781995773315],"ti":[-3.10586810112,-2.36423635482788]},{"i":{"x":0.46,"y":1},"o":{"x":0.54,"y":0},"n":"0p46_1_0p54_0","t":129,"s":[255.247,177.258],"e":[217.982,148.891],"to":[3.85937809944153,2.93781995773315],"ti":[-2.35155940055847,-1.79004454612732]},{"t":153.8955078125}],"ix":2},"a":{"a":0,"k":[251.716,169.196],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":1,"k":[{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":71.104,"s":[0],"e":[15.018]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":83.552,"s":[15.018],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":96,"s":[0],"e":[0]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":129,"s":[0],"e":[-15.933]},{"i":{"x":[0.46],"y":[1]},"o":{"x":[0.54],"y":[0]},"n":["0p46_1_0p54_0"],"t":141.448,"s":[-15.933],"e":[0]},{"t":153.8955078125}],"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rocket","np":10,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":5,"op":261,"st":5,"bm":0}],"markers":[{"tm":50,"cm":"#loopstart","dr":0},{"tm":180,"cm":"#loopend","dr":0}]}
--------------------------------------------------------------------------------
/src/Lottie/assets/world_locations.json:
--------------------------------------------------------------------------------
1 | {"v":"5.0.1","fr":60,"ip":0,"op":301,"w":800,"h":600,"nm":"World","ddd":0,"assets":[{"id":"comp_5","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"here 4","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":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":45,"s":[100],"e":[0]},{"t":75}],"ix":11,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"r":{"a":0,"k":-22.856,"ix":10},"p":{"a":0,"k":[75,75,0],"ix":2},"a":{"a":0,"k":[-252.5,-48.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.14,0.14],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p14_1_0p167_0p167","0p14_1_0p167_0p167"],"t":15,"s":[2,2],"e":[40,40]},{"t":75}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.972549019608,0.576470588235,0.188235294118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.14],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"n":["0p14_1_0p167_0p167"],"t":15,"s":[10],"e":[0]},{"t":75}],"ix":5,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-252.5,-48.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":15,"op":715,"st":15,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"here","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":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":30,"s":[100],"e":[0]},{"t":60}],"ix":11,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"r":{"a":0,"k":-22.856,"ix":10},"p":{"a":0,"k":[75,75,0],"ix":2},"a":{"a":0,"k":[-252.5,-48.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":1,"k":[{"i":{"x":[0.14,0.14],"y":[1,1]},"o":{"x":[0.167,0.167],"y":[0.167,0.167]},"n":["0p14_1_0p167_0p167","0p14_1_0p167_0p167"],"t":0,"s":[2,2],"e":[60,60]},{"t":60}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.972549019608,0.576470588235,0.188235294118,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.14],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"n":["0p14_1_0p167_0p167"],"t":0,"s":[10],"e":[0]},{"t":60}],"ix":5,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-252.5,-48.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":730,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":2,"ty":3,"nm":"NULL CONTROL","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":-9,"ix":10},"p":{"a":0,"k":[396,281,0],"ix":2},"a":{"a":0,"k":[60,60,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":72,"op":301,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"rings 4","parent":2,"sr":1,"ks":{"o":{"a":0,"k":35,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[58.436,59.877,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":[334,66.48],"ix":2},"p":{"a":0,"k":[0,55],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.686274509804,0.933333333333,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0.5,-9.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":210,"s":[21.5],"e":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":225.6,"s":[26],"e":[79]},{"t":262}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":210,"s":[21.5],"e":[79]},{"t":236}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":210,"op":301,"st":210,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"rings 3","parent":2,"sr":1,"ks":{"o":{"a":0,"k":35,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[60,70,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":[417,83],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.686274509804,0.933333333333,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0.5,-9.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":202,"s":[15],"e":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":217.6,"s":[26],"e":[84]},{"t":254}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":202,"s":[15],"e":[84]},{"t":228}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":202,"op":301,"st":202,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"rings 2","parent":2,"sr":1,"ks":{"o":{"a":0,"k":35,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[58.436,59.877,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":[334,66.48],"ix":2},"p":{"a":0,"k":[0,55],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.686274509804,0.933333333333,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0.5,-9.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":60,"s":[21.5],"e":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":75.6,"s":[26],"e":[79]},{"t":112}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":60,"s":[21.5],"e":[79]},{"t":86}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":60,"op":301,"st":60,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"rings","parent":2,"sr":1,"ks":{"o":{"a":0,"k":35,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[60,70,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":[417,83],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.686274509804,0.933333333333,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0.5,-9.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":52,"s":[15],"e":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":67.6,"s":[26],"e":[84]},{"t":104}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":52,"s":[15],"e":[84]},{"t":78}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":52,"op":301,"st":52,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"maspMask 5","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[-18.5,-5.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-81.462,0],[0,-81.462],[81.462,0],[0,81.462]],"o":[[81.462,0],[0,81.462],[-81.462,0],[0,-81.462]],"v":[[-18.5,-153],[129,-5.5],[-18.5,142],[-166,-5.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[0.662744978362,0.67843095368,0.650979973288,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"Here rings","parent":16,"tt":1,"refId":"comp_5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[70.408,63.975,0],"ix":2},"a":{"a":0,"k":[75,75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":150,"h":150,"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"maspMask 4","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[-18.5,-5.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-81.462,0],[0,-81.462],[81.462,0],[0,81.462]],"o":[[81.462,0],[0,81.462],[-81.462,0],[0,-81.462]],"v":[[-18.5,-153],[129,-5.5],[-18.5,142],[-166,-5.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[0.662744978362,0.67843095368,0.650979973288,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"Here rings","parent":16,"tt":1,"refId":"comp_5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-80.007,318.38,0],"ix":2},"a":{"a":0,"k":[75,75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":150,"h":150,"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"maspMask 3","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[-18.5,-5.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-81.462,0],[0,-81.462],[81.462,0],[0,81.462]],"o":[[81.462,0],[0,81.462],[-81.462,0],[0,-81.462]],"v":[[-18.5,-153],[129,-5.5],[-18.5,142],[-166,-5.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[0.662744978362,0.67843095368,0.650979973288,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"Here rings","parent":16,"tt":1,"refId":"comp_5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-170.998,95.543,0],"ix":2},"a":{"a":0,"k":[75,75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":150,"h":150,"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"maspMask 2","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[-18.5,-5.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-81.462,0],[0,-81.462],[81.462,0],[0,81.462]],"o":[[81.462,0],[0,81.462],[-81.462,0],[0,-81.462]],"v":[[-18.5,-153],[129,-5.5],[-18.5,142],[-166,-5.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[0.662744978362,0.67843095368,0.650979973288,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":0,"nm":"Here rings","parent":16,"tt":1,"refId":"comp_5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-191.425,-28.874,0],"ix":2},"a":{"a":0,"k":[75,75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":150,"h":150,"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"maspMask","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[-18.5,-5.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-81.462,0],[0,-81.462],[81.462,0],[0,81.462]],"o":[[81.462,0],[0,81.462],[-81.462,0],[0,-81.462]],"v":[[-18.5,-153],[129,-5.5],[-18.5,142],[-166,-5.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[0.662744978362,0.67843095368,0.650979973288,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"map","tt":1,"sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.95],"y":[0]},"n":["0p833_0p833_0p95_0"],"t":16,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p833_1_0p167_0"],"t":86,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.95],"y":[0]},"n":["0p833_0p833_0p95_0"],"t":180,"s":[100],"e":[0]},{"t":239}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.14],"y":[1]},"o":{"x":[0.58],"y":[0]},"n":["0p14_1_0p58_0"],"t":16,"s":[-22.856],"e":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p833_1_0p167_0"],"t":146,"s":[0],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.72],"y":[0]},"n":["0p833_0p833_0p72_0"],"t":180,"s":[0],"e":[51]},{"t":246}],"ix":10},"p":{"a":0,"k":[240.55,-287.518,0],"ix":2},"a":{"a":0,"k":[-409.527,-960.177,0],"ix":1},"s":{"a":0,"k":[53.851,53.851,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.207,0.165],[0.867,1.221],[-0.146,-1.605],[-0.425,-1.251],[1.443,0.861]],"o":[[0.99,-1.532],[0.914,1.268],[0.125,1.365],[-0.831,-1.273],[0.19,-0.107]],"v":[[53.422,-169.413],[53.886,-174.034],[55.387,-169.683],[56.25,-165.777],[52.829,-169.024]],"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.221,0.036],[0.202,-0.081]],"o":[[-0.202,0.081],[0.179,-0.142]],"v":[[79.925,-218.282],[79.321,-218.037]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[-0.097,0.141],[0.026,-0.316],[0.23,-0.223],[-0.222,0.297]],"o":[[-0.005,0.307],[-0.328,0.057],[0.146,-0.325],[0.107,-0.144]],"v":[[70.501,91.15],[70.466,92.085],[69.632,92.509],[70.199,91.575]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[-0.302,-0.569],[-2.966,1.735],[-0.508,0.195],[-0.288,0.188],[-0.146,-0.057],[0.432,-0.165],[-0.447,-1.656],[2.425,0.115],[0.108,0.207],[0.313,1.452]],"o":[[1.559,2.949],[0.534,-0.286],[0.261,-0.182],[0.144,0.056],[-0.41,0.1],[-2.584,1.813],[-1.28,-1.834],[-0.111,-0.206],[0.406,-1.54],[0.28,0.576]],"v":[[58.462,-160.873],[65.125,-158.758],[66.684,-159.461],[67.511,-160.019],[67.945,-159.848],[66.684,-159.461],[63.503,-154.417],[57.797,-157.441],[57.467,-158.059],[57.588,-162.59]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[2.019,-0.203],[1.848,1.224],[0.979,0.677],[0.668,0.287],[0.085,0.232],[0.382,0.604],[3.152,1.27],[0.544,4.318],[2.55,2.615],[0,0],[-1.086,3.211],[3.016,0.917],[1.605,3.901],[0,0.003],[-1.369,0.237],[-0.134,-0.385],[-2.91,-12.044],[-0.776,-0.561],[-4.493,-5.058],[-1.334,-0.655],[-1.389,-3.659],[-0.091,-0.245]],"o":[[-1.847,-1.226],[-0.005,-1.235],[-0.657,-0.321],[-0.084,-0.232],[0.504,-0.437],[-1.885,-2.146],[-2.966,-2.857],[-0.431,-3.362],[0,0],[-2.126,-1.468],[1.301,-3.024],[-3.297,-2.917],[0,0],[0.67,-1.565],[0.184,0.361],[6.125,10.035],[0.229,0.933],[5.65,4.112],[0.963,1.083],[-2.97,3.861],[0.093,0.263],[-2.088,0.607]],"v":[[-9.095,165.196],[-14.642,161.523],[-16.196,158.702],[-18.175,157.758],[-18.433,157.066],[-18.231,155.506],[-22.932,148.401],[-28.253,137.917],[-32.158,128.44],[-32.158,128.44],[-35.338,122.303],[-38.049,116.461],[-44.127,105.489],[-44.127,105.486],[-41.037,102.837],[-40.546,103.952],[-22.555,134.295],[-21.068,136.785],[-8.533,152.74],[-5.465,155.753],[-3.832,166.843],[-3.559,167.585]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[-1.611,0.833],[-2.113,1.572],[-0.011,0.004],[1.444,9.227],[-1.949,0.979],[-1.452,5.235],[-1.205,-0.651],[-4.261,3.828],[-1.263,0.803],[-0.064,-0.102],[-2.206,-0.692],[0.03,-0.378],[-5.151,-1.208],[-0.767,-0.452],[-0.467,0.059],[0.03,-0.127],[-1.628,0.466],[0.059,-0.628],[6.221,-0.498],[0.058,-3.047],[-2.229,-0.301],[-0.498,0.26],[-1.904,3.28],[-0.126,-0.064],[-1.598,0.955],[-0.054,0.758],[0,0],[-0.512,3.445],[0,0],[-0.487,1.3],[0.803,0.474],[1.709,0.909],[1.051,5.31],[-0.615,4.649],[-0.034,0.039],[-3.736,-3.599],[-2.427,1.091],[-0.07,-0.076],[-1.559,-0.503],[-0.899,-1.636],[-1.047,0.186],[-0.034,-0.256],[-1.297,-0.448],[-0.139,-0.02],[-0.027,-0.276],[0,0],[-0.999,-2.421],[0,0],[1.108,-0.057],[-0.083,-1.499],[-0.989,0.016],[-2.42,0.89],[-4.521,6.094],[-0.582,0.696],[-0.485,0.149],[-0.209,0.003],[1.303,1.458],[1.388,-0.047],[0.247,0.085],[0.344,1.099],[-0.115,0.437],[0,0.003],[-0.003,-0.003],[-4.402,-0.406],[-3.696,-5.259],[-0.385,-0.139],[-2.098,0.334],[-0.023,-0.097],[-8.01,-2.744],[-1.77,1.139],[-0.63,0.44],[-2.018,-2.544],[-0.091,-1.878],[-0.222,-0.482],[0.301,-0.402],[0.104,-0.517],[-0.023,-0.642],[0.47,-0.164],[-0.034,-0.892],[-0.07,-0.18],[0.831,-2.62],[-0.003,-0.054],[0.615,-0.059],[3.769,-1.769],[5.721,0.761],[2.154,-0.758],[0.06,-0.102],[3.676,1.63],[2.718,-0.603],[2.103,-3.244],[1.166,0.107],[-0.016,0.057],[1.988,1.048],[1.886,1.985],[4.131,0.57],[1.834,1.419],[1.213,-0.773],[0.02,-0.177],[0.928,0.318],[0.218,0.508],[-0.088,0.127],[-1.262,0.764],[0.092,1.911],[0.298,2.018],[2.657,0.046],[1.323,-1.104],[5.808,0.145],[4.091,-2.217],[7.579,1.333],[0,0]],"o":[[2.34,-0.055],[0.008,-0.006],[6.339,-3.243],[-0.341,-2.19],[4.754,-2.396],[0.447,-1.605],[6.806,3.662],[1.155,-1.247],[0.038,0.107],[1.46,1.238],[0.768,0.07],[1.181,5.686],[0.766,0.451],[0.466,-0.065],[-0.034,0.112],[0.248,1.67],[-0.321,0.486],[1.331,3.842],[-2.368,0.19],[0.314,2.527],[0.493,-0.291],[2.456,0.85],[0.123,0.054],[1.885,-0.534],[0.057,-0.76],[0,0],[2.081,-3.217],[0,0],[1.063,-0.279],[0.408,-1.091],[-1.668,-0.984],[-2.968,-3.323],[-2.772,-2.806],[0.032,-0.039],[3.051,4.341],[2.424,0.062],[0.066,0.078],[1.276,1.041],[-0.368,1.915],[0.798,0.638],[0.046,0.251],[0.357,1.338],[0.139,0.031],[0.026,0.271],[0,0],[-0.497,3.113],[0,0],[-1.104,0.053],[0.084,1.498],[0.988,-0.014],[0.416,1.976],[4.432,5.832],[0.542,-0.729],[0.485,-0.148],[0.203,0.027],[1.449,-1.446],[-1.389,0.047],[-0.23,-0.122],[-0.345,-1.097],[0.115,-0.44],[0,-0.003],[0,0.003],[3.945,-0.73],[-2.902,4.527],[0.383,0.134],[-0.168,1.234],[0.026,0.097],[6.16,9.39],[1.782,0.611],[0.65,-0.42],[2.869,-2.015],[-2.336,1.185],[0.378,0.528],[-0.305,0.402],[-0.349,0.39],[0.02,0.645],[-0.364,0.196],[-0.571,0.665],[0.081,0.175],[-2.24,1.809],[0.003,0.053],[-0.613,0.055],[-4.027,0.405],[-6.048,2.836],[-2.042,-0.274],[-0.073,0.102],[-3.675,-1.638],[-2.72,-2.133],[-3.403,2.794],[-0.918,0.868],[0.02,-0.053],[-0.621,-2.811],[-2.199,-1.156],[-2.232,-4.026],[-2.065,-0.284],[-1.066,-0.812],[-0.037,0.195],[-0.929,-0.321],[-0.219,-0.509],[0.085,-0.126],[-0.144,-1.586],[1.259,-1.353],[-0.249,-2.031],[-1.116,-2.459],[-1.873,0.022],[-5.796,-0.195],[-4.63,-0.114],[-6.651,3.599],[0,0],[-3.783,-2.584]],"v":[[-201.566,62.709],[-194.681,61.622],[-194.655,61.608],[-183.507,45.949],[-180.181,40.758],[-170.687,29.554],[-167.799,27.419],[-152.89,22.353],[-148.702,21.522],[-148.572,21.84],[-145.009,26.319],[-144.486,27.273],[-134.181,36.711],[-131.879,38.065],[-130.483,37.875],[-130.585,38.214],[-128.112,40.538],[-128.689,42.202],[-132.312,50.08],[-136.83,55.238],[-132.614,59.013],[-131.128,58.178],[-124.193,57.479],[-123.824,57.651],[-119.271,54.426],[-119.103,52.147],[-119.337,51.87],[-117.907,41.525],[-117.911,41.525],[-114.869,40.42],[-116.404,38.211],[-121.52,35.461],[-130.877,25.963],[-136.711,16.196],[-136.612,16.074],[-125.442,26.945],[-118.188,27.941],[-117.982,28.172],[-113.845,30.7],[-111.917,35.777],[-109.302,36.953],[-109.169,37.714],[-106.71,40.417],[-106.296,40.482],[-106.216,41.3],[-106.216,41.3],[-103.035,48.467],[-103.035,48.467],[-106.357,48.631],[-106.11,53.128],[-103.145,53.081],[-99.585,55.694],[-90.636,55.43],[-88.891,53.342],[-87.434,52.895],[-86.822,52.931],[-86.808,48.574],[-90.976,48.715],[-91.689,48.411],[-92.718,45.108],[-92.371,43.79],[-92.371,43.785],[-92.368,43.79],[-81.592,38.933],[-80.377,54.881],[-79.229,55.302],[-76.788,56.965],[-76.71,57.257],[-52.36,64.331],[-46.798,63.699],[-46.333,63.351],[-39.024,64.139],[-39.642,69.508],[-38.749,71.019],[-39.653,72.228],[-40.336,73.588],[-40.267,75.519],[-41.517,76.057],[-42.337,78.395],[-42.119,78.927],[-45.435,86.313],[-45.422,86.477],[-47.266,86.651],[-58.981,85.35],[-76.231,84.787],[-82.382,84.095],[-82.566,84.399],[-93.591,79.497],[-101.744,79.508],[-105.271,90.199],[-108.457,91.09],[-108.39,90.932],[-113.533,86.784],[-120.418,84.2],[-130.54,78.38],[-136.647,77.044],[-140.045,76.711],[-140.12,77.255],[-142.905,76.291],[-143.561,74.77],[-143.301,74.392],[-141.42,70.987],[-139.529,66.158],[-139.967,60.053],[-145.607,56.263],[-150.687,57.382],[-168.093,58.274],[-181.952,61.6],[-202.708,66.412],[-202.708,66.412]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[-1.116,3.287],[-0.344,0.171],[-1.207,1.991],[0.318,2.654],[-0.707,2.084],[-0.673,0.718],[5.35,5.919],[0.21,1.62],[-2.657,4.037],[-1.909,2.382],[-0.008,0.005],[0,0],[-0.238,-0.085],[-0.011,0.762],[-3.676,3.086],[-0.295,-1.163],[-0.144,-0.482],[1.821,-1.878],[-2.039,-8.125],[-3.893,1.121],[-4.719,3.957],[0.33,-1.953],[5.02,-5.165],[0.073,-0.259],[-3.032,-5.406],[-2.358,-4.092],[-0.176,-0.314],[-0.062,-0.051],[2.156,0.831],[6.284,-4.668],[2.378,-0.054],[-0.382,0.781]],"o":[[0.302,-0.138],[2.953,-0.811],[1.253,-1.586],[-0.255,-2.098],[0.361,-0.94],[5.4,-5.754],[-1.156,-1.281],[-0.64,-4.967],[1.909,-2.383],[0.011,-0.006],[0,0],[0.177,0.107],[0.781,-0.149],[0.069,-5.266],[0.276,1.173],[0.039,0.486],[0.628,3.093],[-5.884,6.076],[1.032,4.123],[5.479,-1.58],[0.846,1.802],[-5.823,-1.471],[-0.099,0.259],[-3.071,2.233],[-4.573,5.976],[0.069,0.309],[0.066,0.051],[-1.594,1.491],[-8.455,-3.258],[-1.886,-1.498],[0.38,-0.781],[0.879,-3.651]],"v":[[-133.233,-45.102],[-132.261,-45.565],[-126.05,-49.778],[-124.521,-55.992],[-123.943,-62.386],[-122.303,-64.802],[-122.196,-77.796],[-123.883,-82.015],[-120.423,-95.355],[-114.695,-102.503],[-114.664,-102.52],[-114.664,-102.52],[-114.048,-102.227],[-112.273,-103.47],[-105.785,-115.441],[-104.018,-112.477],[-103.792,-111.005],[-106.7,-103.64],[-111.81,-82.533],[-100.901,-72.481],[-84.436,-77.663],[-83.989,-71.987],[-100.637,-69.66],[-100.888,-68.883],[-105.265,-59.672],[-108.594,-44.484],[-108.231,-43.553],[-108.041,-43.4],[-113.651,-42.339],[-134.728,-36.408],[-141.209,-38.32],[-140.065,-40.663]],"c":true},"ix":2},"nm":"Path 7","mn":"ADBE Vector Shape - Group","hd":false},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0.003,0],[0,0],[-0.003,-0.003]],"o":[[0,-0.003],[0.003,0.003],[-0.003,0]],"v":[[310.8,75.721],[310.8,75.715],[310.806,75.721]],"c":true},"ix":2},"nm":"Path 8","mn":"ADBE Vector Shape - Group","hd":false},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0.01,0.008],[0,0],[-0.005,-0.005],[0.003,-0.003]],"o":[[0,0],[0.009,0.008],[0,0.003],[-0.008,-0.011]],"v":[[-185.481,178.021],[-185.478,178.021],[-185.455,178.05],[-185.458,178.055]],"c":true},"ix":2},"nm":"Path 9","mn":"ADBE Vector Shape - Group","hd":false},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[-0.011,0.005],[0,-0.026],[0,0],[0,0],[0.011,0.018]],"o":[[0.003,0.023],[0,0],[0,0],[-0.012,-0.018],[0.008,-0.003]],"v":[[-99.502,344.448],[-99.498,344.516],[-99.498,344.516],[-99.498,344.516],[-99.533,344.462]],"c":true},"ix":2},"nm":"Path 10","mn":"ADBE Vector Shape - Group","hd":false},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[-0.108,-0.217],[0.471,0.573],[0.233,0.213],[0.886,0.39],[1.429,-0.141],[-1.49,-0.653],[-0.849,-0.764],[-0.754,-0.144]],"o":[[-0.658,0.102],[-0.222,-0.274],[-0.911,-0.44],[-1.575,-0.307],[1.639,-1.078],[0.925,0.18],[0.707,0.344],[0.066,0.234]],"v":[[-49.604,-113.833],[-51.367,-114.558],[-52.056,-115.276],[-54.738,-116.618],[-59.361,-116.48],[-54.738,-116.618],[-52.056,-115.276],[-49.866,-114.513]],"c":true},"ix":2},"nm":"Path 11","mn":"ADBE Vector Shape - Group","hd":false},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[0.139,-0.083],[-0.154,0.068]],"o":[[0.149,-0.083],[-0.154,0.074]],"v":[[-36.011,3.559],[-35.554,3.341]],"c":true},"ix":2},"nm":"Path 12","mn":"ADBE Vector Shape - Group","hd":false},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[-0.061,0.01],[-0.003,-0.001],[0.066,-0.008]],"o":[[0.001,0],[-0.062,0.007],[0.06,-0.01]],"v":[[-32.657,-59.234],[-32.646,-59.228],[-32.83,-59.219]],"c":true},"ix":2},"nm":"Path 13","mn":"ADBE Vector Shape - Group","hd":false},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0.007,-0.003],[0.003,0.003],[0,0],[0,-0.005]],"o":[[-0.005,0],[0,0],[0.006,0.005],[-0.008,0.005]],"v":[[-27.527,88.936],[-27.538,88.93],[-27.511,88.902],[-27.503,88.918]],"c":true},"ix":2},"nm":"Path 14","mn":"ADBE Vector Shape - Group","hd":false},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.026,0],[0.032,-0.027],[-0.009,0.019]],"o":[[0,0],[0.011,0.016],[0.028,-0.003],[-0.032,0.019],[0.008,-0.019],[0,0]],"v":[[-28.811,89.04],[-28.811,89.037],[-28.785,89.077],[-28.707,89.071],[-28.813,89.129],[-28.785,89.077]],"c":true},"ix":2},"nm":"Path 15","mn":"ADBE Vector Shape - Group","hd":false},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[-0.018,-0.001],[0,0],[0.008,-0.022],[0.008,0.026]],"o":[[0,0],[-0.01,0.023],[-0.008,-0.024],[0.013,0.003]],"v":[[-71.66,-97.691],[-71.66,-97.691],[-71.683,-97.626],[-71.704,-97.702]],"c":true},"ix":2},"nm":"Path 16","mn":"ADBE Vector Shape - Group","hd":false},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[0.177,-0.039],[0.104,0.042],[-0.173,0.068],[0.008,0.013],[-0.158,-0.039],[-0.049,-0.084],[0.028,-0.003],[0.072,-0.023]],"o":[[-0.106,-0.045],[0.173,-0.042],[-0.005,-0.012],[-0.168,-0.31],[0.049,0.088],[-0.023,0.005],[-0.068,0.031],[0.043,0.123]],"v":[[-95.533,34.766],[-95.851,34.646],[-95.331,34.508],[-95.339,34.477],[-95.207,34.154],[-95.06,34.414],[-95.12,34.435],[-95.331,34.508]],"c":true},"ix":2},"nm":"Path 17","mn":"ADBE Vector Shape - Group","hd":false},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[2.527,-1.28],[0.267,1.108],[-1.144,0.263],[-0.364,0.852],[-2.1,1.244],[0.589,-2.386]],"o":[[-0.267,-1.108],[1.143,-0.232],[0.871,-0.437],[2.811,1.19],[-2.084,1.297],[-2.77,-0.317]],"v":[[-47.475,12.071],[-48.274,8.747],[-44.841,7.984],[-42.88,6.145],[-36.207,3.677],[-39.671,9.604]],"c":true},"ix":2},"nm":"Path 18","mn":"ADBE Vector Shape - Group","hd":false},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[2.326,-0.569],[2.464,5.289],[0.217,1.67],[2.272,3.953],[0.753,-0.057],[1.62,3.556],[-3.727,2.745],[-0.019,0.055],[-3.113,-1.19],[-7.056,-8.008],[-0.68,-1.657],[-1.373,-0.446],[-2.937,-5.949]],"o":[[-5.159,1.258],[0.677,-1.331],[1.93,-5.086],[-0.696,-0.516],[-0.023,-4.294],[-1.992,-4.385],[0.018,-0.055],[2.945,0.789],[-5.583,9.238],[1.164,1.323],[0.601,1.473],[1.77,6.553],[0.116,2.49]],"v":[[29.439,56.595],[15.329,48.478],[16.1,44.011],[12.809,31.195],[10.654,30.33],[5.95,19.415],[7.881,9.355],[7.94,9.19],[16.648,7.13],[18.286,26.251],[21.18,30.589],[24.056,33.625],[32.894,51.476]],"c":true},"ix":2},"nm":"Path 19","mn":"ADBE Vector Shape - Group","hd":false},{"ind":19,"ty":"sh","ix":20,"ks":{"a":0,"k":{"i":[[5.909,-2.578],[3.184,-1.656],[1.664,2.897],[-0.902,1.963],[-0.374,0.81],[1.932,1.4],[-0.264,0.271],[-0.182,0.508],[-0.199,0.865],[-0.735,1.217],[-3.293,-2.581],[-0.175,-0.065],[0.022,-0.177],[-0.563,-0.414],[0,0],[0,0],[0.13,-0.341],[-4.339,3.307],[-0.043,-0.065],[-0.673,0.646],[-2.567,-1.178],[-1.068,-0.649],[-4.329,-5.037],[0.253,-0.693],[1.165,-0.428],[4.804,2.149]],"o":[[-3.267,1.461],[-2.478,0.014],[-0.906,-1.966],[0.378,-0.81],[0.815,-1.729],[0.265,-0.276],[0.376,-0.456],[0.515,-0.565],[1.999,0.942],[2.131,-3.532],[0.183,0.054],[-0.024,0.175],[0.566,0.412],[0,0],[0,0],[-0.064,0.362],[3.166,6.834],[0.039,0.065],[0.826,0.393],[2.638,-1.45],[0.697,0.802],[5.652,3.444],[-0.038,0.57],[-1.22,0.085],[-5.069,0.609],[-5.562,-2.485]],"v":[[-56.802,30.617],[-66.388,35.498],[-72.809,31.836],[-72.809,25.944],[-71.683,23.515],[-71.995,18.663],[-71.198,17.84],[-70.361,16.393],[-69.309,14.232],[-66.234,11.502],[-58.273,9.815],[-57.734,9.993],[-57.803,10.521],[-56.109,11.761],[-56.107,11.761],[-56.107,11.761],[-56.396,12.813],[-48.462,16.592],[-48.356,16.782],[-46.108,16.444],[-38.561,16.483],[-35.892,18.647],[-20.681,31.097],[-21.129,32.987],[-24.742,33.5],[-39.374,31.275]],"c":true},"ix":2},"nm":"Path 20","mn":"ADBE Vector Shape - Group","hd":false},{"ind":20,"ty":"sh","ix":21,"ks":{"a":0,"k":{"i":[[0.099,-0.104],[-0.362,0.765],[-0.715,2.416],[-0.046,0.421],[0.588,1.469],[-0.808,-0.642],[-0.022,-0.167],[-0.02,-0.056],[0.441,-1.194],[0.066,-0.215],[1.086,-2.298],[0.608,-0.708]],"o":[[0.574,-0.674],[0.945,-2.377],[0.042,-0.429],[0.221,-2.034],[0.466,0.589],[0.02,0.169],[0.019,0.057],[-0.771,0.922],[-0.076,0.21],[-0.241,2.527],[-0.316,0.793],[-0.088,0.088]],"v":[[61.858,-136.661],[63.232,-138.833],[64.818,-146.287],[64.948,-147.562],[64.345,-152.843],[66.262,-151.002],[66.323,-150.499],[66.373,-150.333],[65.031,-146.926],[64.818,-146.287],[63.232,-138.833],[61.882,-136.571]],"c":true},"ix":2},"nm":"Path 21","mn":"ADBE Vector Shape - Group","hd":false},{"ind":21,"ty":"sh","ix":22,"ks":{"a":0,"k":{"i":[[-0.807,-3.649],[-1.399,-4.245],[-0.712,-1.1],[0.574,-4.915],[-1.324,-0.956],[-0.976,-0.487],[-1.391,-1.193],[-0.225,-0.16],[-1.304,-1.701],[0,0],[0.001,-0.076],[-0.242,-1.433],[-0.488,-0.288],[-0.344,-0.125],[-5.449,-1.576],[0.567,1.506],[-0.028,0.956],[0,0],[1.128,-0.037],[1.167,2.823],[1.564,1.207],[0,0],[2.28,1.802],[-0.023,0.184],[1.901,2.264],[-1.429,3.142],[0.034,0.295],[-0.226,0.122],[-0.261,0.559],[-0.265,1.487],[-0.138,0.074],[-0.321,-0.539],[-0.542,-0.24],[-1.567,-0.244],[-3.629,-3.523],[-0.072,-1.182],[-0.573,0.325],[-0.108,0.118],[-1.744,0.383],[-0.022,1.913],[0.944,10.711],[0.494,0.431],[-0.004,0.394],[0,0],[3.534,2.829],[0.348,3.396],[-1.645,2.172],[0.111,1.036],[-0.474,0.199],[-2.643,-3.472],[-1.381,1.467],[-1.609,0.758],[-0.494,0.226],[-1.618,1.036],[-1.691,0.232],[-4.585,5.144],[-2.095,3.047],[-1.703,3.467],[2.53,4.066],[0.073,1.768],[0.241,1.242],[-0.012,0.817],[0.119,-0.008],[0.012,0.325],[1.752,3.587],[2.276,-0.336],[0,0],[-1.448,1.813],[-3.936,0.745],[0.037,1.759],[1.407,0.049],[4.088,-3.545],[1.492,1.274],[-0.956,0.748],[-4.453,1.698],[-1.905,-1.334],[-1.262,0.226],[-2.595,2.039],[-0.089,-0.12],[-0.187,-2.248],[-4.186,1.261],[-0.481,0.454],[2.348,-3.207],[0.291,-2.826],[-2.102,-0.682],[-0.925,2.14],[0.034,0.301],[-0.157,0.107],[0.655,4.438],[0,0],[0,0],[-0.295,0.011],[0.206,0.516],[0.436,1.109],[0.381,0.562],[-0.079,0.077],[0.494,0.466],[0,0],[2.941,0.883],[0,0],[0.55,0.742],[0.449,0.945],[0.45,0.341],[0.123,0.107],[-0.752,2.795],[0.115,0.102],[-0.004,1.839],[-6.347,0.454],[-0.5,5.495],[-0.636,1.477],[1.678,14.476],[0.21,0.594],[1.433,4.343],[-0.033,-0.052],[-1.319,-0.896],[-0.318,-0.118],[-3.097,-3.1],[0.16,-0.314],[0.435,-3.068],[-0.234,-0.526],[-1.862,-1.808],[-0.256,-0.096],[-0.413,1.41],[-1.774,-1.653],[-0.273,0.028],[0.221,1.591],[1.523,0.626],[1.647,3.857],[0.068,0.357],[0,0],[-0.001,0],[-0.516,0.301],[0.98,2.026],[3.138,9.498],[1.829,1.555],[0.385,1.163],[-1.003,-2.729],[-0.802,-0.018],[0.309,-1.326],[2.995,1.481],[1.842,-0.764],[1.215,-0.798],[0.371,-0.257],[-0.156,2.279],[-0.455,1.075],[0.318,0.153],[0.737,-1.357],[0.173,-0.175],[0.064,0.054],[-0.409,2.177],[-1.16,7.173],[-10.416,2.261],[-0.157,0.225],[-0.409,0.379],[-0.754,0.276],[-0.772,1.35],[-0.404,0.459],[-3.725,-1.453],[-0.963,-0.196],[-2.554,0.386],[-2.512,-0.18],[0,0],[-0.103,-0.337],[0,0],[0,0],[5.675,0.762],[0.141,1.23],[-0.042,0.345],[-0.023,0.066],[-0.127,2.156],[0.139,1.649],[0.045,0.218],[-0.007,0.152],[-0.628,1.479],[-3.273,-1.667],[-0.608,-0.663],[-1.526,-0.271],[-0.238,1.242],[-0.576,0.645],[-0.571,1.301],[-0.937,0],[0.035,-0.394],[0.477,-1.395],[0.692,-7.284],[3.383,-3.274],[-0.008,-0.259],[1.077,-2.578],[-0.994,-3.453],[-2.554,-4.171],[-4.011,-6.665],[-2.329,0.473],[-0.402,2.133],[-1.285,3.606],[2.779,2.398],[0,0],[-3.205,1.714],[1.959,2.708],[-4.146,3.303],[-0.036,0.854],[1.383,0.15],[0.003,0],[0,0],[-0.8,3.858],[3.93,-1.915],[0,0],[0.099,2.058],[1.051,3.217],[-2.828,1.427],[-0.088,0.126],[-0.445,-0.233],[-0.501,1.487],[-0.647,-0.008],[-1.014,-0.041],[0,1.133],[0,0],[-5.72,-3.465],[-1.605,0.334],[-7.3,9.258],[-0.962,3.635],[2.918,1.709],[1.587,2.631],[0.198,0.533],[-1.481,3.857],[0.004,0],[6.409,5.404],[-1.336,1.748],[-0.94,-0.585],[-1.793,0.026],[-4.432,-1.916],[-3.111,1.82],[0,0],[-1.083,0.868],[0.111,1.519],[1.449,0.421],[0.177,0.118],[3.01,1.369],[0.003,0],[-0.234,1.397],[2.631,2.707],[0,0],[3.541,0.288],[0,0],[2.336,0.708],[0.968,-2.901],[1.135,0.421],[2.135,-2.58],[-0.004,-0.001],[0,0],[2.543,0.326],[4.76,1.236],[8.932,-4.175],[2.573,0.688],[-2.045,-2.011],[1.722,-3.863],[3.49,2.098],[0.367,0.509],[3.797,-1.129],[-0.148,-0.374],[0.056,-0.05],[4.058,-0.097],[1.693,-1.355],[-0.024,0.009],[0,0],[-0.007,0.004],[1.572,-1.174],[2.631,4.89],[1.209,0.712],[0.368,0.404],[5.423,-4.199],[4.473,5.058],[0.917,2.928],[4.796,-2.159],[0,0],[1.188,-0.149],[2.914,-1.374],[0,0],[0.232,-7.153],[-0.2,-2.077],[-1.086,0.643],[0,0],[8.845,-2.674],[1.904,-0.299],[0,0],[1.307,-0.301],[2.544,-0.594],[0.144,-0.096],[0.517,-0.431],[-0.536,-0.766],[0.05,-0.423],[-0.904,-2.237],[5.945,1.767],[0.061,0.605],[-0.043,1.693],[2.113,0.255],[0,0],[0.198,0.322],[0.746,1.479],[4.325,-4.347],[0,0],[1.836,-0.004],[-0.727,-3.593],[3.027,-1.448],[3.553,3.098],[0.493,-0.046],[0.849,0.142],[0.326,0.133],[0.053,1.991],[4.274,-0.78],[4.132,1.378],[-0.536,-4.567],[-0.29,-0.767],[-0.003,0],[0,0],[3.996,-0.186],[0.315,0.414],[0,0],[0,0],[-3.008,9.428],[1.148,1.272],[0.091,0.375],[0,0],[5.807,2.783],[0,0],[1.521,-0.827],[0.849,-0.585],[0,0.001],[1.58,0.315],[0,0],[0,0],[0.666,-0.16],[0.425,5.946],[2.108,0.173],[0.414,-1.815],[-3.724,-3.965],[-0.015,-1.228],[-0.003,0],[0,-0.001],[0.815,-0.054],[0.223,-0.704],[0.145,-0.395],[0,0],[0.473,-0.39],[0,-0.001],[3.005,5.111],[2.046,-2.306],[0.12,-1.464],[0,-0.001],[1.721,-1.511],[0.244,-7.916],[-1.098,-0.38],[0,0],[-0.819,-0.459],[0,0],[0.626,-1.522],[0.753,-0.077],[3.687,-1.093],[-1.315,-3.533],[-3.709,-3.07],[1.674,-0.108],[0.233,0.088],[4.429,-1.278],[1.303,0.096],[-1.693,-1.484],[0.779,-0.45],[0.008,-0.386],[0,0],[0.001,-0.001],[0.099,0.103],[1.11,0.394],[0.498,0.773],[0.854,-1.8],[0,0],[0.328,-0.019],[-3.225,-3.158],[-0.18,-0.222],[0.213,0.127],[0.777,5.163],[0.739,0.821],[2.91,-0.412],[-0.232,-1.848],[-0.031,-0.387],[-0.19,-0.971],[-0.047,-0.918],[0.479,-2.657],[0.026,-0.062],[-0.034,-0.596],[0.087,-1.224],[-0.161,-2.433],[-3.579,-1.731],[-0.008,-0.007],[4.74,2.206],[2.811,-1.406],[2.251,2.689],[-2.283,-1.541],[-1.921,-1.075],[-0.176,-0.329],[4.599,1.297],[0.514,-0.257],[0.374,-0.222],[0.594,0.005],[1.697,0.976],[3.425,-1.782],[0.552,-0.588],[0.598,-0.275],[0.344,-0.44],[0.176,-0.406],[0.603,-0.371],[0.753,-0.423],[0.711,-1.93],[1.805,1.021],[-0.329,1.628],[0.003,0],[0,0],[0,0],[4.402,-0.418],[-0.915,-3.134],[-0.222,-1.58],[-0.355,-0.456],[-0.031,-0.039],[0.032,-0.042],[-0.362,-0.325],[2.386,0.054],[0.202,4.087],[1.618,0.813],[0.038,-0.015],[0.088,0.073],[0.563,0.596],[3.483,3.1],[5.932,-0.571],[2.164,6.149],[0,0],[5.104,-1.989],[3.096,-3.499],[0,0],[0.003,-0.003],[0,0],[0.502,-0.301],[0.5,-0.32],[1.406,-0.279],[3.074,-1.634],[0.692,-0.741],[1.033,-1.301],[1.362,-0.229],[-1.106,-3.477],[-0.085,-0.638],[-0.171,-1.009],[1.637,-1.047],[-0.726,-1.198],[-0.114,-0.077],[0,0],[0.232,-0.121],[4.607,-3.434],[0.623,-1.28],[4.335,-3.542],[-2.306,-6.346],[0.118,-3.965],[-6.062,1.783],[-2.539,2.613],[-0.852,-2.71],[-1.636,-0.779],[-0.023,-0.077],[-0.211,-0.539],[-0.36,-0.589],[0.027,-0.6],[1.099,-1.086],[0.45,0.129],[0.214,-0.073],[-0.062,0.219],[0.978,3.047],[2.007,-0.479],[-2.674,-5.847],[-0.013,-0.024],[0.165,-0.015],[-0.932,-1.477],[0,0],[-0.053,-0.49],[0.861,-0.844],[0.232,-0.081],[2.007,-6.069],[4.382,-0.961],[-0.67,1.652],[2.31,1.293],[1.124,0.624],[0.034,0.416],[1.816,1.239],[0,0],[-0.018,5.31],[2.886,3.173],[3.522,-1.743],[-1.205,-4.66],[7.166,-1.587],[0.175,-0.352],[1.171,-1.189],[0.05,-2.841],[1.354,-2.295],[0,0],[-4.268,-0.781],[-1.533,0.062],[-2.05,0.853],[2.354,4.06],[-0.175,1.686],[-1.682,1.351],[-0.066,0.186],[-0.543,-0.26],[-0.003,0.004],[-0.795,-0.746],[0,0],[0.716,0.011],[-0.188,-0.41],[0.853,-0.891],[0.443,-0.542],[-1.067,-1.102],[0,0],[0,-0.001],[-0.095,-0.083],[0.035,-0.037],[0.103,-0.619],[0.003,-0.362],[-0.418,-1.909],[-0.666,0.028],[0.005,-2.014],[1.075,-0.754],[-1.324,-0.252],[-0.385,-0.406],[-1.119,0.164],[-1.04,0.295],[-1.209,0.497],[1.471,-0.416],[1.089,-0.164],[0.542,-1.487],[0.02,-0.387],[0,0],[-1.132,-2.378],[-0.822,0.273],[-0.769,-0.039],[2.497,-5.881],[0,0],[2.819,0.482],[6.447,0.176],[-1.251,-4.047],[1.102,-3.372],[-0.914,-1.467],[0.638,-0.039],[0.023,-0.367],[-0.749,-1.596],[-2.684,-1.477],[-1.556,-0.367],[-0.742,-3.18],[0,0],[0,0],[0.042,-1.171],[-0.035,-0.275],[0.26,-0.257],[1.905,-0.753],[0.585,-5.937],[6.563,-2.544],[-1.393,-2.279],[0.963,-4.657],[0,0],[0.13,-0.689],[3.496,-3.12],[-0.865,-1.743],[-0.36,-0.398],[-0.378,-0.042],[-0.02,-0.226],[1.328,-5.318],[-0.104,-0.467],[-2.127,-4.531],[-0.15,-0.902],[0.046,-0.305],[-0.813,-1.007],[0,0],[-0.012,-0.84],[-2.218,0.014],[-3.677,-2.576],[-0.043,-1.156],[-0.393,-0.383],[-0.032,-0.44],[0,0],[-3.647,-0.956],[-0.406,-0.191],[-1.564,-0.776],[0,0],[0,0],[-2.168,-1.323],[0,0],[0,0],[-2.112,1.077],[-6.09,-1.156],[0,0.003],[-3.942,2.565],[-5.958,-2.25],[0,0],[-0.417,-0.821],[-0.558,-1.074],[0,0],[-3.955,1.005],[0,0],[-1.081,-0.417],[0.527,-3.766],[-0.007,-0.037],[0.336,-0.533],[0.107,-0.81],[-0.481,-0.02],[-8.822,-5.763],[-0.367,-0.445],[0,-0.003],[-0.248,-0.293],[-0.005,0],[0,-0.003],[-0.146,-0.737],[-0.624,-0.409],[0,0.003],[0,0],[-2.14,-1.82],[0,0],[-2.1,-5.427],[2.349,-2.341],[0.248,-7.189],[-1.485,-2.547],[-0.937,-7.016],[-7.77,-8.623],[-0.072,0.2],[0,0],[-0.115,-0.034],[0.153,-0.184],[0.11,-6.744],[-5.36,1.089],[-4.519,-0.471],[-5.621,4.118],[-6.52,6.975],[0.519,2.934],[-1.044,2.412],[-1.958,3.579],[2.299,3.839],[0,0],[0.135,0.386],[-0.349,1.779],[0.003,-0.003],[0,0],[-2.563,2.07],[-0.802,1.649],[0,0],[-0.543,0.539],[0,0],[0,0],[-0.012,8.503],[-0.143,3.72],[2.318,1.334],[1.289,4.305],[-1.801,4.037],[-2.455,4.425],[0,0],[-0.08,0.375],[-7.348,2.897],[-0.799,0.691],[0.429,0.527],[-0.119,0.221],[-0.364,0.122],[-0.389,0.397],[-0.668,0.699],[-0.326,0.042],[-1.063,1.693],[-0.446,-0.028],[-1.578,3.54],[0.19,0.333],[-0.142,0.104],[-0.859,2.714],[2.191,3.19],[3.073,-0.214],[8.345,2.373],[-0.03,0.245],[0.284,0.313],[-1.569,0.706],[-1.811,0.465],[-3.954,1.993],[-0.031,2.841],[0.064,0.157],[0.06,0.078],[0,0],[0.018,0.007],[0.009,0.015],[0,0.034],[-0.064,-0.164],[-0.225,-0.16],[-3.523,1.915],[-2.237,2.331],[0,0],[-3.515,3.336],[-2.133,0.825],[-2.066,2.378],[6.161,6.603],[-0.004,0.003],[2.574,0.485],[1.231,1.969],[0,0],[0,0],[-0.061,0.428],[2.194,0.497],[0.241,-1.066],[0,0],[1.476,-1.308],[0.424,-1.139],[1.128,-0.46],[2.802,1.816],[0,0],[0.391,1.597],[0,0],[-0.362,0.364],[1.324,0.192],[0.238,-0.872],[0.929,0.548],[3.346,1.774],[0,0],[0.857,1.559],[1.077,0.922],[0,0],[0,0.003],[-0.309,1.06],[-0.789,-0.013],[-1.383,-2.205],[-3.67,-2.813],[-0.879,-0.224],[-1.113,-0.167],[-1.492,0.362],[-1.147,-0.37],[-1.885,-1.339],[-6.972,1.368],[-0.627,-0.474],[-1.556,0.046],[-4.902,-7.687],[-1.555,1.15],[-1.11,-2.922],[-7.365,2.975],[-0.408,-1.495],[-0.819,-2.513],[-6.512,-14.625],[-3.354,2.93],[-1.301,3.18],[-0.007,0.054],[-0.141,1.503],[-6.411,8.54],[-1.373,1.354],[-9.085,3.303],[-1.471,-0.046],[-2.227,0.055],[-1.647,-1.794],[0.52,-8.358],[-0.764,-0.62],[-2.417,0.857]],"o":[[0.984,4.44],[0.58,1.308],[-0.074,4.942],[0.037,1.676],[0.967,0.513],[0.808,1.69],[0.229,0.158],[0.378,2.02],[0,0],[-0.005,0.077],[-2.261,1.018],[0.019,0.576],[0.362,0.073],[3.352,4.434],[1.514,-1.515],[0.031,-0.956],[0,0],[-0.539,-0.895],[-0.289,-2.962],[-1.564,-1.208],[0,0],[-2.276,-1.806],[0.033,-0.169],[0.245,-3.384],[-2.322,-2.753],[-0.032,-0.297],[0.207,-0.096],[0.471,-0.383],[0.707,-1.378],[0.118,-0.099],[0.326,0.544],[0.419,0.42],[1.517,0.547],[3.625,3.522],[0.074,1.185],[0.475,0.46],[0.141,-0.115],[2.095,0.589],[0.578,-1.575],[9.253,-2.987],[-0.49,-0.425],[0.003,-0.393],[0,0],[-0.169,-4.948],[-5.716,-4.578],[1.175,-2.458],[0.678,-0.742],[0.422,0.37],[3.704,-1.555],[1.196,1.574],[1.173,-1.246],[0.517,-0.156],[1.625,-1.032],[1.393,-1.125],[7.145,-0.984],[2.593,-2.914],[1.104,-3.758],[1.94,-3.942],[-0.964,-1.549],[-0.603,-1.159],[0.011,-0.815],[-0.118,0.007],[-0.024,-0.328],[-1.942,-3.383],[-0.98,-2.011],[0,0],[-1.085,-1.504],[2.144,-2.693],[1.741,-0.326],[-0.03,-1.513],[-3.783,-0.127],[-1.72,1.49],[-1.089,-0.932],[3.352,-2.615],[1.07,1.919],[0.963,0.727],[2.681,-1.848],[0.091,0.12],[2.146,1.713],[0.338,4.076],[0.57,-0.345],[2.06,1.461],[-0.111,2.761],[-0.213,2.061],[2.127,0.695],[0.064,-0.329],[0.183,-0.019],[5.282,1.337],[0,0],[0,0],[0.288,0.064],[-0.207,-0.519],[-0.436,-1.114],[-0.379,-0.562],[0.079,-0.07],[0.363,-0.581],[0,0],[-0.138,-3.06],[0,0],[-0.139,-1.167],[-0.41,-0.971],[-0.325,-0.46],[-0.129,-0.096],[1.185,-2.555],[-0.118,-0.099],[1.205,-1.25],[0.008,-6.589],[4.872,-0.352],[1.53,-0.149],[5.575,-12.967],[-0.036,-0.63],[-3.716,-3.586],[0.034,0.05],[0.938,1.33],[0.303,0.158],[-0.696,4.539],[-0.2,0.234],[-0.546,3.089],[0.095,0.565],[1.018,2.29],[0.26,0.093],[0.758,0.237],[1.238,-4.213],[0.273,0.005],[2.053,-2.202],[-0.961,-1.255],[-4.443,-2.826],[0.073,-0.357],[0,0],[0,0],[0.515,-0.301],[1.232,-0.058],[-4.443,-8.767],[0.259,-2.876],[-0.383,-1.162],[-1.508,-0.024],[0.506,0.559],[-0.844,0.947],[-2.217,-2.528],[-1.935,-0.52],[-1.166,0.891],[-0.401,0.195],[-1.097,-1.567],[0.894,0.039],[0.15,-0.356],[-1.354,-0.666],[-0.171,0.175],[-0.062,-0.054],[-2.206,-2.153],[1.346,-7.131],[1.781,-11.005],[0.154,-0.229],[0.19,-0.831],[0.775,-0.227],[1.661,-0.062],[0.357,-0.626],[3.398,-2.008],[0.903,0.429],[-0.614,1.086],[2.301,-0.349],[0,0],[0.064,0.348],[0,0],[0,0],[-0.567,-1.456],[-1.441,-0.551],[0.024,-0.348],[0.018,-0.065],[0.764,-2.083],[0.28,-1.61],[-0.064,-0.229],[0.007,-0.154],[1.037,-1.208],[2.854,-2.267],[0.796,0.995],[0.755,1.617],[1.632,0.288],[0.47,-0.462],[0.049,-1.381],[0.538,-0.607],[0.018,0.38],[0.104,1.359],[-2.435,7.094],[-0.456,4.803],[0.133,0.219],[3.138,1.162],[-1.495,3.584],[1.379,4.784],[4.062,6.633],[0.967,1.609],[2.196,-0.447],[0.668,-3.554],[3.108,-0.845],[0,0],[-0.364,-3.098],[4.685,-2.508],[-2.072,-2.863],[0.773,0.414],[0.045,-1.12],[0,0],[0,0],[-0.129,-3.299],[1.016,-4.535],[0,0],[-2.5,-0.971],[-0.158,-3.334],[-1.095,-2.596],[0.092,-0.122],[0.44,0.234],[0.5,-1.486],[0.647,0.008],[0.031,0.961],[1.613,0.061],[0,0],[3.695,-5.842],[1.338,0.808],[-1.844,-12.259],[2.305,-0.913],[1.017,-3.831],[-2.762,-1.617],[-0.198,-0.532],[-0.947,-2.191],[0,0],[2.676,-8.425],[-1.534,-1.295],[1.98,-2.59],[1.483,0.93],[0.856,-3.014],[2.288,3.866],[0.003,0],[1.117,0.945],[1.281,0.026],[-0.137,-1.934],[-0.059,-0.209],[0.473,-3.013],[0,0],[-0.662,-1.07],[2.552,-1.621],[0,0],[0.687,-3.859],[0,0],[-2.339,-0.71],[-1.1,2.768],[-1.135,-0.422],[-1.926,-0.672],[0,0.001],[0,0],[-1.894,-2.589],[-4.916,-0.628],[-8.887,-2.306],[-2.232,1.045],[-4.148,3.717],[2.307,2.271],[-2.949,-2.994],[-0.395,-0.421],[-0.027,-2.061],[0.146,0.372],[-0.053,0.045],[-0.429,3.789],[-1.785,0.042],[0.024,-0.011],[0,0],[0.007,-0.005],[-1.748,0.757],[-4.593,3.442],[-0.678,-1.258],[-0.371,-0.404],[-6.569,-3.724],[-5.285,4.092],[-3.802,1.87],[-2.741,-8.755],[0,0],[-1.186,0.15],[-3.016,-0.561],[0,0],[-3.005,1.273],[-1.383,0.502],[0.118,1.179],[0,0.001],[1.054,3.257],[-1.892,0.303],[0.003,0.001],[-1.304,0.301],[-1.73,3.231],[-0.15,0.088],[-0.538,-0.515],[-1.005,0.837],[-0.148,0.347],[0.613,2.295],[-6.488,-0.5],[-0.058,-0.607],[1.068,0.295],[0.06,-2.257],[0,0],[-0.045,-0.379],[-0.746,-1.477],[-3.357,-1.633],[0,0.001],[-1.839,-0.552],[-2.287,0.007],[0.328,1.628],[-2.963,1.42],[-0.497,0.05],[-1.358,0.688],[-0.326,-0.142],[-0.869,-0.659],[-4.274,0.781],[-3.43,3.203],[-2.733,-0.911],[0.288,0.768],[0,0],[-0.003,0.001],[-1.655,3.039],[-0.315,-0.412],[0,0.001],[0,0],[3.709,-9.216],[-1.147,-1.273],[0.047,-0.383],[0,0],[-4.16,-5.358],[0,0],[-1.368,1.16],[-0.848,0.588],[0,0],[-2.903,1.427],[0,0],[0,0],[-0.738,-0.156],[-3.048,0.726],[-0.154,-2.167],[-2.164,-0.179],[-1.078,4.685],[0.018,1.231],[0,0],[0,0],[-0.812,0.055],[-0.221,0.703],[-0.144,0.394],[0,0],[-0.468,0.39],[0,0],[-1.885,1.469],[-0.594,-1.013],[-0.93,0.116],[0,0],[-1.052,2.325],[-5.204,4.562],[1.096,0.382],[0,0],[0.821,0.46],[0,0],[0.781,1.063],[-0.754,0.081],[-2.994,2.692],[-3.403,1.009],[1.988,5.331],[0.356,3.037],[-0.225,-0.095],[-3.375,-2.238],[-0.081,-1.461],[-0.917,1.473],[-0.779,0.451],[-0.008,0.383],[0,-0.001],[0,0.003],[-0.1,-0.104],[-1.109,-0.394],[-0.5,-0.773],[-0.248,2.095],[0,0],[-0.33,0.055],[-1.388,3.817],[0.207,0.207],[-0.157,-0.161],[-5.112,-3.063],[-0.482,-1.06],[-2.123,-2.367],[-1.517,0.214],[0.049,0.389],[-0.487,0.707],[0.188,0.945],[-0.299,2.683],[-0.024,0.062],[-0.222,0.562],[-0.19,1.212],[1.014,2.088],[0.261,4.064],[0.038,0.023],[-4.756,-2.149],[-3.035,-0.129],[-3.07,-0.611],[-2.849,1.458],[1.819,1.227],[-0.024,0.355],[2.321,4.378],[-0.532,-0.149],[-0.376,0.206],[-0.595,-0.004],[-2.572,0.621],[-4.622,-2.665],[-0.55,0.589],[-0.657,0.177],[-0.494,0.247],[-0.047,0.508],[-0.6,0.37],[-0.75,0.423],[-2.163,0.815],[-0.917,1.139],[-1.997,-1.125],[-0.003,0],[0,0],[0,0],[-0.163,-5.221],[-5.174,0.489],[0.437,1.504],[0.165,0.562],[0.03,0.039],[-0.031,0.036],[-0.176,0.236],[0.869,2.011],[-1.862,-0.042],[1.155,-2.049],[-0.035,0.016],[-0.085,-0.073],[0.294,-0.654],[-2.693,-4.264],[-4.302,-3.831],[-4.955,-1.649],[0,0],[-4.534,-1.468],[-3.613,-0.952],[0.003,0],[0,0],[0,0],[-0.479,0.34],[-0.509,0.305],[-1.292,0.623],[-2.137,3.555],[-0.787,0.612],[-1.36,0.989],[-0.994,0.733],[-3.112,1.839],[0.221,0.687],[-0.248,0.96],[-0.433,1.449],[-0.955,0.982],[0.116,0.104],[0,0],[-0.234,0.12],[-3.733,3.916],[-0.83,1.062],[-2.229,5.637],[-6.772,4.607],[1.393,3.833],[-0.19,6.431],[3.538,-1.04],[-0.251,2.845],[0.872,1.664],[0.026,0.076],[0.095,0.571],[0.44,0.737],[-0.027,0.6],[-1.606,0.055],[-0.424,0.031],[-0.242,0.024],[0.047,-0.222],[2.592,-3.151],[-0.58,-1.809],[-5.762,1.369],[0.015,0.024],[-0.152,0.004],[-1.101,1.637],[0,0],[0.394,0.665],[-0.592,1.035],[-0.218,0.088],[-4.525,2.114],[-1.553,4.714],[-1.025,-1.766],[0.917,-2.24],[-0.848,-1.362],[-0.035,-0.414],[1.786,-2.123],[0,0],[-2.966,-4.348],[0.018,-4.337],[-1.815,-1.996],[-3.553,1.755],[1.79,6.902],[-0.233,0.052],[-1.17,1.189],[-2.612,0.598],[-0.045,2.305],[0,0],[-2.177,4.494],[1.583,0.288],[1.819,-1.555],[3.328,-1.381],[2.387,0.108],[0.245,-2.391],[0.095,-0.177],[0.542,0.259],[0,0],[0.795,0.746],[0,0],[-0.711,-0.012],[0.187,0.409],[-1.169,0.38],[-0.441,0.54],[-1.46,1.144],[0,0],[0,0],[0.089,0.081],[-0.038,0.035],[-0.357,0.506],[-0.007,0.361],[-1.121,0.443],[0.668,-0.029],[0.84,2.148],[-1.078,0.753],[-1.036,2.6],[0.389,0.409],[1.311,0.597],[0.953,-0.516],[1.311,-0.687],[-0.876,1.154],[-0.967,0.508],[-1.066,0.573],[-0.034,0.38],[0,0],[-1.591,2.443],[0.819,0.635],[0.657,0.404],[6.836,5.625],[0,0],[-0.976,4.439],[-6.428,-1.097],[-2.947,2.716],[1.078,3.487],[-0.309,1.616],[-0.632,0.039],[-0.003,0.37],[0.749,1.597],[-2.152,2.546],[1.559,0.366],[3.106,0.139],[0,0],[0,0],[-0.042,1.169],[0.039,0.272],[-0.181,0.303],[-0.534,2.095],[-6.014,2.378],[-0.777,7.968],[-2.39,0.925],[-3.327,2.883],[-0.003,0],[-0.133,0.685],[-5.143,1.824],[-0.506,1.477],[0.357,0.398],[0.32,0.385],[0.02,0.21],[-0.909,5.349],[-0.008,0.498],[-1.266,3.893],[0.84,0.894],[0,0.311],[-0.894,1.571],[0,0],[0.01,0.834],[2.213,-0.019],[2.57,3.732],[0.045,1.159],[0.394,0.384],[0.035,0.437],[0,0],[0.959,4.183],[0.41,0.195],[0.34,2.096],[0,0],[0,0],[1.342,2.433],[0,0],[0,0],[2.065,1.831],[5.689,-2.906],[0,-0.003],[5.018,2.107],[5.7,-1.661],[0.003,0],[0.414,0.821],[0.556,1.075],[0.003,0],[3.458,4.672],[0,0],[0.247,1.304],[3.689,1.427],[0.011,0.037],[-0.49,0.156],[-0.103,0.803],[0.481,0.02],[-4.014,10.272],[0.364,0.445],[0,0.003],[0.081,0.385],[0,0],[-0.005,0],[0.145,0.742],[0.625,0.412],[0,0],[0,0.003],[-0.632,2.68],[0,0],[0.83,5.626],[1.156,2.993],[-5.352,5.334],[-0.845,2.898],[3.532,6.047],[1.476,11.017],[0.005,-0.221],[0,0],[0.116,0.039],[-0.154,0.18],[0.742,6.314],[-0.088,5.323],[4.299,-0.88],[7.104,0.739],[7.839,-5.74],[1.797,-1.927],[1.031,-2.408],[4.089,-0.666],[1.882,-4.188],[0,0.003],[-0.137,-0.387],[0.349,-1.778],[-0.003,0],[0,0],[2.559,-2.073],[1.877,-0.229],[0,0],[0.54,-0.539],[0,-0.003],[0,0],[8.484,-2.425],[0.009,-3.722],[0.102,-2.534],[-1.117,-4.601],[-1.48,-4.953],[2.18,-4.886],[0,0],[0.249,-0.283],[5.981,-4.604],[0.796,-0.691],[0.387,-0.584],[0.119,-0.229],[0.358,-0.045],[0.504,-0.219],[0.825,-0.576],[0.302,-0.15],[1.06,-1.69],[0.447,0.028],[1.58,-3.541],[0.311,-0.427],[0.126,-0.122],[1.096,-2.534],[1.07,-3.385],[-2.448,-3.556],[-8.042,0.554],[0.047,-0.078],[0.045,-0.352],[-0.349,-2.62],[1.16,-0.11],[4.107,-1.521],[1.825,-0.919],[-0.053,-0.186],[-0.057,-0.082],[0.012,-0.01],[-0.016,-0.011],[-0.008,-0.013],[-0.003,-0.031],[0.076,0.141],[0.175,0.228],[4.206,0.723],[1.966,-2.576],[0,0],[5.106,-0.628],[2.73,0.635],[0.998,-2.618],[5.693,-6.539],[0,0],[-2.578,-0.488],[-1.234,-1.974],[0,0],[0,0],[0.062,-0.435],[-0.413,-1.453],[-0.925,-0.209],[0,0],[-1.473,1.305],[-0.423,1.143],[-1.125,0.46],[-2.944,-1.278],[0,-0.003],[-0.389,-1.594],[0,0],[0.363,-0.367],[-0.364,-1.274],[-0.229,0.875],[-0.928,-0.552],[-0.387,-3.802],[0,0],[-0.861,-1.56],[-0.149,-1.332],[0,0],[0,0],[0.301,-1.059],[0.88,-0.181],[2.278,0.719],[2.566,4.087],[0.669,0.62],[1.067,0.42],[1.397,0.654],[1.182,0.138],[2.635,-0.482],[6.011,4.279],[0.019,0.727],[1.473,0.708],[6.676,-0.789],[0.956,1.5],[0.199,3.366],[2.906,7.61],[2.91,0.05],[0.096,2.531],[4.975,15.332],[1.85,4.153],[2.46,-2.148],[0.006,-0.05],[1.077,-0.443],[0.955,-10.279],[1.416,-1.312],[6.658,-6.57],[1.327,0.691],[2.164,-1.067],[-0.642,2.758],[5.074,5.534],[-0.061,0.951],[2.481,1.104],[3.277,-1.159]],"v":[[229.306,161.004],[234.246,173.453],[235.961,177.415],[234.814,192.198],[236.897,196.127],[239.817,197.622],[243.442,201.67],[244.115,202.155],[246.197,207.887],[246.197,207.889],[246.201,208.121],[245.658,212.21],[246.404,213.515],[247.459,213.814],[260.108,223.578],[260.093,219.049],[260.181,216.177],[260.18,216.158],[257.967,214.416],[256.639,205.605],[251.943,201.989],[251.943,201.989],[245.104,196.573],[245.197,196.065],[241.788,187.655],[240.412,179.201],[240.311,178.31],[240.953,178.001],[242.058,176.597],[242.916,172.143],[243.302,171.883],[244.287,173.5],[245.715,174.516],[250.314,175.833],[261.19,186.402],[261.405,189.95],[262.979,190.153],[263.347,189.806],[268.205,187.59],[270.661,183.298],[280.962,166.312],[279.487,165.027],[279.505,163.848],[279.504,163.848],[272.931,152.782],[264.467,142.605],[267.482,134.941],[268.654,132.397],[270.029,132.823],[279.395,135.116],[283.88,134.783],[287.586,131.269],[289.106,130.699],[294.373,128.732],[299.122,126.815],[315.602,116.052],[320.298,106.095],[325.157,95.591],[325.406,83.424],[323.973,78.487],[322.75,74.877],[322.787,72.429],[322.435,72.45],[322.381,71.467],[316.014,61.65],[311.116,58.208],[311.116,58.208],[310.772,53.47],[318.165,46.517],[320.65,43.027],[318.443,39.957],[307.017,39.517],[301.871,38.133],[300.761,34.567],[308.93,25.015],[311.689,30.736],[314.936,31.791],[323.889,28.322],[324.156,28.685],[325.824,35.125],[332.19,39.935],[333.735,38.693],[335.03,45.012],[335.643,53.239],[338.529,57.862],[343.217,55.574],[343.255,54.634],[343.769,54.458],[349.329,48.465],[349.328,48.465],[349.329,48.462],[350.208,48.541],[349.587,46.986],[348.275,43.652],[347.134,41.968],[347.375,41.762],[347.178,40.194],[346.949,40.389],[342.482,34.352],[342.498,34.346],[341.458,31.487],[339.948,28.702],[338.812,27.487],[338.441,27.174],[342.84,19.972],[342.491,19.67],[344.116,15.112],[352.351,6.114],[359.95,-2.139],[362.934,-4.934],[370.991,-45.634],[370.627,-47.465],[366.477,-60.555],[366.569,-60.402],[370.079,-57.202],[371.012,-56.793],[375.769,-41.198],[375.222,-40.394],[376.27,-31.452],[376.732,-29.809],[380.267,-23.23],[381.042,-22.944],[383.282,-22.616],[387.957,-23.223],[388.781,-23.261],[387.593,-27.889],[384.193,-31.076],[380.032,-42.932],[380.038,-44.006],[380.038,-44.006],[380.04,-44.006],[381.587,-44.904],[383.261,-46.878],[369.356,-72.851],[365.804,-78.741],[364.646,-82.228],[362.265,-79.944],[363.909,-78.492],[361.632,-75.474],[353.644,-81.256],[347.985,-80.82],[344.445,-78.25],[343.279,-77.575],[340.469,-82.546],[342.855,-83.299],[342.407,-84.706],[339.211,-83.555],[338.697,-83.031],[338.515,-83.198],[338.452,-89.724],[344.35,-110.563],[357.196,-124.625],[357.661,-125.307],[358.581,-127.074],[360.872,-127.835],[365.109,-128.854],[366.256,-130.47],[376.783,-131.583],[379.559,-130.562],[381.738,-129.195],[387.688,-132.106],[387.688,-132.105],[387.937,-131.078],[388.317,-131.149],[388.704,-131.149],[388.118,-135.669],[385.589,-138.629],[385.685,-139.672],[385.73,-139.869],[386.897,-146.246],[387.213,-151.122],[387.087,-151.778],[387.107,-152.237],[389.011,-156.663],[398.192,-157.695],[400.275,-155.221],[404.252,-152.499],[406.248,-154.838],[407.797,-156.487],[408.996,-160.477],[411.145,-161.476],[411.128,-160.315],[411.484,-156.237],[409.06,-134.339],[404.417,-122.337],[404.631,-121.616],[406.91,-115.381],[407.304,-105.091],[413.484,-91.825],[425.747,-71.974],[429.176,-67.962],[432.108,-73.257],[431.253,-83.674],[432.43,-88.357],[432.43,-88.358],[434.166,-96.96],[434.601,-103.975],[434.246,-113.435],[435.861,-114.05],[434.066,-116.398],[434.063,-116.397],[434.063,-116.398],[429.751,-123.942],[425.186,-127.617],[425.184,-127.617],[422.637,-133.011],[421.498,-142.903],[423.277,-149.179],[423.544,-149.557],[424.868,-148.855],[426.374,-153.315],[428.315,-153.289],[429.273,-150.842],[430.573,-153.482],[430.573,-153.482],[441.355,-156.249],[445.536,-155.018],[455.446,-186.725],[462.425,-188.449],[457.481,-196.742],[451.249,-203.129],[450.655,-204.728],[446.812,-210.617],[446.808,-210.617],[442.402,-227.075],[441.362,-231.552],[444.438,-230.343],[449.199,-228.638],[455.082,-233.115],[463.442,-231.85],[463.445,-231.85],[466.738,-231.919],[468.821,-233.842],[465.737,-236.583],[465.379,-237.073],[462.278,-243.978],[462.275,-243.979],[461.063,-247.47],[462.303,-253.675],[462.303,-253.673],[457.588,-259.526],[457.588,-259.525],[450.577,-261.648],[444.912,-255.709],[441.512,-256.973],[435.635,-257.37],[435.639,-257.366],[435.642,-257.347],[428.34,-259.575],[413.603,-261.441],[387.1,-261.674],[379.747,-260.731],[381.621,-253.373],[386.007,-245.645],[375.632,-252.09],[374.508,-253.546],[369.421,-255.492],[369.861,-254.372],[369.706,-254.243],[363.487,-248.448],[357.794,-247.266],[357.864,-247.297],[357.774,-247.253],[357.794,-247.266],[352.712,-244.641],[341.745,-246.839],[339.079,-249.86],[337.967,-251.072],[319.297,-249.47],[305.507,-249.887],[295.404,-251.458],[283.349,-254.705],[283.349,-254.705],[279.788,-254.257],[270.86,-253.741],[270.86,-253.741],[262.093,-249.402],[259.219,-246.563],[261.175,-245.634],[261.175,-245.633],[260.643,-236.082],[254.956,-235.177],[254.961,-235.175],[251.046,-234.273],[243.604,-231.854],[243.164,-231.577],[241.479,-232.011],[241.446,-229.621],[241.137,-228.476],[242.342,-221.45],[225.726,-229.562],[225.545,-231.378],[228.216,-232.148],[224.44,-235.715],[224.44,-235.716],[224.072,-236.77],[221.834,-241.203],[211.261,-243.003],[211.261,-243.001],[205.747,-244.548],[201.668,-240.416],[201.684,-235.494],[192.228,-234.317],[190.748,-234.174],[187.458,-233.38],[186.48,-233.791],[185.118,-237.806],[172.301,-235.462],[160.733,-233.414],[156.168,-230.706],[157.032,-228.405],[157.034,-228.407],[157.032,-228.405],[149.738,-222.128],[148.792,-223.365],[148.792,-223.364],[148.792,-223.364],[156.8,-251.936],[153.355,-255.755],[153.286,-256.892],[153.285,-256.892],[137.36,-267.571],[137.268,-267.602],[132.592,-265.373],[130.051,-263.614],[130.049,-263.615],[126.665,-266.33],[126.665,-266.33],[126.665,-266.33],[124.464,-266.754],[117.786,-269.924],[112.382,-272.381],[108.81,-269.223],[110.783,-255.889],[110.831,-252.199],[110.834,-252.199],[110.831,-252.197],[108.389,-252.035],[107.725,-249.921],[107.293,-248.738],[107.293,-248.738],[105.882,-247.566],[105.882,-247.564],[99.679,-246.809],[93.531,-243.207],[92.055,-240.668],[92.055,-240.666],[86.882,-236.139],[76.03,-219.176],[79.321,-218.034],[79.318,-218.034],[81.777,-216.655],[81.777,-216.655],[82.897,-213.064],[80.638,-212.823],[70.221,-208.031],[67.729,-201.89],[78.204,-191.867],[74.787,-189.219],[74.098,-189.492],[62.972,-192.863],[60.706,-194.984],[60.689,-190.552],[58.355,-189.2],[58.33,-188.047],[58.63,-187.741],[58.628,-187.735],[58.33,-188.047],[55.001,-189.227],[53.504,-191.55],[52.636,-185.739],[52.636,-185.739],[51.649,-185.626],[53.094,-174.968],[53.672,-174.323],[53.124,-174.76],[46.482,-188.022],[44.998,-191.168],[37.092,-193.456],[33.955,-190.622],[34.068,-189.46],[33.569,-186.926],[33.917,-184.132],[32.569,-176.14],[32.5,-175.956],[32.239,-174.208],[31.808,-170.557],[34.087,-164.011],[40.089,-155.455],[40.307,-155.271],[25.444,-159.575],[16.379,-159.609],[8.445,-164.618],[8.255,-159.886],[13.935,-156.547],[14.122,-155.512],[10.626,-151.038],[8.998,-150.648],[7.877,-150.001],[6.095,-150.02],[-1.48,-148.415],[-12.447,-146.437],[-14.097,-144.671],[-16.06,-144.066],[-17.317,-143.038],[-17.668,-141.68],[-19.471,-140.568],[-21.73,-139.303],[-25.206,-134.545],[-28.606,-132.3],[-28.887,-137.031],[-28.892,-137.031],[-28.889,-137.031],[-28.781,-137.05],[-35.399,-144.02],[-38.164,-137.169],[-37.847,-132.437],[-37.155,-130.862],[-37.059,-130.745],[-37.155,-130.648],[-36.875,-129.809],[-38.757,-126.366],[-43.736,-128.607],[-45.384,-132.472],[-45.495,-132.424],[-45.758,-132.642],[-46.133,-134.518],[-57.564,-142.032],[-72.804,-147.631],[-85.581,-155.946],[-85.581,-155.946],[-99.515,-158.357],[-109.876,-157.097],[-109.873,-157.097],[-109.876,-157.094],[-109.979,-157.19],[-111.451,-156.23],[-112.958,-155.289],[-116.875,-153.557],[-126.166,-148.801],[-128.356,-146.732],[-131.925,-143.255],[-135.399,-141.734],[-138.432,-133.716],[-137.996,-131.739],[-138.165,-128.775],[-141.219,-125.017],[-141.624,-121.754],[-141.28,-121.51],[-141.28,-121.51],[-141.984,-121.148],[-149.28,-107.248],[-152.103,-104.406],[-163.566,-92.227],[-169.594,-78.191],[-167.983,-66.632],[-157.406,-58.486],[-148.16,-63.69],[-145.802,-55.535],[-141.904,-52.028],[-141.831,-51.805],[-141.377,-50.127],[-140.191,-48.159],[-140.276,-46.358],[-144.278,-44.542],[-145.578,-44.655],[-146.257,-44.492],[-146.111,-45.163],[-146.311,-54.508],[-150.379,-56.804],[-156.271,-43.003],[-156.229,-42.927],[-156.691,-42.905],[-156.348,-38.28],[-156.342,-38.266],[-155.693,-36.544],[-157.983,-33.804],[-158.656,-33.551],[-171.347,-25.769],[-180.502,-17.958],[-180.127,-22.97],[-181.727,-28.478],[-185.275,-29.856],[-185.373,-31.1],[-186.485,-35.88],[-186.485,-35.882],[-193.945,-49.588],[-197.441,-59.927],[-203.31,-63.523],[-211.093,-55.338],[-217.257,-42.82],[-217.783,-41.803],[-221.294,-38.236],[-224.919,-33.252],[-224.781,-26.377],[-224.793,-26.367],[-221.569,-18.268],[-217,-18.756],[-210.737,-21.084],[-207.177,-28.439],[-204.179,-32.129],[-201.108,-37.409],[-200.887,-37.962],[-199.258,-37.183],[-199.255,-37.187],[-196.869,-34.95],[-196.991,-34.464],[-199.131,-34.495],[-198.569,-33.265],[-201.499,-31.195],[-202.821,-29.57],[-202.765,-26.21],[-202.765,-26.21],[-202.765,-26.208],[-202.49,-25.961],[-202.607,-25.865],[-203.297,-24.183],[-203.307,-23.102],[-205.069,-20.253],[-203.069,-20.339],[-204.159,-14.44],[-207.388,-12.177],[-205.093,-9.758],[-203.934,-8.533],[-200.309,-7.989],[-197.24,-9.086],[-193.495,-11.096],[-197.24,-9.086],[-200.309,-7.989],[-202.832,-5.069],[-202.913,-3.919],[-202.913,-3.919],[-202.753,3.291],[-200.293,3.931],[-198.14,4.554],[-192.333,19.947],[-192.348,19.967],[-199.678,23.306],[-218.997,22.262],[-221.867,32.216],[-222.602,42.521],[-222.922,47.285],[-224.824,47.403],[-224.865,48.507],[-222.618,53.296],[-221.363,59.23],[-216.69,60.326],[-210.793,65.144],[-210.793,65.144],[-210.795,65.144],[-210.919,68.651],[-210.806,69.47],[-211.448,70.324],[-215.283,74.431],[-225.352,87.832],[-236.938,102.194],[-239.044,106.997],[-246.47,117.555],[-246.473,117.555],[-246.867,119.612],[-255.189,130.685],[-256.031,135.251],[-254.956,136.444],[-253.912,137.064],[-253.854,137.699],[-255.384,153.885],[-255.253,155.337],[-257.304,167.34],[-257.277,170.05],[-257.348,170.973],[-256.266,174.442],[-255.985,174.437],[-255.952,176.949],[-249.307,176.899],[-239.894,186.314],[-239.758,189.786],[-238.579,190.934],[-238.468,192.249],[-238.466,192.249],[-230.757,198.987],[-229.531,199.566],[-225.944,203.084],[-225.944,203.081],[-225.944,203.084],[-219.967,207.759],[-219.967,207.759],[-219.967,207.759],[-213.612,207.969],[-195.889,206.084],[-195.889,206.079],[-183.009,202.967],[-165.662,201.766],[-165.659,201.766],[-164.414,204.225],[-162.74,207.449],[-162.737,207.449],[-151.256,208.812],[-151.256,208.812],[-149.051,211.387],[-144.752,219.359],[-144.73,219.469],[-145.847,220.815],[-146.163,223.234],[-144.723,223.294],[-136.766,247.084],[-135.669,248.42],[-135.669,248.425],[-135.172,249.441],[-135.164,249.441],[-135.17,249.444],[-134.734,251.665],[-132.857,252.891],[-132.857,252.889],[-132.857,252.891],[-130.835,259.717],[-130.835,259.717],[-127.991,276.545],[-129.764,284.671],[-136.436,304.101],[-134.719,311.762],[-126.449,331.05],[-115.826,361.523],[-115.711,360.896],[-115.711,360.896],[-115.364,360.981],[-115.826,361.523],[-112.052,380.234],[-102.549,386.039],[-89.537,383.822],[-70.739,377.834],[-51.905,356.273],[-49.853,348.473],[-46.746,341.242],[-37.947,334.497],[-38.929,322.495],[-38.929,322.498],[-39.338,321.336],[-38.295,316.005],[-38.301,316.007],[-38.298,316.005],[-30.616,309.791],[-26.789,306.728],[-26.792,306.728],[-25.168,305.111],[-25.168,305.108],[-25.168,305.108],[-13.582,290.175],[-13.416,279.009],[-16.118,273.003],[-18.142,259.085],[-16.131,247.055],[-7.073,235.017],[-7.073,235.017],[-6.577,234.03],[10.73,219.432],[13.124,217.359],[13.051,215.692],[13.407,215.018],[14.486,214.778],[15.828,213.85],[18.041,211.915],[18.977,211.608],[22.164,206.53],[23.505,206.612],[28.233,195.992],[28.395,194.861],[28.793,194.52],[32.973,187.457],[33.688,177.245],[24.58,176.839],[0.556,179.555],[0.671,179.076],[0.311,178.078],[2.83,173.776],[7.221,172.882],[19.646,168.663],[23.842,164.567],[23.67,164.048],[23.502,163.803],[23.528,163.785],[23.478,163.765],[23.451,163.723],[23.451,163.624],[23.67,164.048],[24.255,164.648],[35.516,161.56],[41.691,154.079],[41.691,154.076],[53.575,146.331],[59.876,143.617],[63.458,136.022],[62.723,122.35],[62.604,122.475],[54.875,121.016],[51.176,115.099],[51.175,115.099],[51.175,115.099],[51.358,113.807],[50.113,109.596],[48.923,112.416],[48.922,112.416],[44.497,116.337],[43.225,119.761],[39.841,121.141],[30.675,118.557],[30.675,118.555],[29.502,113.768],[29.502,113.768],[30.594,112.672],[28.143,110.38],[27.448,113],[24.667,111.347],[19.169,102.91],[19.169,102.913],[16.592,98.237],[15.113,94.696],[15.113,94.696],[15.113,94.693],[16.021,91.519],[18.516,91.296],[24.21,95.425],[34.068,105.108],[36.403,106.363],[39.687,107.184],[44.017,107.661],[47.52,108.354],[53.511,111.138],[73.223,114.523],[74.338,116.263],[78.931,116.777],[97.487,121.138],[101.749,121.855],[106.573,129.266],[119.325,134.8],[121.549,138.723],[122.279,146.299],[141.346,190.398],[149.744,192.139],[155.912,184.509],[155.929,184.35],[157.461,180.969],[166.207,152.023],[170.444,148.083],[191.156,129.373],[195.474,129.904],[202.147,129.432],[204.662,136.001],[214.007,155.495],[215.594,157.842],[222.809,157.422]],"c":true},"ix":2},"nm":"Path 22","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"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":"null","np":23,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"outline fill","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.58],"y":[0]},"n":["0p833_0p833_0p58_0"],"t":30,"s":[0],"e":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p833_1_0p167_0"],"t":114,"s":[100],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.72],"y":[0]},"n":["0p833_0p833_0p72_0"],"t":180,"s":[100],"e":[0]},{"t":262}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[-18.5,-5.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-81.462,0],[0,-81.462],[81.462,0],[0,81.462]],"o":[[81.462,0],[0,81.462],[-81.462,0],[0,-81.462]],"v":[[-18.5,-153],[129,-5.5],[-18.5,142],[-166,-5.5]],"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":7,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":301,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"outline","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.37],"y":[1]},"o":{"x":[0.58],"y":[0]},"n":["0p37_1_0p58_0"],"t":0,"s":[180],"e":[785]},{"i":{"x":[0.564],"y":[1]},"o":{"x":[0.182],"y":[0]},"n":["0p564_1_0p182_0"],"t":120,"s":[785],"e":[809]},{"i":{"x":[0.41],"y":[1]},"o":{"x":[0.339],"y":[0]},"n":["0p41_1_0p339_0"],"t":180,"s":[809],"e":[1260]},{"t":300}],"ix":10},"p":{"a":0,"k":[400,300,0],"ix":2},"a":{"a":0,"k":[-18.5,-5.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-81.462,0],[0,-81.462],[81.462,0],[0,81.462]],"o":[[81.462,0],[0,81.462],[-81.462,0],[0,-81.462]],"v":[[-18.5,-153],[129,-5.5],[-18.5,142],[-166,-5.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.37],"y":[1]},"o":{"x":[0.58],"y":[0]},"n":["0p37_1_0p58_0"],"t":0,"s":[99.9],"e":[0]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p833_1_0p167_0"],"t":120,"s":[0],"e":[0]},{"i":{"x":[0.41],"y":[1]},"o":{"x":[0.58],"y":[0]},"n":["0p41_1_0p58_0"],"t":180,"s":[0],"e":[99.9]},{"t":300}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.5],"y":[0]},"n":["0p833_0p833_0p5_0"],"t":0,"s":[23],"e":[4]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p833_1_0p167_0"],"t":60,"s":[4],"e":[4]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.5],"y":[0]},"n":["0p833_0p833_0p5_0"],"t":248,"s":[4],"e":[23]},{"t":300}],"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false}],"ip":0,"op":301,"st":0,"bm":0}]}
--------------------------------------------------------------------------------