├── app ├── .gitignore ├── .DS_Store ├── src │ ├── .DS_Store │ ├── main │ │ ├── .DS_Store │ │ ├── res │ │ │ ├── .DS_Store │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ └── drawable │ │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── eijaz │ │ │ │ └── lottietutorial │ │ │ │ └── MainActivity.kt │ │ ├── AndroidManifest.xml │ │ └── assets │ │ │ ├── emoji_tongue.json │ │ │ ├── drink.json │ │ │ └── countdown.json │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── eijaz │ │ │ └── lottietutorial │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── example │ │ └── eijaz │ │ └── lottietutorial │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro ├── build.gradle └── app.iml ├── README.md ├── settings.gradle ├── .DS_Store ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── local.properties ├── gradle.properties ├── LottieTutorial.iml ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LottieTutorial-Kotlin -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/.DS_Store -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/.DS_Store -------------------------------------------------------------------------------- /app/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/.DS_Store -------------------------------------------------------------------------------- /app/src/main/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/.DS_Store -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LottieTutorial 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaz-alli/LottieTutorial-Kotlin/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jan 25 23:19:33 EST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | ## This file is automatically generated by Android Studio. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file should *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | # 7 | # Location of the SDK. This is only used by Gradle. 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Users/eijaz/Library/Android/sdk -------------------------------------------------------------------------------- /app/src/test/java/com/example/eijaz/lottietutorial/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package com.example.eijaz.lottietutorial 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/eijaz/lottietutorial/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.eijaz.lottietutorial 2 | 3 | import android.support.v7.app.AppCompatActivity 4 | import android.os.Bundle 5 | import kotlinx.android.synthetic.main.activity_main.* 6 | 7 | 8 | class MainActivity : AppCompatActivity() { 9 | 10 | override fun onCreate(savedInstanceState: Bundle?) { 11 | super.onCreate(savedInstanceState) 12 | setContentView(R.layout.activity_main) 13 | 14 | av_from_code.setAnimation("drink.json") 15 | av_from_code.playAnimation() 16 | av_from_code.loop(true) 17 | 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /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 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/eijaz/lottietutorial/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- 1 | package com.example.eijaz.lottietutorial 2 | 3 | import android.support.test.InstrumentationRegistry 4 | import android.support.test.runner.AndroidJUnit4 5 | 6 | import org.junit.Test 7 | import org.junit.runner.RunWith 8 | 9 | import org.junit.Assert.* 10 | 11 | /** 12 | * Instrumented test, which will execute on an Android device. 13 | * 14 | * See [testing documentation](http://d.android.com/tools/testing). 15 | */ 16 | @RunWith(AndroidJUnit4::class) 17 | class ExampleInstrumentedTest { 18 | @Test 19 | fun useAppContext() { 20 | // Context of the app under test. 21 | val appContext = InstrumentationRegistry.getTargetContext() 22 | assertEquals("com.example.eijaz.lottietutorial", appContext.packageName) 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /LottieTutorial.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 16 | 17 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | apply plugin: 'kotlin-android' 4 | 5 | apply plugin: 'kotlin-android-extensions' 6 | 7 | android { 8 | compileSdkVersion 26 9 | defaultConfig { 10 | applicationId "com.example.eijaz.lottietutorial" 11 | minSdkVersion 15 12 | targetSdkVersion 26 13 | versionCode 1 14 | versionName "1.0" 15 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 16 | } 17 | buildTypes { 18 | release { 19 | minifyEnabled false 20 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 21 | } 22 | } 23 | } 24 | 25 | dependencies { 26 | implementation fileTree(dir: 'libs', include: ['*.jar']) 27 | implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" 28 | implementation 'com.android.support:appcompat-v7:26.1.0' 29 | implementation 'com.android.support.constraint:constraint-layout:1.0.2' 30 | testImplementation 'junit:junit:4.12' 31 | androidTestImplementation 'com.android.support.test:runner:1.0.1' 32 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' 33 | 34 | implementation 'com.airbnb.android:lottie:2.2.5' 35 | } 36 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /app/src/main/assets/emoji_tongue.json: -------------------------------------------------------------------------------- 1 | {"v":"4.5.7","fr":30,"ip":0,"op":30,"w":100,"h":100,"ddd":0,"assets":[{"id":"comp_31","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"eyes","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-369.988,45.5,0]},"a":{"a":0,"k":[-252,-416.5,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[0.626,0],[0.14,0.039],[-0.232,0.729],[-3.401,0],[-1.025,-3.07],[0.768,-0.229],[0.242,0.724],[2.132,0],[0.613,-1.921]],"o":[[-0.14,0],[-0.771,-0.22],[0.982,-3.073],[3.41,0],[0.242,0.725],[-0.771,0.228],[-0.64,-1.918],[-2.126,0],[-0.19,0.595]],"v":[[176.453,-415.011],[176.031,-415.07],[175.057,-416.786],[182.5,-422.006],[189.915,-416.873],[188.963,-415.146],[187.134,-416.045],[182.5,-419.252],[177.848,-415.99]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ind":1,"ty":"sh","ks":{"a":0,"k":{"i":[[0.626,0],[0.14,0.039],[-0.232,0.729],[-3.401,0],[-1.025,-3.07],[0.768,-0.229],[0.242,0.724],[2.132,0],[0.614,-1.921]],"o":[[-0.139,0],[-0.771,-0.22],[0.982,-3.073],[3.41,0],[0.242,0.725],[-0.771,0.228],[-0.64,-1.918],[-2.125,0],[-0.19,0.595]],"v":[[147.453,-415.011],[147.031,-415.07],[146.057,-416.786],[153.5,-422.006],[160.915,-416.873],[159.963,-415.146],[158.134,-416.045],[153.5,-419.252],[148.848,-415.99]],"c":true}},"nm":"Path 2","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.33,0.33,0.28,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"mn":"ADBE Vector Group"}],"ip":0,"op":90,"st":0,"bm":0,"sr":1}]},{"id":"comp_32","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"mouth 3","parent":2,"td":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[-167.998,-313,0]},"a":{"a":0,"k":[-167.998,-313,0]},"s":{"a":0,"k":[100,100,100]}},"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":59,"s":[{"i":[[-14.789,0],[55.757,0],[-39.762,0]],"o":[[36.262,0],[-60.243,0],[14.325,0]],"v":[[-118.51,-321.999],[-168.005,-276.5],[-217.986,-321.944]],"c":true}],"e":[{"i":[[-2.738,-4.75],[21.943,-1.626],[-66.512,18.722]],"o":[[46.762,25.75],[-20.248,1.5],[5.488,-7.028]],"v":[[-153.01,-318.75],[-169,-278.25],[-182.236,-318.222]],"c":true}]},{"t":60}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.96,0.62,0.52,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":0,"op":150,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"mouth 2","parent":2,"tt":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":2,"s":[22],"e":[-20]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":16,"s":[-20],"e":[22]},{"t":32,"s":[22],"h":1},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":60,"s":[0],"e":[2]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":79,"s":[2],"e":[-2]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":101,"s":[-2],"e":[0]},{"t":120}]},"p":{"a":1,"k":[{"i":{"x":0.51,"y":1},"o":{"x":0.49,"y":0},"n":"0p51_1_0p49_0","t":60,"s":[-168.001,-331.25,0],"e":[-168.001,-329.152,0],"to":[0,0.33067026734352,0],"ti":[0,-0.91177415847778,0]},{"i":{"x":0.51,"y":1},"o":{"x":0.49,"y":0},"n":"0p51_1_0p49_0","t":73.364,"s":[-168.001,-329.152,0],"e":[-168.001,-331.25,0],"to":[0,1.38601875305176,0],"ti":[0,-0.83333331346512,0]},{"i":{"x":0.51,"y":1},"o":{"x":0.49,"y":0},"n":"0p51_1_0p49_0","t":88.636,"s":[-168.001,-331.25,0],"e":[-168.001,-329.152,0],"to":[0,0.33067026734352,0],"ti":[0,-0.91177415847778,0]},{"i":{"x":0.51,"y":1},"o":{"x":0.49,"y":0},"n":"0p51_1_0p49_0","t":102,"s":[-168.001,-329.152,0],"e":[-168.001,-331.25,0],"to":[0,1.38601875305176,0],"ti":[0,-0.83333331346512,0]},{"t":120}]},"a":{"a":0,"k":[-168.001,-331.25,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],[5.523,0],[0,5.353],[0,0]],"o":[[0,0],[0,5.353],[-5.523,0],[0,0],[0,0]],"v":[[-158.002,-331.25],[-158,-305.692],[-168,-296],[-178,-305.692],[-178.002,-331.25]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.85,0.53,0.43,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":0,"op":150,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"mouth","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[50,65,0]},"a":{"a":0,"k":[-167.998,-313,0]},"s":{"a":0,"k":[100,100,100]}},"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":59,"s":[{"i":[[-14.789,0],[10.217,0],[1.341,10.15]],"o":[[-1.329,10.164],[-10.208,0],[14.325,0]],"v":[[-148.01,-322],[-168,-304],[-187.986,-321.972]],"c":true}],"e":[{"i":[[-2.738,-4.75],[10.217,0],[-5.512,9.472]],"o":[[4.262,11.5],[-10.208,0],[5.488,-7.028]],"v":[[-153.01,-318.75],[-167.5,-308.25],[-182.236,-318.222]],"c":true}]},{"t":60}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[0.96,0.62,0.52,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":0,"op":150,"st":0,"bm":0,"sr":1}]},{"id":"comp_33","layers":[{"ddd":0,"ind":0,"ty":4,"nm":"round_normal","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[50,50,0]},"a":{"a":0,"k":[-252,-412,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":0,"k":{"i":[[-17.673,0],[0,-17.673],[17.673,0],[0,17.673]],"o":[[17.673,0],[0,17.673],[-17.673,0],[0,-17.673]],"v":[[-252,-444],[-220,-412],[-252,-380],[-284,-412]],"c":true}},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"fl","c":{"a":0,"k":[1,0.88,0.59,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":0,"op":300,"st":0,"bm":0,"sr":1}]}],"layers":[{"ddd":0,"ind":0,"ty":0,"nm":"eyes_lol","parent":1,"refId":"comp_31","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":1,"k":[{"i":{"x":0.472,"y":1},"o":{"x":0.568,"y":0},"n":"0p472_1_0p568_0","t":0,"s":[52.198,50.78,0],"e":[52.198,51.78,0],"to":[0,0.16666667163372,0],"ti":[0,0,0]},{"i":{"x":0.496,"y":1},"o":{"x":0.538,"y":0},"n":"0p496_1_0p538_0","t":7,"s":[52.198,51.78,0],"e":[52.198,50.78,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.472,"y":1},"o":{"x":0.568,"y":0},"n":"0p472_1_0p568_0","t":15,"s":[52.198,50.78,0],"e":[52.198,51.78,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.496,"y":1},"o":{"x":0.538,"y":0},"n":"0p496_1_0p538_0","t":22,"s":[52.198,51.78,0],"e":[52.198,50.78,0],"to":[0,0,0],"ti":[0,0.16666667163372,0]},{"t":30}]},"a":{"a":0,"k":[50,50,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":100,"h":100,"ip":0,"op":90,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":0,"nm":"mouth_tongue","parent":2,"refId":"comp_32","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.483],"y":[1]},"o":{"x":[0.535],"y":[0]},"n":["0p483_1_0p535_0"],"t":0,"s":[6],"e":[-6]},{"i":{"x":[0.483],"y":[1]},"o":{"x":[0.535],"y":[0]},"n":["0p483_1_0p535_0"],"t":15,"s":[-6],"e":[6]},{"t":30}]},"p":{"a":1,"k":[{"i":{"x":0.483,"y":1},"o":{"x":0.535,"y":0},"n":"0p483_1_0p535_0","t":0,"s":[48,48,0],"e":[52,48,0],"to":[0.66666668653488,0,0],"ti":[0,0,0]},{"i":{"x":0.483,"y":1},"o":{"x":0.535,"y":0},"n":"0p483_1_0p535_0","t":15,"s":[52,48,0],"e":[48,48,0],"to":[0,0,0],"ti":[0.66666668653488,0,0]},{"t":30}]},"a":{"a":0,"k":[50,50,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":100,"h":100,"ip":0,"op":60,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":0,"nm":"base_normal","refId":"comp_33","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.447],"y":[1]},"o":{"x":[0.484],"y":[0]},"n":["0p447_1_0p484_0"],"t":0,"s":[4],"e":[-2]},{"i":{"x":[0.447],"y":[1]},"o":{"x":[0.484],"y":[0]},"n":["0p447_1_0p484_0"],"t":15,"s":[-2],"e":[4]},{"t":30}]},"p":{"a":0,"k":[50,81.5,0]},"a":{"a":0,"k":[50,81.5,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"w":100,"h":100,"ip":0,"op":300,"st":0,"bm":0,"sr":1}]} -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 23 | 24 | 25 | 26 | 27 | 28 | 38 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | -------------------------------------------------------------------------------- /app/src/main/assets/drink.json: -------------------------------------------------------------------------------- 1 | {"v":"4.10.1","fr":29.9700012207031,"ip":0,"op":33.0000013441176,"w":512,"h":512,"nm":"toast","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":3,"ty":4,"nm":"Layer 4 Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[-10]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":7,"s":[-10],"e":[-13]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":9,"s":[-13],"e":[-11]},{"t":11.0000004480392}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[144.313,265.97,0],"e":[200.313,207.97,0],"to":[9.33333301544189,-9.66666698455811,0],"ti":[-8.16666698455811,8.83333301544189,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":7,"s":[200.313,207.97,0],"e":[197.171,208.011,0],"to":[3.99604797363281,-4.32225608825684,0],"ti":[1.62487041950226,-1.25619912147522,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":9,"s":[197.171,208.011,0],"e":[197.313,208.97,0],"to":[-1.69585418701172,1.31107711791992,0],"ti":[0.25534400343895,-0.08511466532946,0]},{"t":11.0000004480392}],"ix":2},"a":{"a":0,"k":[79.483,80.409,0],"ix":1},"s":{"a":0,"k":[88,88,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-12.78,65.561],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-66.453,-80.159],[-64.921,56.471],[-36.89,78.909],[-26.625,80.159],[29.327,39.683],[66.655,-41.081],[79.233,-80.159]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.976,-91.817],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[92.896,-140.931]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.976,-91.817],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[92.896,-140.931]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-20.241,78.233],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-59.892,-119.281],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.503,-101.278]],"c":true}]},{"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],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-20.241,78.233],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-59.892,-119.281],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.503,-101.278]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-52.463,-138.698],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[76.459,-71.539]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-52.463,-138.698],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[76.459,-71.539]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.031,-94.716],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.737,-103.741]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.031,-94.716],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.737,-103.741]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-59.96,-110.613],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[74.086,-75.056]],"c":true}]},{"t":20.0000008146167}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.808000033509,0.328999986836,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":[79.483,80.409],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":900.000036657751,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Layer 5 Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[-12]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":7,"s":[-12],"e":[-15]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":9,"s":[-15],"e":[-13]},{"t":11.0000004480392}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[120.821,297.273,0],"e":[181.821,243.273,0],"to":[10.1666669845581,-9,0],"ti":[-10.1666669845581,9,0]},{"t":7.00000028511585}],"ix":2},"a":{"a":0,"k":[128.224,237.944,0],"ix":1},"s":{"a":0,"k":[88,88,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.704,0],[0.938,0.25],[0,0],[-1.515,5.687],[-5.687,-1.531],[0,0],[1.531,-5.687]],"o":[[-0.922,0],[0,0],[-5.688,-1.531],[1.531,-5.688],[0,0],[5.687,1.5],[-1.281,4.749]],"v":[[61.242,27.811],[58.476,27.436],[-65.161,-5.688],[-72.708,-18.75],[-59.646,-26.28],[64.008,6.845],[71.539,19.906]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.913999968884,0.929000016755,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":[75.041,443.281],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[96.405,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-7.312,68.576],[-27.937,63.076],[7.343,-68.577],[27.937,-63.046]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.913999968884,0.929000016755,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":[103.732,337.001],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[11.28,-52.812],[-14.718,-26.82],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-0.484,2.359],[0,0]],"o":[[0,0],[-0.641,1.875],[-15.5,72.67],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[20.078,-57.108],[0,0],[0,0]],"v":[[-44.031,-141.275],[-47.234,-131.775],[-74.154,-32.339],[-75.342,117.587],[-47.312,140.025],[-37.047,141.275],[18.906,100.799],[56.234,20.035],[88.108,-95.525],[90.06,-105.337]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.913999968884,0.929000016755,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":[166.137,141.525],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-66.186,6.517],[17.718,-41.952],[66.186,41.953]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.819999964097,0.851000019148,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":[75.795,421.177],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":900.000036657751,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Layer 4 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[11]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":7,"s":[11],"e":[10]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":9,"s":[10],"e":[11]},{"t":11.0000004480392}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[367.313,217.97,0],"e":[310.313,190.97,0],"to":[-9.5,-4.5,0],"ti":[9.83333301544189,4.5,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":7,"s":[310.313,190.97,0],"e":[308.313,190.97,0],"to":[-9.83333301544189,-4.5,0],"ti":[0.33333334326744,0,0]},{"t":9.00000036657752}],"ix":2},"a":{"a":0,"k":[79.483,80.409,0],"ix":1},"s":{"a":0,"k":[-86.814,92,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-12.78,65.561],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-66.453,-80.159],[-64.921,56.471],[-36.89,78.909],[-26.625,80.159],[29.327,39.683],[66.655,-41.081],[79.233,-80.159]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.976,-91.817],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[92.896,-140.931]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":5,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.976,-91.817],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[92.896,-140.931]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-20.241,78.233],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-59.892,-119.281],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.503,-101.278]],"c":true}]},{"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],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-20.241,78.233],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-59.892,-119.281],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.503,-101.278]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-52.463,-138.698],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[76.459,-71.539]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":12,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-52.463,-138.698],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[76.459,-71.539]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.031,-94.716],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.737,-103.741]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":16,"s":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-62.031,-94.716],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[83.737,-103.741]],"c":true}],"e":[{"i":[[0,0],[-13.797,-25.147],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-3.703,12.531]],"o":[[-23.608,75.957],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[4.672,-13.296],[0,0]],"v":[[-59.96,-110.613],[-64.921,56.47],[-36.89,78.909],[-26.625,80.159],[29.327,39.682],[66.655,-41.081],[74.086,-75.056]],"c":true}]},{"t":20.0000008146167}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.808000033509,0.328999986836,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":[79.483,80.409],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":900.000036657751,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Layer 5 Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[13]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":7,"s":[13],"e":[11]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":9,"s":[11],"e":[12]},{"t":11.0000004480392}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":0,"s":[390.821,250.273,0],"e":[324.821,225.273,0],"to":[-11,-4.16666650772095,0],"ti":[11,4.16666650772095,0]},{"t":7.00000028511585}],"ix":2},"a":{"a":0,"k":[128.224,237.944,0],"ix":1},"s":{"a":0,"k":[-88.983,92,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.704,0],[0.938,0.25],[0,0],[-1.515,5.687],[-5.687,-1.531],[0,0],[1.531,-5.687]],"o":[[-0.922,0],[0,0],[-5.688,-1.531],[1.531,-5.688],[0,0],[5.687,1.5],[-1.281,4.749]],"v":[[61.242,27.811],[58.476,27.436],[-65.161,-5.688],[-72.708,-18.75],[-59.646,-26.28],[64.008,6.845],[71.539,19.906]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":4,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.913999968884,0.929000016755,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":[74.473,447.826],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":4,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-7.312,68.576],[-27.937,63.076],[7.343,-68.577],[27.937,-63.046]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.913999968884,0.929000016755,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":[103.732,337.001],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[11.28,-52.812],[-14.718,-26.82],[-12.063,-2.969],[-3.422,0],[-17.562,26.851],[-11.922,33.937],[-0.484,2.359],[0,0]],"o":[[0,0],[-0.641,1.875],[-15.5,72.67],[6.531,11.906],[3.39,0.844],[19.562,0],[12.844,-19.656],[20.078,-57.108],[0,0],[0,0]],"v":[[-44.031,-141.275],[-47.234,-131.775],[-74.154,-32.339],[-75.342,117.587],[-47.312,140.025],[-37.047,141.275],[18.906,100.799],[56.234,20.035],[88.108,-95.525],[90.06,-105.337]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.913999968884,0.929000016755,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":[166.137,141.525],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-66.186,6.517],[17.718,-41.952],[66.186,41.953]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.819999964097,0.851000019148,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":[75.795,421.177],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":900.000036657751,"st":0,"bm":0}]} -------------------------------------------------------------------------------- /app/src/main/assets/countdown.json: -------------------------------------------------------------------------------- 1 | {"v":"4.5.7","fr":30,"ip":0,"op":70,"w":800,"h":600,"ddd":0,"assets":[],"layers":[{"ddd":0,"ind":0,"ty":4,"nm":"Numbers_Pink","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[400,300,0]},"a":{"a":0,"k":[0,0,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":0,"s":[0,0,100],"e":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.667,0.667,0.667]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p667_0p667_0p167_0p167","0p667_0p667_0p167_0p167","0p667_0p667_0p167_0p167"],"t":5,"s":[100,100,100],"e":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.667,1,0.667]},"o":{"x":[0.333,0.333,0.333],"y":[0.333,0,0.333]},"n":["0p667_0p667_0p333_0p333","0p667_1_0p333_0","0p667_0p667_0p333_0p333"],"t":58,"s":[100,100,100],"e":[100,0,100]},{"t":60}],"x":"var $bm_rt;\nvar n, n, t, t, v, amp, freq, decay;\n$bm_rt = n = 0;\nif (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n}\nif (n == 0) {\n $bm_rt = t = 0;\n} else {\n $bm_rt = t = sub(time, key(n).time);\n}\nif (n > 0 && t < 1) {\n v = velocityAtTime(sub(key(n).time, div(thisComp.frameDuration, 10)));\n amp = 0.05;\n freq = 3;\n decay = 8;\n $bm_rt = sum(value, div(mul(mul(v, amp), Math.sin(mul(mul(mul(freq, t), 2), Math.PI))), Math.exp(mul(decay, t))));\n} else {\n $bm_rt = value;\n}"}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"n":"0p833_1_0p333_0","t":16,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":18,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":33,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":35,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":50,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":52,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}],"e":[{"i":[[6.75,0],[0,0],[0,0],[0,-19.125],[-0.312,-15.484],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[0.125,1.75],[0,0],[0,0],[0,16.422],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-9.75,0.094]],"v":[[-17.125,-109.047],[-16.875,-90.75],[-16.875,-89.375],[-17,-75.797],[-16.938,-49.891],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[7.25,-108.969]],"c":true}]},{"t":57}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"fl","c":{"a":0,"k":[0.54,0.07,0.26,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":0,"op":600,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Numbers Red","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[400,300,0]},"a":{"a":0,"k":[0,0,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":2,"s":[0,0,100],"e":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.667,0.667,0.667]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p667_0p667_0p167_0p167","0p667_0p667_0p167_0p167","0p667_0p667_0p167_0p167"],"t":7,"s":[100,100,100],"e":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.667,1,0.667]},"o":{"x":[0.333,0.333,0.333],"y":[0.333,0,0.333]},"n":["0p667_0p667_0p333_0p333","0p667_1_0p333_0","0p667_0p667_0p333_0p333"],"t":60,"s":[100,100,100],"e":[100,0,100]},{"t":62}],"x":"var $bm_rt;\nvar n, n, t, t, v, amp, freq, decay;\n$bm_rt = n = 0;\nif (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n}\nif (n == 0) {\n $bm_rt = t = 0;\n} else {\n $bm_rt = t = sub(time, key(n).time);\n}\nif (n > 0 && t < 1) {\n v = velocityAtTime(sub(key(n).time, div(thisComp.frameDuration, 10)));\n amp = 0.05;\n freq = 3;\n decay = 8;\n $bm_rt = sum(value, div(mul(mul(v, amp), Math.sin(mul(mul(mul(freq, t), 2), Math.PI))), Math.exp(mul(decay, t))));\n} else {\n $bm_rt = value;\n}"}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"n":"0p833_1_0p333_0","t":18,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":20,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":35,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":37,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":52,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":54,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}],"e":[{"i":[[6.75,0],[0,0],[0,0],[0,-19.125],[-0.312,-15.484],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[0.125,1.75],[0,0],[0,0],[0,16.422],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-9.75,0.094]],"v":[[-17.125,-109.047],[-16.875,-90.75],[-16.875,-89.375],[-17,-75.797],[-16.938,-49.891],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[7.25,-108.969]],"c":true}]},{"t":59}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"fl","c":{"a":0,"k":[0.79,0.16,0.24,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":0,"op":600,"st":0,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Numbers Orange","ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[400,300,0]},"a":{"a":0,"k":[0,0,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":3,"s":[0,0,100],"e":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.667,0.667,0.667]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0p667_0p667_0p167_0p167","0p667_0p667_0p167_0p167","0p667_0p667_0p167_0p167"],"t":8,"s":[100,100,100],"e":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[0.667,1,0.667]},"o":{"x":[0.333,0.333,0.333],"y":[0.333,0,0.333]},"n":["0p667_0p667_0p333_0p333","0p667_1_0p333_0","0p667_0p667_0p333_0p333"],"t":61,"s":[100,100,100],"e":[100,0,100]},{"t":63}],"x":"var $bm_rt;\nvar n, n, t, t, v, amp, freq, decay;\n$bm_rt = n = 0;\nif (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n}\nif (n == 0) {\n $bm_rt = t = 0;\n} else {\n $bm_rt = t = sub(time, key(n).time);\n}\nif (n > 0 && t < 1) {\n v = velocityAtTime(sub(key(n).time, div(thisComp.frameDuration, 10)));\n amp = 0.05;\n freq = 3;\n decay = 8;\n $bm_rt = sum(value, div(mul(mul(v, amp), Math.sin(mul(mul(mul(freq, t), 2), Math.PI))), Math.exp(mul(decay, t))));\n} else {\n $bm_rt = value;\n}"}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.333,"y":0},"n":"0p833_1_0p333_0","t":19,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":21,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-11,-18.25],[45,0.25],[0,0],[13.125,-48.875],[-7.75,47.875],[0,0],[-90.5,0],[-3.25,36.5],[0,0],[6.75,51.5]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[11,18.25],[0,16],[0,0],[-13.54,50.419],[-25.75,-0.5],[0,0],[38.5,0.5],[4.592,-51.568],[0,0],[-6.75,-51.5]],"v":[[-27.25,-110],[-72.5,-39.75],[-37.5,-40],[-17.5,-79.75],[30.25,-68],[-14.312,-18.75],[-14.062,7.25],[40.625,54.875],[-41.5,38.75],[-76.75,38.25],[5.5,113.375],[78.25,53.25],[38.75,-8],[68.5,-66.25]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":36,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":38,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-17.5,8.75],[-10.25,-17.5],[34.812,-34],[0,0],[14.532,-23.377],[0.25,-14],[0,0],[-90.5,0],[-0.5,22.75],[0,0],[23.25,72.75]],"o":[[-48,23.25],[0,0],[0,0],[17.5,-8.75],[6.216,10.612],[-21.688,16.5],[0,0],[-14.375,23.125],[2.75,0.25],[0,0],[2,-0.125],[0.028,-1.274],[15,-33],[-17.816,-55.746]],"v":[[-28,-110],[-71.25,-31],[-36.25,-31.25],[-18.25,-79.75],[31.813,-69.75],[15.938,-4],[-21.563,22],[-61.375,61.188],[-74,108.75],[-26.25,109.25],[75.125,109.125],[76.688,78.5],[-32.75,78],[73,-65]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":53,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}],"e":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":55,"s":[{"i":[[21.75,-10.75],[0,0],[0,0],[-19.125,0.109],[-8.066,-0.096],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[-16.125,6.75],[0,0],[0,0],[19.565,-0.112],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-5.25,14]],"v":[[-32.125,-79.5],[-70.75,-72.5],[-70.375,-46],[-38.75,-46.047],[-17.438,-46.016],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[-6,-109.375]],"c":true}],"e":[{"i":[[6.75,0],[0,0],[0,0],[0,-19.125],[-0.312,-15.484],[-0.062,0.125],[0,0],[0,-23.075],[-0.375,-14.438],[0,0],[-54.125,0],[-0.5,22.75],[0,0],[-0.375,-0.125]],"o":[[0.125,1.75],[0,0],[0,0],[0,16.422],[-0.062,0.016],[-0.062,19.75],[0,0],[0,15.562],[2.875,-0.188],[0,0],[0.062,-0.125],[0.028,-1.275],[-0.5,0],[-9.75,0.094]],"v":[[-17.125,-109.047],[-16.875,-90.75],[-16.875,-89.375],[-17,-75.797],[-16.938,-49.891],[-16.938,-45.875],[-16.875,59.75],[-16.813,87.688],[-16.75,109.063],[4.187,108.938],[23.188,109],[23.438,78.5],[22.75,-109],[7.25,-108.969]],"c":true}]},{"t":60}]},"nm":"Path 1","mn":"ADBE Vector Shape - Group"},{"ty":"st","c":{"a":0,"k":[1,1,1,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":0},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"fl","c":{"a":0,"k":[1,0.42,0.25,1]},"o":{"a":0,"k":100},"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":0,"op":600,"st":0,"bm":0,"sr":1}]} --------------------------------------------------------------------------------