diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..aa724b7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+*.iml
+.gradle
+/local.properties
+/.idea/caches
+/.idea/libraries
+/.idea/modules.xml
+/.idea/workspace.xml
+/.idea/navEditor.xml
+/.idea/assetWizardSettings.xml
+.DS_Store
+/build
+/captures
+.externalNativeBuild
+.cxx
+local.properties
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 0000000..36e51f1
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+Genie
\ No newline at end of file
diff --git a/.idea/AndroidProjectSystem.xml b/.idea/AndroidProjectSystem.xml
new file mode 100644
index 0000000..4a53bee
--- /dev/null
+++ b/.idea/AndroidProjectSystem.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/appInsightsSettings.xml b/.idea/appInsightsSettings.xml
new file mode 100644
index 0000000..5e5ed7b
--- /dev/null
+++ b/.idea/appInsightsSettings.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 0000000..b86273d
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml
new file mode 100644
index 0000000..2652c7c
--- /dev/null
+++ b/.idea/deploymentTargetSelector.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/deviceManager.xml b/.idea/deviceManager.xml
new file mode 100644
index 0000000..91f9558
--- /dev/null
+++ b/.idea/deviceManager.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/dictionaries/project.xml b/.idea/dictionaries/project.xml
new file mode 100644
index 0000000..41a36bb
--- /dev/null
+++ b/.idea/dictionaries/project.xml
@@ -0,0 +1,12 @@
+
+
+
+ aksi
+ komunikasi
+ reaksi
+ tentang
+ tiet
+ tipe
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
new file mode 100644
index 0000000..02c4aa5
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/migrations.xml b/.idea/migrations.xml
new file mode 100644
index 0000000..f8051a6
--- /dev/null
+++ b/.idea/migrations.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..b2c751a
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml
new file mode 100644
index 0000000..16660f1
--- /dev/null
+++ b/.idea/runConfigurations.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
new file mode 100644
index 0000000..9839d05
--- /dev/null
+++ b/app/build.gradle.kts
@@ -0,0 +1,151 @@
+import com.android.build.api.artifact.SingleArtifact
+import com.android.build.api.variant.BuiltArtifactsLoader
+import java.nio.file.Files
+import java.nio.file.StandardCopyOption
+import java.time.LocalDateTime
+import java.time.format.DateTimeFormatter
+import javax.xml.parsers.DocumentBuilderFactory
+
+plugins {
+ alias(libs.plugins.android.application)
+ alias(libs.plugins.google.gms.google.services)
+}
+
+fun readStringResource(projectDir: File, resName: String): String {
+ val xml = File(projectDir, "src/main/res/values/strings.xml")
+ if (!xml.exists()) return "app"
+
+ val doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(xml)
+ val nodes = doc.getElementsByTagName("string")
+ for (i in 0 until nodes.length) {
+ val n = nodes.item(i)
+ val nameAttr = n.attributes?.getNamedItem("name")?.nodeValue
+ if (nameAttr == resName) {
+ return n.textContent.trim()
+ }
+ }
+ return "app"
+}
+
+android {
+ namespace = "com.amz.genie"
+ compileSdk = 36
+
+ defaultConfig {
+ applicationId = "com.amz.genie"
+ minSdk = 26
+ targetSdk = 36
+ versionCode = 57
+ versionName = "0.5.7"
+
+ testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
+ vectorDrawables.useSupportLibrary = true
+ }
+
+ buildTypes {
+ release {
+ isMinifyEnabled = false
+ proguardFiles(
+ getDefaultProguardFile("proguard-android-optimize.txt"),
+ "proguard-rules.pro"
+ )
+ }
+ }
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_11
+ targetCompatibility = JavaVersion.VERSION_11
+ }
+}
+
+/**
+ * Task: copy APK artifact -> output folder, rename with timestamp
+ */
+abstract class CopyRenameApkTask : DefaultTask() {
+
+ @get:InputDirectory
+ @get:PathSensitive(PathSensitivity.RELATIVE)
+ abstract val inputApkFolder: DirectoryProperty
+
+ @get:OutputDirectory
+ abstract val outputDir: DirectoryProperty
+
+ @get:Internal
+ abstract val builtArtifactsLoader: Property
+
+ @get:Input
+ abstract val appName: Property
+
+ @TaskAction
+ fun run() {
+ val outDirFile = outputDir.get().asFile
+ outDirFile.deleteRecursively()
+ outDirFile.mkdirs()
+
+ val builtArtifacts = builtArtifactsLoader.get().load(inputApkFolder.get())
+ ?: error("Cannot load APK artifacts from ${inputApkFolder.get().asFile}")
+
+ val ts = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMdd-HHmmss"))
+ val prefix = appName.get()
+
+ builtArtifacts.elements.forEach { artifact ->
+ val src = File(artifact.outputFile)
+
+ // Kalau ada splits, bisa lebih dari 1 apk. Kita bedakan pakai versionCode/variantName optional.
+ val name = buildString {
+ append(prefix).append("-").append(ts)
+ artifact.versionCode?.let { append("-").append(it) }
+ append(".apk")
+ }
+
+ val dst = File(outDirFile, name)
+ Files.copy(src.toPath(), dst.toPath(), StandardCopyOption.REPLACE_EXISTING)
+ }
+ }
+}
+
+androidComponents {
+ onVariants(selector().withBuildType("debug")) { variant ->
+ val t = tasks.register("copyRename${variant.name.replaceFirstChar { it.uppercase() }}Apk", CopyRenameApkTask::class.java) {
+ val label = readStringResource(project.projectDir, "app_name")
+ appName.set(label)
+ outputDir.set(layout.buildDirectory.dir(variant.name))
+ builtArtifactsLoader.set(variant.artifacts.getBuiltArtifactsLoader())
+ }
+
+ // Listen ke artifact APK: task otomatis jalan saat APK dibuat (assembleDebug, dll)
+ variant.artifacts
+ .use(t)
+ .wiredWith { it.inputApkFolder }
+ .toListenTo(SingleArtifact.APK)
+ }
+}
+
+dependencies {
+ implementation(libs.androidx.core.ktx)
+ implementation(libs.androidx.appcompat)
+ implementation(libs.material)
+ implementation(libs.androidx.activity)
+ implementation(libs.androidx.constraintlayout)
+ testImplementation(libs.junit)
+ androidTestImplementation(libs.androidx.junit)
+ androidTestImplementation(libs.androidx.espresso.core)
+
+ implementation(libs.lottie)
+ implementation(libs.sdp.android)
+ implementation(libs.retrofit)
+ implementation(libs.converter.gson)
+ implementation(libs.okhttp)
+ implementation(libs.logging.interceptor)
+ implementation(libs.glide)
+ implementation(libs.androidx.swiperefreshlayout)
+
+ implementation(platform(libs.firebase.bom))
+ implementation(libs.firebase.analytics)
+ implementation(libs.firebase.messaging)
+ implementation(libs.firebase.auth)
+
+ implementation(libs.androidx.emoji2)
+ implementation(libs.androidx.emoji2.views.helper)
+ implementation(libs.androidx.emoji2.emojipicker)
+
+}
\ No newline at end of file
diff --git a/app/debug/app-debug.apk b/app/debug/app-debug.apk
new file mode 100644
index 0000000..534b191
Binary files /dev/null and b/app/debug/app-debug.apk differ
diff --git a/app/debug/output-metadata.json b/app/debug/output-metadata.json
new file mode 100644
index 0000000..9f89c79
--- /dev/null
+++ b/app/debug/output-metadata.json
@@ -0,0 +1,21 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "APK",
+ "kind": "Directory"
+ },
+ "applicationId": "com.amz.genie",
+ "variantName": "debug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 57,
+ "versionName": "0.5.7",
+ "outputFile": "app-debug.apk"
+ }
+ ],
+ "elementType": "File",
+ "minSdkVersionForDexing": 26
+}
\ No newline at end of file
diff --git a/app/google-services.json b/app/google-services.json
new file mode 100644
index 0000000..5007df6
--- /dev/null
+++ b/app/google-services.json
@@ -0,0 +1,29 @@
+{
+ "project_info": {
+ "project_number": "791153239007",
+ "project_id": "genie-11548",
+ "storage_bucket": "genie-11548.firebasestorage.app"
+ },
+ "client": [
+ {
+ "client_info": {
+ "mobilesdk_app_id": "1:791153239007:android:a35521285c9d4102f05a6a",
+ "android_client_info": {
+ "package_name": "com.amz.genie"
+ }
+ },
+ "oauth_client": [],
+ "api_key": [
+ {
+ "current_key": "AIzaSyBN5-kXCfqw_7o5O1dzA-oWiA2SH4wqQAY"
+ }
+ ],
+ "services": {
+ "appinvite_service": {
+ "other_platform_oauth_client": []
+ }
+ }
+ }
+ ],
+ "configuration_version": "1"
+}
\ No newline at end of file
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/app/src/androidTest/java/com/amz/genie/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/amz/genie/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..3a9af05
--- /dev/null
+++ b/app/src/androidTest/java/com/amz/genie/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package com.amz.genie
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("com.amz.genie", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..0607cba
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/assets/lottie/loader_circle.json b/app/src/main/assets/lottie/loader_circle.json
new file mode 100644
index 0000000..40911a0
--- /dev/null
+++ b/app/src/main/assets/lottie/loader_circle.json
@@ -0,0 +1 @@
+{"v":"5.7.1","fr":30,"ip":0,"op":90,"w":500,"h":500,"nm":"Loading3","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[100]},{"t":60,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":60,"s":[360]}],"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2},"a":{"a":0,"k":[53.5,43.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":0,"k":[84,84],"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.137254901961,0.666666666667,0.462745098039,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":48,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[53.5,43.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":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"t":30,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.69],"y":[0]},"t":0,"s":[0]},{"t":60,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[100]},{"t":72,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[0]},{"t":72,"s":[360]}],"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2},"a":{"a":0,"k":[53.5,43.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":0,"k":[217,217],"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.137254901961,0.666666666667,0.462745098039,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":48,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[53.5,43.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":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[0]},{"t":42,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.69],"y":[0]},"t":12,"s":[0]},{"t":72,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":12,"op":73,"st":12,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[100]},{"t":89,"s":[0]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[0]},{"t":89,"s":[360]}],"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2},"a":{"a":0,"k":[53.5,43.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":0,"k":[351,351],"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.137254901961,0.666666666667,0.462745098039,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":48,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[53.5,43.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":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":29,"s":[0]},{"t":59,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.69],"y":[0]},"t":29,"s":[0]},{"t":89,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":29,"op":90,"st":29,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/app/src/main/assets/lottie/loader_send.json b/app/src/main/assets/lottie/loader_send.json
new file mode 100644
index 0000000..4b7973b
--- /dev/null
+++ b/app/src/main/assets/lottie/loader_send.json
@@ -0,0 +1 @@
+{"v":"5.8.1","fr":30,"ip":0,"op":129,"w":300,"h":300,"nm":"final","ddd":0,"assets":[{"id":"comp_0","nm":"dash_main","fr":30,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"dash3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[270.647,163.706,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-17.172,9.249]],"o":[[17.172,-9.249],[0,0]],"v":[[-25.758,13.873],[25.758,-13.873]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.0196,0.298,0.2667,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3.906,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":5,"s":[100]},{"t":10,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":15,"s":[100]},{"t":20,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":210,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"dash1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[345.471,187.706,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-16.701,10.074]],"o":[[16.701,-10.074],[0,0]],"v":[[-25.052,15.11],[25.052,-15.11]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.0196,0.298,0.2667,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3.906,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[100]},{"t":5,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":10,"s":[100]},{"t":15,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":210,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"dash2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[190.529,237.824,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-16.701,10.074]],"o":[[16.701,-10.074],[0,0]],"v":[[-25.052,15.11],[25.052,-15.11]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.0196,0.298,0.2667,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3.906,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":5,"s":[100]},{"t":10,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":15,"s":[100]},{"t":20,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":210,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"dash","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[202.882,307.353,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-16.701,10.074]],"o":[[16.701,-10.074],[0,0]],"v":[[-25.052,15.11],[25.052,-15.11]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.0196,0.298,0.2667,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":3.906,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":15,"s":[100]},{"t":20,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[100]},{"t":30,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":210,"st":0,"bm":0}]},{"id":"comp_1","nm":"plane","fr":30,"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"OBJECTS 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[251.359,239.046,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":6,"s":[{"i":[[-0.066,-0.043],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[-0.066,0.144],[0,0],[0.385,-0.362],[0,0],[0,0],[-0.17,-0.09]],"v":[[-23.167,18.685],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-28.752,28.982]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-27.102,14.174],[37.386,-41.355],[36.857,-42.056],[-37.53,14.936],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":18,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-13.977,30.361],[41.636,-36.012],[41.607,-36.056],[-14.03,30.311],[-22.689,42.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-27.102,14.174],[37.386,-41.355],[36.857,-42.056],[-37.53,14.936],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":30,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":36,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":98,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-27.102,14.174],[37.386,-41.355],[36.857,-42.056],[-37.53,14.936],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":104,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-13.977,30.361],[41.636,-36.012],[41.607,-36.056],[-14.03,30.311],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-27.102,14.174],[37.386,-41.355],[36.857,-42.056],[-37.53,14.936],[-25.439,39.419]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-25.439,39.419]],"c":true}]},{"t":122,"s":[{"i":[[-1.37,-0.258],[0,0],[0,0],[0.454,-0.271],[0,0],[0,0]],"o":[[1.112,0.209],[0,0],[0.385,-0.362],[0,0],[0,0],[0.486,1.487]],"v":[[-22.355,42.123],[-19.602,12.174],[37.386,-41.355],[36.857,-42.056],[-37.53,2.436],[-25.439,39.419]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.0196,0.298,0.2667,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8416,0.9184,0.9094,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":210,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"OBJECTS 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[319.44,164.16,0],"ix":2,"l":2},"a":{"a":0,"k":[73,-66,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[3.076,-1.216],[28.9,-11.856],[-3.929,-1.252],[0,0],[0,0],[-1.37,-0.258],[0,0],[-16.454,-12.15],[-0.306,1.575],[-4.19,21.594]],"o":[[-23.656,9.357],[-3.816,1.565],[0,0],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[2.763,2.04],[4.902,-25.261],[0.63,-3.247]],"v":[[62.963,-59.982],[-65.951,-7.48],[-65.608,0.811],[-32.611,11.322],[-20.52,48.305],[-17.436,51.009],[-14.684,21.06],[36.458,58.934],[47.261,54.73],[68.607,-55.288]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":6,"s":[{"i":[[3.076,-1.216],[23.76,-19.93],[-12.082,5.029],[0,0],[0,0],[0.246,0.082],[0,0],[0.827,-20.437],[-2.876,6.623],[-10.047,23.316]],"o":[[-23.656,9.357],[-9.047,7.589],[8.195,-3.411],[0,0],[0.486,1.487],[0.496,-0.168],[0,0],[-0.648,16.031],[10.049,-23.14],[1.309,-3.038]],"v":[[64.963,-58.794],[-67.201,11.77],[-41.483,10.811],[-32.611,11.322],[-23.52,38.555],[-19.436,29.509],[-14.684,21.06],[12.458,44.059],[23.511,53.48],[67.482,-55.851]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[66.213,-57.544],[-45.201,25.77],[-35.358,23.561],[-26.486,21.572],[-20.52,48.305],[-17.436,51.008],[-22.184,23.06],[-18.042,34.559],[-11.989,55.48],[67.232,-56.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":18,"s":[{"i":[[0.472,-0.459],[1.76,-1.867],[5.851,-6.204],[0,0],[0,0],[-1.37,-0.258],[0,0],[2.164,-3.094],[-1.076,0.11],[-0.704,0.909]],"o":[[-20.684,28.353],[-8.306,8.809],[-3.27,3.466],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[-1.097,1.568],[11.924,-14.265],[0.515,-0.622]],"v":[[67.619,-56.013],[-3.138,35.457],[-11.733,45.561],[-15.861,49.072],[-17.145,50.117],[-17.436,51.008],[-13.809,47.372],[-10.479,43.747],[-16.489,50.48],[67.857,-56.257]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[66.213,-57.544],[-60.701,11.27],[-34.983,24.811],[-26.486,21.572],[-20.52,48.305],[-17.436,51.008],[-22.184,23.06],[-15.792,33.559],[9.011,49.98],[67.232,-56.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":30,"s":[{"i":[[3.076,-1.216],[23.76,-19.93],[-12.082,5.029],[0,0],[0,0],[-1.37,-0.258],[0,0],[0.827,-20.437],[-2.876,6.623],[-10.047,23.316]],"o":[[-23.656,9.357],[-9.047,7.589],[8.195,-3.411],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[-0.648,16.031],[10.049,-23.14],[1.309,-3.038]],"v":[[64.963,-58.794],[-63.201,18.27],[-41.483,10.811],[-32.611,11.322],[-20.52,48.305],[-17.436,51.009],[-14.684,21.06],[12.458,44.059],[17.011,54.48],[67.482,-55.851]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":36,"s":[{"i":[[3.076,-1.216],[28.9,-11.856],[-3.929,-1.252],[0,0],[0,0],[-1.37,-0.258],[0,0],[-16.454,-12.15],[-0.306,1.575],[-4.19,21.594]],"o":[[-23.656,9.357],[-3.816,1.565],[0,0],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[2.763,2.04],[4.902,-25.261],[0.63,-3.247]],"v":[[62.963,-59.982],[-65.951,-7.48],[-65.608,0.811],[-32.611,11.322],[-20.52,48.305],[-17.436,51.009],[-14.684,21.06],[36.458,58.934],[47.261,54.73],[68.607,-55.288]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[3.076,-1.216],[28.9,-11.856],[-3.929,-1.252],[0,0],[0,0],[-1.37,-0.258],[0,0],[-16.454,-12.15],[-0.306,1.575],[-4.19,21.594]],"o":[[-23.656,9.357],[-3.816,1.565],[0,0],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[2.763,2.04],[4.902,-25.261],[0.63,-3.247]],"v":[[62.963,-59.982],[-65.951,-7.48],[-65.608,0.811],[-32.611,11.322],[-20.52,48.305],[-17.436,51.009],[-14.684,21.06],[36.458,58.934],[47.261,54.73],[68.607,-55.288]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[3.076,-1.216],[23.76,-19.93],[-12.082,5.029],[0,0],[0,0],[-1.37,-0.258],[0,0],[0.827,-20.437],[-2.876,6.623],[-10.047,23.316]],"o":[[-23.656,9.357],[-9.047,7.589],[8.195,-3.411],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[-0.648,16.031],[10.049,-23.14],[1.309,-3.038]],"v":[[64.963,-58.794],[-67.201,11.77],[-41.483,10.811],[-32.611,11.322],[-20.52,48.305],[-17.436,51.009],[-14.684,21.06],[12.458,44.059],[23.511,53.48],[67.482,-55.851]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":98,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[66.213,-57.544],[-45.201,25.77],[-35.358,23.561],[-26.486,21.572],[-20.52,48.305],[-17.436,51.008],[-22.184,23.06],[-18.042,34.559],[-11.989,55.48],[67.232,-56.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":104,"s":[{"i":[[0.472,-0.459],[1.76,-1.867],[5.851,-6.204],[0,0],[0,0],[-1.37,-0.258],[0,0],[2.164,-3.094],[-1.076,0.11],[-0.704,0.909]],"o":[[-20.684,28.353],[-8.306,8.809],[-3.27,3.466],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[-1.097,1.568],[11.924,-14.265],[0.515,-0.622]],"v":[[67.619,-56.013],[-3.138,35.457],[-11.733,45.561],[-15.861,49.072],[-17.145,50.117],[-17.436,51.008],[-13.809,47.372],[-10.479,43.747],[-16.489,50.48],[67.857,-56.257]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[66.213,-57.544],[-60.701,11.27],[-34.983,24.811],[-26.486,21.572],[-20.52,48.305],[-17.436,51.008],[-22.184,23.06],[-15.792,33.559],[9.011,49.98],[67.232,-56.226]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[3.076,-1.216],[23.76,-19.93],[-12.082,5.029],[0,0],[0,0],[-1.37,-0.258],[0,0],[0.827,-20.437],[-2.876,6.623],[-10.047,23.316]],"o":[[-23.656,9.357],[-9.047,7.589],[8.195,-3.411],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[-0.648,16.031],[10.049,-23.14],[1.309,-3.038]],"v":[[64.963,-58.794],[-63.201,18.27],[-41.483,10.811],[-32.611,11.322],[-20.52,48.305],[-17.436,51.009],[-14.684,21.06],[12.458,44.059],[17.011,54.48],[67.482,-55.851]],"c":true}]},{"t":122,"s":[{"i":[[3.076,-1.216],[28.9,-11.856],[-3.929,-1.252],[0,0],[0,0],[-1.37,-0.258],[0,0],[-16.454,-12.15],[-0.306,1.575],[-4.19,21.594]],"o":[[-23.656,9.357],[-3.816,1.565],[0,0],[0,0],[0.486,1.487],[1.112,0.209],[0,0],[2.763,2.04],[4.902,-25.261],[0.63,-3.247]],"v":[[62.963,-59.982],[-65.951,-7.48],[-65.608,0.811],[-32.611,11.322],[-20.52,48.305],[-17.436,51.009],[-14.684,21.06],[36.458,58.934],[47.261,54.73],[68.607,-55.288]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.0196,0.298,0.2667,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":210,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"OBJECTS","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[241.129,258.78,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-15.171,19.802],[-8.924,21.614],[27.3,-8.289],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":6,"s":[{"i":[[0,0],[0,0],[-0.205,-0.145],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-19.171,8.052],[-19.924,-13.886],[27.3,-8.289],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-29.3,-6.298],[-15.171,19.802],[-8.924,21.614],[13.3,-17.789],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":18,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-8.3,14.577],[-13.046,20.427],[-10.299,20.864],[6.425,-0.789],[6.682,-0.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":24,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-29.3,-6.298],[-15.171,19.802],[-8.924,21.614],[13.3,-17.789],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":30,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-15.171,19.802],[-8.924,21.614],[27.3,-8.289],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":36,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-15.171,19.802],[-8.924,21.614],[27.3,-8.289],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-15.171,19.802],[-8.924,21.614],[27.3,-8.289],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-15.171,19.802],[-8.924,21.614],[27.3,-8.289],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":98,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-29.3,-6.298],[-15.171,19.802],[-8.924,21.614],[13.3,-17.789],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":104,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-8.3,14.577],[-13.046,20.427],[-10.299,20.864],[6.425,-0.789],[6.682,-0.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":110,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-29.3,-6.298],[-15.171,19.802],[-8.924,21.614],[13.3,-17.789],[-11.193,-22.485]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":116,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-15.171,19.802],[-8.924,21.614],[27.3,-8.289],[-11.193,-22.485]],"c":true}]},{"t":122,"s":[{"i":[[0,0],[0,0],[-2.139,1.766],[0,0],[0,-0.819]],"o":[[0,0],[0.862,2.637],[0,0],[0,0],[0,0.819]],"v":[[-27.3,-17.298],[-15.171,19.802],[-8.924,21.614],[27.3,-8.289],[-11.193,-22.485]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.0196,0.298,0.2667,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.703,0.857,0.839,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":210,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"dash_main","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[250,250,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":500,"h":500,"ip":129,"op":129.30303030303,"st":129,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"dash_main","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[250,250,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":500,"h":500,"ip":86,"op":129,"st":86,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"dash_main","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[250,250,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":500,"h":500,"ip":43,"op":86,"st":43,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"dash_main","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[150,150,0],"ix":2,"l":2},"a":{"a":0,"k":[250,250,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":500,"h":500,"ip":0,"op":43,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"plane","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[215,67,0],"to":[1.625,-0.229,0],"ti":[0.01,1.724,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":4,"s":[230,63,0],"to":[-0.018,-3.038,0],"ti":[3.188,-2.417,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":9,"s":[205,60,0],"to":[-2.062,1.563,0],"ti":[-4.167,-0.5,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":21,"s":[215,67,0],"to":[4.167,0.5,0],"ti":[1.667,1.167,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":32,"s":[230,63,0],"to":[-1.667,-1.167,0],"ti":[2.5,-0.667,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":37,"s":[205,60,0],"to":[-2.5,0.667,0],"ti":[-1.667,-1.167,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":43,"s":[215,67,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":49,"s":[215,67,0],"to":[2.5,-0.667,0],"ti":[1.667,1.167,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":53,"s":[230,63,0],"to":[-1.667,-1.167,0],"ti":[2.5,-0.667,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[205,60,0],"to":[-2.5,0.667,0],"ti":[-4.167,-0.5,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":70,"s":[215,67,0],"to":[4.167,0.5,0],"ti":[1.667,1.167,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":81,"s":[230,63,0],"to":[-1.667,-1.167,0],"ti":[2.5,-0.667,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[205,60,0],"to":[-2.5,0.667,0],"ti":[-1.667,-1.167,0]},{"i":{"x":0.667,"y":0.667},"o":{"x":0.333,"y":0.333},"t":92,"s":[215,67,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":98,"s":[215,67,0],"to":[2.5,-0.667,0],"ti":[1.667,1.167,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":102,"s":[230,63,0],"to":[-1.667,-1.167,0],"ti":[2.5,-0.667,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":107,"s":[205,60,0],"to":[-2.5,0.667,0],"ti":[-4.167,-0.5,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":119,"s":[215,67,0],"to":[4.167,0.5,0],"ti":[1.667,1.167,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":130,"s":[230,63,0],"to":[-1.667,-1.167,0],"ti":[2.5,-0.667,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":135,"s":[205,60,0],"to":[-2.5,0.667,0],"ti":[-1.667,-1.167,0]},{"t":141,"s":[215,67,0]}],"ix":2,"l":2},"a":{"a":0,"k":[315,167,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"w":500,"h":500,"ip":0,"op":129,"st":0,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/app/src/main/assets/lottie/loading.json b/app/src/main/assets/lottie/loading.json
new file mode 100644
index 0000000..d019fe0
--- /dev/null
+++ b/app/src/main/assets/lottie/loading.json
@@ -0,0 +1 @@
+{"v":"5.5.8","fr":60,"ip":20,"op":90,"w":250,"h":200,"nm":"loading","ddd":0,"assets":[],"fonts":{"list":[{"fName":"SegoeUIHistoric","fFamily":"Segoe UI Historic","fStyle":"Regular","ascent":78.0723145231605}]},"layers":[{"ddd":0,"ind":1,"ty":5,"nm":"g","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.898]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.456]},"t":1,"s":[81.741]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[1.522]},"t":2,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":11,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":16,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":18,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":22,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":23,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":28,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":29,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":31,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":32,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":33,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":35,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":36,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":37,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":39,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":42,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":43,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":44,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":47,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":49,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":52,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":53,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":57,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":58,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":64,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":112,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":113,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":114,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":115,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":116,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":122,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":126,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":128,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":129,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":137,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":139,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":141,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":143,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":147,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":149,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":150,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":151,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":154,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":158,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":162,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":163,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":164,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"t":179,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":90,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":1,"y":0},"o":{"x":0.009,"y":1},"t":19,"s":[218.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.083},"t":20,"s":[218.063,107.352,0],"to":[-2.108,0,0],"ti":[4.065,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":21,"s":[205.413,107.352,0],"to":[-4.065,0,0],"ti":[3.768,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":22,"s":[193.671,107.352,0],"to":[-3.768,0,0],"ti":[3.48,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":23,"s":[182.808,107.352,0],"to":[-3.48,0,0],"ti":[3.203,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":24,"s":[172.79,107.352,0],"to":[-3.203,0,0],"ti":[2.937,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":25,"s":[163.587,107.352,0],"to":[-2.937,0,0],"ti":[2.681,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":26,"s":[155.167,107.352,0],"to":[-2.681,0,0],"ti":[2.436,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":27,"s":[147.5,107.352,0],"to":[-2.436,0,0],"ti":[2.201,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":28,"s":[140.554,107.352,0],"to":[-2.201,0,0],"ti":[1.976,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":29,"s":[134.297,107.352,0],"to":[-1.976,0,0],"ti":[1.762,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":30,"s":[128.699,107.352,0],"to":[-1.762,0,0],"ti":[1.558,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":31,"s":[123.727,107.352,0],"to":[-1.558,0,0],"ti":[1.365,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":32,"s":[119.351,107.352,0],"to":[-1.365,0,0],"ti":[1.182,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":33,"s":[115.539,107.352,0],"to":[-1.182,0,0],"ti":[1.009,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":34,"s":[112.261,107.352,0],"to":[-1.009,0,0],"ti":[0.847,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.184},"t":35,"s":[109.484,107.352,0],"to":[-0.847,0,0],"ti":[0.696,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.186},"t":36,"s":[107.177,107.352,0],"to":[-0.696,0,0],"ti":[0.555,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":37,"s":[105.31,107.352,0],"to":[-0.555,0,0],"ti":[0.424,0,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.196},"t":38,"s":[103.85,107.352,0],"to":[-0.424,0,0],"ti":[0.304,0,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.206},"t":39,"s":[102.767,107.352,0],"to":[-0.304,0,0],"ti":[0.194,0,0]},{"i":{"x":0.833,"y":0.889},"o":{"x":0.167,"y":0.228},"t":40,"s":[102.029,107.352,0],"to":[-0.194,0,0],"ti":[0.094,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.333},"t":41,"s":[101.605,107.352,0],"to":[-0.094,0,0],"ti":[0.005,0,0]},{"i":{"x":0.833,"y":0.668},"o":{"x":0.167,"y":0.191},"t":42,"s":[101.463,107.352,0],"to":[-0.005,0,0],"ti":[-0.073,0,0]},{"i":{"x":0.833,"y":0.786},"o":{"x":0.167,"y":0.111},"t":43,"s":[101.572,107.352,0],"to":[0.073,0,0],"ti":[-0.141,0,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.136},"t":44,"s":[101.901,107.352,0],"to":[0.141,0,0],"ti":[-0.199,0,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.147},"t":45,"s":[102.419,107.352,0],"to":[0.199,0,0],"ti":[-0.246,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.154},"t":46,"s":[103.094,107.352,0],"to":[0.246,0,0],"ti":[-0.283,0,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.158},"t":47,"s":[103.895,107.352,0],"to":[0.283,0,0],"ti":[-0.309,0,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.161},"t":48,"s":[104.791,107.352,0],"to":[0.309,0,0],"ti":[-0.325,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.164},"t":49,"s":[105.75,107.352,0],"to":[0.325,0,0],"ti":[-0.33,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":50,"s":[106.741,107.352,0],"to":[0.33,0,0],"ti":[-0.325,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.169},"t":51,"s":[107.733,107.352,0],"to":[0.325,0,0],"ti":[-0.31,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.172},"t":52,"s":[108.694,107.352,0],"to":[0.31,0,0],"ti":[-0.284,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.176},"t":53,"s":[109.593,107.352,0],"to":[0.284,0,0],"ti":[-0.248,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.182},"t":54,"s":[110.398,107.352,0],"to":[0.248,0,0],"ti":[-0.201,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.191},"t":55,"s":[111.08,107.352,0],"to":[0.201,0,0],"ti":[-0.144,0,0]},{"i":{"x":0.833,"y":0.389},"o":{"x":0.167,"y":0.213},"t":56,"s":[111.605,107.352,0],"to":[0.144,0,0],"ti":[-0.076,0,0]},{"i":{"x":0.833,"y":0.336},"o":{"x":0.167,"y":0.096},"t":57,"s":[111.943,107.352,0],"to":[0.076,0,0],"ti":[-2.507,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.095},"t":58,"s":[112.063,107.352,0],"to":[2.507,0,0],"ti":[-4.761,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":59,"s":[126.983,107.352,0],"to":[4.761,0,0],"ti":[-4.345,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":60,"s":[140.63,107.352,0],"to":[4.345,0,0],"ti":[-3.947,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":61,"s":[153.055,107.352,0],"to":[3.947,0,0],"ti":[-3.567,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":62,"s":[164.313,107.352,0],"to":[3.567,0,0],"ti":[-3.203,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":63,"s":[174.455,107.352,0],"to":[3.203,0,0],"ti":[-2.858,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":64,"s":[183.533,107.352,0],"to":[2.858,0,0],"ti":[-2.529,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":65,"s":[191.6,107.352,0],"to":[2.529,0,0],"ti":[-2.218,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":66,"s":[198.708,107.352,0],"to":[2.218,0,0],"ti":[-1.925,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":67,"s":[204.911,107.352,0],"to":[1.925,0,0],"ti":[-1.649,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":68,"s":[210.259,107.352,0],"to":[1.649,0,0],"ti":[-1.391,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.183},"t":69,"s":[214.807,107.352,0],"to":[1.391,0,0],"ti":[-1.15,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.185},"t":70,"s":[218.605,107.352,0],"to":[1.15,0,0],"ti":[-0.927,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":71,"s":[221.707,107.352,0],"to":[0.927,0,0],"ti":[-0.721,0,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.193},"t":72,"s":[224.165,107.352,0],"to":[0.721,0,0],"ti":[-0.532,0,0]},{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.201},"t":73,"s":[226.032,107.352,0],"to":[0.532,0,0],"ti":[-0.361,0,0]},{"i":{"x":0.833,"y":0.876},"o":{"x":0.167,"y":0.215},"t":74,"s":[227.359,107.352,0],"to":[0.361,0,0],"ti":[-0.208,0,0]},{"i":{"x":0.833,"y":0.898},"o":{"x":0.167,"y":0.256},"t":75,"s":[228.2,107.352,0],"to":[0.208,0,0],"ti":[-0.072,0,0]},{"i":{"x":0.833,"y":0.635},"o":{"x":0.167,"y":0.459},"t":76,"s":[228.606,107.352,0],"to":[0.072,0,0],"ti":[0.047,0,0]},{"i":{"x":0.833,"y":0.758},"o":{"x":0.167,"y":0.108},"t":77,"s":[228.631,107.352,0],"to":[-0.047,0,0],"ti":[0.148,0,0]},{"i":{"x":0.833,"y":0.801},"o":{"x":0.167,"y":0.127},"t":78,"s":[228.326,107.352,0],"to":[-0.148,0,0],"ti":[0.231,0,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.143},"t":79,"s":[227.744,107.352,0],"to":[-0.231,0,0],"ti":[0.297,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.152},"t":80,"s":[226.938,107.352,0],"to":[-0.297,0,0],"ti":[0.346,0,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.158},"t":81,"s":[225.959,107.352,0],"to":[-0.346,0,0],"ti":[0.377,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":82,"s":[224.861,107.352,0],"to":[-0.377,0,0],"ti":[0.391,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.166},"t":83,"s":[223.696,107.352,0],"to":[-0.391,0,0],"ti":[0.387,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.169},"t":84,"s":[222.516,107.352,0],"to":[-0.387,0,0],"ti":[0.366,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.174},"t":85,"s":[221.374,107.352,0],"to":[-0.366,0,0],"ti":[0.327,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.18},"t":86,"s":[220.322,107.352,0],"to":[-0.327,0,0],"ti":[0.271,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.189},"t":87,"s":[219.412,107.352,0],"to":[-0.271,0,0],"ti":[0.197,0,0]},{"i":{"x":0.833,"y":0.599},"o":{"x":0.167,"y":0.211},"t":88,"s":[218.698,107.352,0],"to":[-0.197,0,0],"ti":[0.106,0,0]},{"i":{"x":0.833,"y":0.324},"o":{"x":0.167,"y":0.105},"t":89,"s":[218.23,107.352,0],"to":[-0.106,0,0],"ti":[2.136,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.095},"t":90,"s":[218.063,107.352,0],"to":[-2.136,0,0],"ti":[4.065,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":91,"s":[205.413,107.352,0],"to":[-4.065,0,0],"ti":[3.768,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":92,"s":[193.671,107.352,0],"to":[-3.768,0,0],"ti":[3.48,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":93,"s":[182.808,107.352,0],"to":[-3.48,0,0],"ti":[3.203,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":94,"s":[172.79,107.352,0],"to":[-3.203,0,0],"ti":[2.937,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":95,"s":[163.587,107.352,0],"to":[-2.937,0,0],"ti":[2.681,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":96,"s":[155.167,107.352,0],"to":[-2.681,0,0],"ti":[2.436,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":97,"s":[147.5,107.352,0],"to":[-2.436,0,0],"ti":[2.201,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":98,"s":[140.554,107.352,0],"to":[-2.201,0,0],"ti":[1.976,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":99,"s":[134.297,107.352,0],"to":[-1.976,0,0],"ti":[1.762,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":100,"s":[128.699,107.352,0],"to":[-1.762,0,0],"ti":[1.558,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":101,"s":[123.727,107.352,0],"to":[-1.558,0,0],"ti":[1.365,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":102,"s":[119.351,107.352,0],"to":[-1.365,0,0],"ti":[1.182,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":103,"s":[115.539,107.352,0],"to":[-1.182,0,0],"ti":[1.009,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":104,"s":[112.261,107.352,0],"to":[-1.009,0,0],"ti":[0.847,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.184},"t":105,"s":[109.484,107.352,0],"to":[-0.847,0,0],"ti":[0.696,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.186},"t":106,"s":[107.177,107.352,0],"to":[-0.696,0,0],"ti":[0.555,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":107,"s":[105.31,107.352,0],"to":[-0.555,0,0],"ti":[0.424,0,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.196},"t":108,"s":[103.85,107.352,0],"to":[-0.424,0,0],"ti":[0.304,0,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.206},"t":109,"s":[102.767,107.352,0],"to":[-0.304,0,0],"ti":[0.194,0,0]},{"i":{"x":0.833,"y":0.889},"o":{"x":0.167,"y":0.228},"t":110,"s":[102.029,107.352,0],"to":[-0.194,0,0],"ti":[0.094,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.333},"t":111,"s":[101.605,107.352,0],"to":[-0.094,0,0],"ti":[0.005,0,0]},{"i":{"x":0.833,"y":0.668},"o":{"x":0.167,"y":0.191},"t":112,"s":[101.463,107.352,0],"to":[-0.005,0,0],"ti":[-0.073,0,0]},{"i":{"x":0.833,"y":0.786},"o":{"x":0.167,"y":0.111},"t":113,"s":[101.572,107.352,0],"to":[0.073,0,0],"ti":[-0.141,0,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.136},"t":114,"s":[101.901,107.352,0],"to":[0.141,0,0],"ti":[-0.199,0,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.147},"t":115,"s":[102.419,107.352,0],"to":[0.199,0,0],"ti":[-0.246,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.154},"t":116,"s":[103.094,107.352,0],"to":[0.246,0,0],"ti":[-0.283,0,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.158},"t":117,"s":[103.895,107.352,0],"to":[0.283,0,0],"ti":[-0.309,0,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.161},"t":118,"s":[104.791,107.352,0],"to":[0.309,0,0],"ti":[-0.325,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.164},"t":119,"s":[105.75,107.352,0],"to":[0.325,0,0],"ti":[-0.33,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":120,"s":[106.741,107.352,0],"to":[0.33,0,0],"ti":[-0.325,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.169},"t":121,"s":[107.733,107.352,0],"to":[0.325,0,0],"ti":[-0.31,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.172},"t":122,"s":[108.694,107.352,0],"to":[0.31,0,0],"ti":[-0.284,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.176},"t":123,"s":[109.593,107.352,0],"to":[0.284,0,0],"ti":[-0.248,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.182},"t":124,"s":[110.398,107.352,0],"to":[0.248,0,0],"ti":[-0.201,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.191},"t":125,"s":[111.08,107.352,0],"to":[0.201,0,0],"ti":[-0.144,0,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.213},"t":126,"s":[111.605,107.352,0],"to":[0.144,0,0],"ti":[-0.076,0,0]},{"i":{"x":0.833,"y":0.917},"o":{"x":0.167,"y":0.319},"t":127,"s":[111.943,107.352,0],"to":[0.076,0,0],"ti":[-0.02,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":142,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":155,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":157,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":164,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":170,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":172,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":174,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":175,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":176,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":177,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":178,"s":[112.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[112.063,107.352,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"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]},"t":20,"s":[100,100,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":21,"f":"SegoeUIHistoric","t":"G","j":2,"tr":0,"lh":25.2,"ls":0,"fc":[0.086,0.086,0.086]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":5,"nm":"n","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.898]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.456]},"t":1,"s":[81.741]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[1.522]},"t":2,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":11,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":16,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":18,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":22,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":23,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":28,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":29,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":31,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":32,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":33,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":35,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":36,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":37,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":39,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":42,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":43,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":44,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":47,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":49,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":52,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":53,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":57,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":58,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":64,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":112,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":113,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":114,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":115,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":116,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":122,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":126,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":128,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":129,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":137,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":139,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":141,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":143,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":147,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":149,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":150,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":151,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":154,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":158,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":162,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":163,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":164,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"t":179,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":90,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.167},"t":0,"s":[219.813,107.352,0],"to":[-0.64,0,0],"ti":[1.192,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":1,"s":[215.973,107.352,0],"to":[-1.192,0,0],"ti":[1.023,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":2,"s":[212.658,107.352,0],"to":[-1.023,0,0],"ti":[0.866,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":3,"s":[209.833,107.352,0],"to":[-0.866,0,0],"ti":[0.721,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":4,"s":[207.461,107.352,0],"to":[-0.721,0,0],"ti":[0.587,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":5,"s":[205.508,107.352,0],"to":[-0.587,0,0],"ti":[0.465,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":6,"s":[203.938,107.352,0],"to":[-0.465,0,0],"ti":[0.356,0,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.195},"t":7,"s":[202.716,107.352,0],"to":[-0.356,0,0],"ti":[0.257,0,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.203},"t":8,"s":[201.805,107.352,0],"to":[-0.257,0,0],"ti":[0.171,0,0]},{"i":{"x":0.833,"y":0.877},"o":{"x":0.167,"y":0.218},"t":9,"s":[201.171,107.352,0],"to":[-0.171,0,0],"ti":[0.097,0,0]},{"i":{"x":0.833,"y":0.899},"o":{"x":0.167,"y":0.258},"t":10,"s":[200.778,107.352,0],"to":[-0.097,0,0],"ti":[0.034,0,0]},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.48},"t":11,"s":[200.591,107.352,0],"to":[-0.034,0,0],"ti":[-0.017,0,0]},{"i":{"x":0.833,"y":0.763},"o":{"x":0.167,"y":0.111},"t":12,"s":[200.574,107.352,0],"to":[0.017,0,0],"ti":[-0.056,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.129},"t":13,"s":[200.692,107.352,0],"to":[0.056,0,0],"ti":[-0.083,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.148},"t":14,"s":[200.909,107.352,0],"to":[0.083,0,0],"ti":[-0.098,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.159},"t":15,"s":[201.191,107.352,0],"to":[0.098,0,0],"ti":[-0.102,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.169},"t":16,"s":[201.5,107.352,0],"to":[0.102,0,0],"ti":[-0.094,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.18},"t":17,"s":[201.803,107.352,0],"to":[0.094,0,0],"ti":[-0.074,0,0]},{"i":{"x":0.834,"y":0},"o":{"x":0.167,"y":0.202},"t":18,"s":[202.062,107.352,0],"to":[0.074,0,0],"ti":[-0.042,0,0]},{"i":{"x":0.833,"y":0.366},"o":{"x":0.167,"y":0.091},"t":19,"s":[202.244,107.352,0],"to":[0.042,0,0],"ti":[2.21,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.096},"t":20,"s":[202.313,107.352,0],"to":[-2.21,0,0],"ti":[4.274,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":21,"s":[188.987,107.352,0],"to":[-4.274,0,0],"ti":[3.943,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":22,"s":[176.672,107.352,0],"to":[-3.943,0,0],"ti":[3.624,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":23,"s":[165.33,107.352,0],"to":[-3.624,0,0],"ti":[3.318,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":24,"s":[154.925,107.352,0],"to":[-3.318,0,0],"ti":[3.024,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":25,"s":[145.421,107.352,0],"to":[-3.024,0,0],"ti":[2.743,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":26,"s":[136.78,107.352,0],"to":[-2.743,0,0],"ti":[2.473,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":27,"s":[128.965,107.352,0],"to":[-2.473,0,0],"ti":[2.216,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":28,"s":[121.94,107.352,0],"to":[-2.216,0,0],"ti":[1.971,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":29,"s":[115.668,107.352,0],"to":[-1.971,0,0],"ti":[1.739,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":30,"s":[110.111,107.352,0],"to":[-1.739,0,0],"ti":[1.519,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":31,"s":[105.234,107.352,0],"to":[-1.519,0,0],"ti":[1.311,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":32,"s":[100.999,107.352,0],"to":[-1.311,0,0],"ti":[1.115,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.182},"t":33,"s":[97.37,107.352,0],"to":[-1.115,0,0],"ti":[0.932,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.184},"t":34,"s":[94.309,107.352,0],"to":[-0.932,0,0],"ti":[0.76,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":35,"s":[91.781,107.352,0],"to":[-0.76,0,0],"ti":[0.602,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.191},"t":36,"s":[89.747,107.352,0],"to":[-0.602,0,0],"ti":[0.455,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.197},"t":37,"s":[88.171,107.352,0],"to":[-0.455,0,0],"ti":[0.321,0,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.208},"t":38,"s":[87.017,107.352,0],"to":[-0.321,0,0],"ti":[0.199,0,0]},{"i":{"x":0.833,"y":0.894},"o":{"x":0.167,"y":0.235},"t":39,"s":[86.247,107.352,0],"to":[-0.199,0,0],"ti":[0.089,0,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.392},"t":40,"s":[85.825,107.352,0],"to":[-0.089,0,0],"ti":[-0.009,0,0]},{"i":{"x":0.833,"y":0.712},"o":{"x":0.167,"y":0.142},"t":41,"s":[85.714,107.352,0],"to":[0.009,0,0],"ti":[-0.094,0,0]},{"i":{"x":0.833,"y":0.792},"o":{"x":0.167,"y":0.117},"t":42,"s":[85.877,107.352,0],"to":[0.094,0,0],"ti":[-0.167,0,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.139},"t":43,"s":[86.278,107.352,0],"to":[0.167,0,0],"ti":[-0.227,0,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.149},"t":44,"s":[86.878,107.352,0],"to":[0.227,0,0],"ti":[-0.276,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.155},"t":45,"s":[87.643,107.352,0],"to":[0.276,0,0],"ti":[-0.312,0,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.159},"t":46,"s":[88.534,107.352,0],"to":[0.312,0,0],"ti":[-0.336,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":47,"s":[89.514,107.352,0],"to":[0.336,0,0],"ti":[-0.347,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.165},"t":48,"s":[90.549,107.352,0],"to":[0.347,0,0],"ti":[-0.347,0,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.168},"t":49,"s":[91.599,107.352,0],"to":[0.347,0,0],"ti":[-0.334,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.172},"t":50,"s":[92.629,107.352,0],"to":[0.334,0,0],"ti":[-0.308,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.176},"t":51,"s":[93.601,107.352,0],"to":[0.308,0,0],"ti":[-0.271,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.181},"t":52,"s":[94.479,107.352,0],"to":[0.271,0,0],"ti":[-0.221,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.191},"t":53,"s":[95.226,107.352,0],"to":[0.221,0,0],"ti":[-0.159,0,0]},{"i":{"x":0.833,"y":0.47},"o":{"x":0.167,"y":0.212},"t":54,"s":[95.805,107.352,0],"to":[0.159,0,0],"ti":[-0.085,0,0]},{"i":{"x":0.833,"y":0.333},"o":{"x":0.167,"y":0.099},"t":55,"s":[96.18,107.352,0],"to":[0.085,0,0],"ti":[-2.369,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.095},"t":56,"s":[96.313,107.352,0],"to":[2.369,0,0],"ti":[-4.504,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":57,"s":[110.391,107.352,0],"to":[4.504,0,0],"ti":[-4.135,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":58,"s":[123.338,107.352,0],"to":[4.135,0,0],"ti":[-3.78,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":59,"s":[135.199,107.352,0],"to":[3.78,0,0],"ti":[-3.439,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":60,"s":[146.016,107.352,0],"to":[3.439,0,0],"ti":[-3.113,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":61,"s":[155.835,107.352,0],"to":[3.113,0,0],"ti":[-2.802,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":62,"s":[164.697,107.352,0],"to":[2.802,0,0],"ti":[-2.505,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":63,"s":[172.647,107.352,0],"to":[2.505,0,0],"ti":[-2.223,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":64,"s":[179.729,107.352,0],"to":[2.223,0,0],"ti":[-1.956,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":65,"s":[185.987,107.352,0],"to":[1.956,0,0],"ti":[-1.703,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":66,"s":[191.464,107.352,0],"to":[1.703,0,0],"ti":[-1.464,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":67,"s":[196.203,107.352,0],"to":[1.464,0,0],"ti":[-1.24,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":68,"s":[200.249,107.352,0],"to":[1.24,0,0],"ti":[-1.031,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":69,"s":[203.646,107.352,0],"to":[1.031,0,0],"ti":[-0.836,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":70,"s":[206.436,107.352,0],"to":[0.836,0,0],"ti":[-0.656,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.192},"t":71,"s":[208.664,107.352,0],"to":[0.656,0,0],"ti":[-0.491,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.199},"t":72,"s":[210.374,107.352,0],"to":[0.491,0,0],"ti":[-0.34,0,0]},{"i":{"x":0.833,"y":0.873},"o":{"x":0.167,"y":0.211},"t":73,"s":[211.609,107.352,0],"to":[0.34,0,0],"ti":[-0.203,0,0]},{"i":{"x":0.833,"y":0.898},"o":{"x":0.167,"y":0.244},"t":74,"s":[212.413,107.352,0],"to":[0.203,0,0],"ti":[-0.081,0,0]},{"i":{"x":0.833,"y":0.717},"o":{"x":0.167,"y":0.449},"t":75,"s":[212.829,107.352,0],"to":[0.081,0,0],"ti":[0.026,0,0]},{"i":{"x":0.833,"y":0.739},"o":{"x":0.167,"y":0.118},"t":76,"s":[212.902,107.352,0],"to":[-0.026,0,0],"ti":[0.118,0,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.123},"t":77,"s":[212.674,107.352,0],"to":[-0.118,0,0],"ti":[0.197,0,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.141},"t":78,"s":[212.191,107.352,0],"to":[-0.197,0,0],"ti":[0.26,0,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.15},"t":79,"s":[211.495,107.352,0],"to":[-0.26,0,0],"ti":[0.309,0,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.156},"t":80,"s":[210.63,107.352,0],"to":[-0.309,0,0],"ti":[0.344,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.16},"t":81,"s":[209.64,107.352,0],"to":[-0.344,0,0],"ti":[0.363,0,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.164},"t":82,"s":[208.568,107.352,0],"to":[-0.363,0,0],"ti":[0.369,0,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.167},"t":83,"s":[207.459,107.352,0],"to":[-0.369,0,0],"ti":[0.359,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.171},"t":84,"s":[206.356,107.352,0],"to":[-0.359,0,0],"ti":[0.336,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.175},"t":85,"s":[205.303,107.352,0],"to":[-0.336,0,0],"ti":[0.297,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.181},"t":86,"s":[204.343,107.352,0],"to":[-0.297,0,0],"ti":[0.244,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.19},"t":87,"s":[203.52,107.352,0],"to":[-0.244,0,0],"ti":[0.176,0,0]},{"i":{"x":0.833,"y":0.539},"o":{"x":0.167,"y":0.212},"t":88,"s":[202.879,107.352,0],"to":[-0.176,0,0],"ti":[0.094,0,0]},{"i":{"x":0.833,"y":0.329},"o":{"x":0.167,"y":0.102},"t":89,"s":[202.462,107.352,0],"to":[-0.094,0,0],"ti":[2.246,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.095},"t":90,"s":[202.313,107.352,0],"to":[-2.246,0,0],"ti":[4.274,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":91,"s":[188.987,107.352,0],"to":[-4.274,0,0],"ti":[3.943,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":92,"s":[176.672,107.352,0],"to":[-3.943,0,0],"ti":[3.624,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":93,"s":[165.33,107.352,0],"to":[-3.624,0,0],"ti":[3.318,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":94,"s":[154.925,107.352,0],"to":[-3.318,0,0],"ti":[3.024,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":95,"s":[145.421,107.352,0],"to":[-3.024,0,0],"ti":[2.743,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":96,"s":[136.78,107.352,0],"to":[-2.743,0,0],"ti":[2.473,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":97,"s":[128.965,107.352,0],"to":[-2.473,0,0],"ti":[2.216,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":98,"s":[121.94,107.352,0],"to":[-2.216,0,0],"ti":[1.971,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":99,"s":[115.668,107.352,0],"to":[-1.971,0,0],"ti":[1.739,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":100,"s":[110.111,107.352,0],"to":[-1.739,0,0],"ti":[1.519,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":101,"s":[105.234,107.352,0],"to":[-1.519,0,0],"ti":[1.311,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":102,"s":[100.999,107.352,0],"to":[-1.311,0,0],"ti":[1.115,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.182},"t":103,"s":[97.37,107.352,0],"to":[-1.115,0,0],"ti":[0.932,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.184},"t":104,"s":[94.309,107.352,0],"to":[-0.932,0,0],"ti":[0.76,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":105,"s":[91.781,107.352,0],"to":[-0.76,0,0],"ti":[0.602,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.191},"t":106,"s":[89.747,107.352,0],"to":[-0.602,0,0],"ti":[0.455,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.197},"t":107,"s":[88.171,107.352,0],"to":[-0.455,0,0],"ti":[0.321,0,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.208},"t":108,"s":[87.017,107.352,0],"to":[-0.321,0,0],"ti":[0.199,0,0]},{"i":{"x":0.833,"y":0.894},"o":{"x":0.167,"y":0.235},"t":109,"s":[86.247,107.352,0],"to":[-0.199,0,0],"ti":[0.089,0,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.392},"t":110,"s":[85.825,107.352,0],"to":[-0.089,0,0],"ti":[-0.009,0,0]},{"i":{"x":0.833,"y":0.712},"o":{"x":0.167,"y":0.142},"t":111,"s":[85.714,107.352,0],"to":[0.009,0,0],"ti":[-0.094,0,0]},{"i":{"x":0.833,"y":0.792},"o":{"x":0.167,"y":0.117},"t":112,"s":[85.877,107.352,0],"to":[0.094,0,0],"ti":[-0.167,0,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.139},"t":113,"s":[86.278,107.352,0],"to":[0.167,0,0],"ti":[-0.227,0,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.149},"t":114,"s":[86.878,107.352,0],"to":[0.227,0,0],"ti":[-0.276,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.155},"t":115,"s":[87.643,107.352,0],"to":[0.276,0,0],"ti":[-0.312,0,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.159},"t":116,"s":[88.534,107.352,0],"to":[0.312,0,0],"ti":[-0.336,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":117,"s":[89.514,107.352,0],"to":[0.336,0,0],"ti":[-0.347,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.165},"t":118,"s":[90.549,107.352,0],"to":[0.347,0,0],"ti":[-0.347,0,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.168},"t":119,"s":[91.599,107.352,0],"to":[0.347,0,0],"ti":[-0.334,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.172},"t":120,"s":[92.629,107.352,0],"to":[0.334,0,0],"ti":[-0.308,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.176},"t":121,"s":[93.601,107.352,0],"to":[0.308,0,0],"ti":[-0.271,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.181},"t":122,"s":[94.479,107.352,0],"to":[0.271,0,0],"ti":[-0.221,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.191},"t":123,"s":[95.226,107.352,0],"to":[0.221,0,0],"ti":[-0.159,0,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.212},"t":124,"s":[95.805,107.352,0],"to":[0.159,0,0],"ti":[-0.085,0,0]},{"i":{"x":0.833,"y":0.917},"o":{"x":0.167,"y":0.318},"t":125,"s":[96.18,107.352,0],"to":[0.085,0,0],"ti":[-0.022,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":142,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":155,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":157,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":164,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":170,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":172,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":174,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":175,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":176,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":177,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":178,"s":[96.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[96.313,107.352,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"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]},"t":20,"s":[100,100,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":21,"f":"SegoeUIHistoric","t":"N","j":2,"tr":0,"lh":25.2,"ls":0,"fc":[0.086,0.086,0.086]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":5,"nm":"i","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.898]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.456]},"t":1,"s":[81.741]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[1.522]},"t":2,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":11,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":16,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":18,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":22,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":23,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":28,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":29,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":31,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":32,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":33,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":35,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":36,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":37,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":39,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":42,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":43,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":44,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":47,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":49,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":52,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":53,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":57,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":58,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":64,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":112,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":113,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":114,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":115,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":116,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":122,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":126,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":128,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":129,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":137,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":139,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":141,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":143,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":147,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":149,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":150,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":151,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":154,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":158,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":162,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":163,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":164,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"t":179,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":90,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.167},"t":0,"s":[219.563,107.352,0],"to":[-1.042,0,0],"ti":[1.942,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":1,"s":[213.31,107.352,0],"to":[-1.942,0,0],"ti":[1.667,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":2,"s":[207.911,107.352,0],"to":[-1.667,0,0],"ti":[1.411,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":3,"s":[203.31,107.352,0],"to":[-1.411,0,0],"ti":[1.174,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":4,"s":[199.448,107.352,0],"to":[-1.174,0,0],"ti":[0.956,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":5,"s":[196.267,107.352,0],"to":[-0.956,0,0],"ti":[0.758,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":6,"s":[193.71,107.352,0],"to":[-0.758,0,0],"ti":[0.579,0,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.195},"t":7,"s":[191.719,107.352,0],"to":[-0.579,0,0],"ti":[0.419,0,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.203},"t":8,"s":[190.236,107.352,0],"to":[-0.419,0,0],"ti":[0.279,0,0]},{"i":{"x":0.833,"y":0.877},"o":{"x":0.167,"y":0.218},"t":9,"s":[189.203,107.352,0],"to":[-0.279,0,0],"ti":[0.157,0,0]},{"i":{"x":0.833,"y":0.899},"o":{"x":0.167,"y":0.258},"t":10,"s":[188.564,107.352,0],"to":[-0.157,0,0],"ti":[0.055,0,0]},{"i":{"x":0.833,"y":0.663},"o":{"x":0.167,"y":0.486},"t":11,"s":[188.259,107.352,0],"to":[-0.055,0,0],"ti":[-0.027,0,0]},{"i":{"x":0.833,"y":0.763},"o":{"x":0.167,"y":0.111},"t":12,"s":[188.231,107.352,0],"to":[0.027,0,0],"ti":[-0.091,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.129},"t":13,"s":[188.423,107.352,0],"to":[0.091,0,0],"ti":[-0.135,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.148},"t":14,"s":[188.777,107.352,0],"to":[0.135,0,0],"ti":[-0.16,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.159},"t":15,"s":[189.235,107.352,0],"to":[0.16,0,0],"ti":[-0.166,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.169},"t":16,"s":[189.739,107.352,0],"to":[0.166,0,0],"ti":[-0.153,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.18},"t":17,"s":[190.232,107.352,0],"to":[0.153,0,0],"ti":[-0.12,0,0]},{"i":{"x":0.833,"y":0.311},"o":{"x":0.167,"y":0.202},"t":18,"s":[190.655,107.352,0],"to":[0.12,0,0],"ti":[-0.068,0,0]},{"i":{"x":0.833,"y":0.372},"o":{"x":0.167,"y":0.095},"t":19,"s":[190.951,107.352,0],"to":[0.068,0,0],"ti":[2.328,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.096},"t":20,"s":[191.063,107.352,0],"to":[-2.328,0,0],"ti":[4.504,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":21,"s":[176.985,107.352,0],"to":[-4.504,0,0],"ti":[4.135,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":22,"s":[164.038,107.352,0],"to":[-4.135,0,0],"ti":[3.78,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":23,"s":[152.177,107.352,0],"to":[-3.78,0,0],"ti":[3.439,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":24,"s":[141.359,107.352,0],"to":[-3.439,0,0],"ti":[3.113,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":25,"s":[131.541,107.352,0],"to":[-3.113,0,0],"ti":[2.802,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":26,"s":[122.679,107.352,0],"to":[-2.802,0,0],"ti":[2.505,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":27,"s":[114.729,107.352,0],"to":[-2.505,0,0],"ti":[2.223,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":28,"s":[107.647,107.352,0],"to":[-2.223,0,0],"ti":[1.956,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":29,"s":[101.389,107.352,0],"to":[-1.956,0,0],"ti":[1.703,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":30,"s":[95.912,107.352,0],"to":[-1.703,0,0],"ti":[1.464,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":31,"s":[91.173,107.352,0],"to":[-1.464,0,0],"ti":[1.24,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":32,"s":[87.127,107.352,0],"to":[-1.24,0,0],"ti":[1.031,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":33,"s":[83.73,107.352,0],"to":[-1.031,0,0],"ti":[0.836,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":34,"s":[80.94,107.352,0],"to":[-0.836,0,0],"ti":[0.656,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.192},"t":35,"s":[78.712,107.352,0],"to":[-0.656,0,0],"ti":[0.491,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.199},"t":36,"s":[77.002,107.352,0],"to":[-0.491,0,0],"ti":[0.34,0,0]},{"i":{"x":0.833,"y":0.873},"o":{"x":0.167,"y":0.211},"t":37,"s":[75.767,107.352,0],"to":[-0.34,0,0],"ti":[0.203,0,0]},{"i":{"x":0.833,"y":0.898},"o":{"x":0.167,"y":0.244},"t":38,"s":[74.963,107.352,0],"to":[-0.203,0,0],"ti":[0.081,0,0]},{"i":{"x":0.833,"y":0.717},"o":{"x":0.167,"y":0.449},"t":39,"s":[74.547,107.352,0],"to":[-0.081,0,0],"ti":[-0.026,0,0]},{"i":{"x":0.833,"y":0.739},"o":{"x":0.167,"y":0.118},"t":40,"s":[74.474,107.352,0],"to":[0.026,0,0],"ti":[-0.118,0,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.123},"t":41,"s":[74.702,107.352,0],"to":[0.118,0,0],"ti":[-0.197,0,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.141},"t":42,"s":[75.185,107.352,0],"to":[0.197,0,0],"ti":[-0.26,0,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.15},"t":43,"s":[75.881,107.352,0],"to":[0.26,0,0],"ti":[-0.309,0,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.156},"t":44,"s":[76.746,107.352,0],"to":[0.309,0,0],"ti":[-0.344,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.16},"t":45,"s":[77.736,107.352,0],"to":[0.344,0,0],"ti":[-0.363,0,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.164},"t":46,"s":[78.808,107.352,0],"to":[0.363,0,0],"ti":[-0.369,0,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.167},"t":47,"s":[79.917,107.352,0],"to":[0.369,0,0],"ti":[-0.359,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.171},"t":48,"s":[81.02,107.352,0],"to":[0.359,0,0],"ti":[-0.336,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.175},"t":49,"s":[82.073,107.352,0],"to":[0.336,0,0],"ti":[-0.297,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.181},"t":50,"s":[83.033,107.352,0],"to":[0.297,0,0],"ti":[-0.244,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.19},"t":51,"s":[83.855,107.352,0],"to":[0.244,0,0],"ti":[-0.176,0,0]},{"i":{"x":0.833,"y":0.539},"o":{"x":0.167,"y":0.212},"t":52,"s":[84.497,107.352,0],"to":[0.176,0,0],"ti":[-0.094,0,0]},{"i":{"x":0.833,"y":0.329},"o":{"x":0.167,"y":0.102},"t":53,"s":[84.914,107.352,0],"to":[0.094,0,0],"ti":[-2.246,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.095},"t":54,"s":[85.063,107.352,0],"to":[2.246,0,0],"ti":[-4.274,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":55,"s":[98.389,107.352,0],"to":[4.274,0,0],"ti":[-3.943,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":56,"s":[110.704,107.352,0],"to":[3.943,0,0],"ti":[-3.624,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":57,"s":[122.046,107.352,0],"to":[3.624,0,0],"ti":[-3.318,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":58,"s":[132.451,107.352,0],"to":[3.318,0,0],"ti":[-3.024,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":59,"s":[141.955,107.352,0],"to":[3.024,0,0],"ti":[-2.743,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":60,"s":[150.596,107.352,0],"to":[2.743,0,0],"ti":[-2.473,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":61,"s":[158.411,107.352,0],"to":[2.473,0,0],"ti":[-2.216,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":62,"s":[165.436,107.352,0],"to":[2.216,0,0],"ti":[-1.971,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.177},"t":63,"s":[171.708,107.352,0],"to":[1.971,0,0],"ti":[-1.739,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":64,"s":[177.265,107.352,0],"to":[1.739,0,0],"ti":[-1.519,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":65,"s":[182.142,107.352,0],"to":[1.519,0,0],"ti":[-1.311,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":66,"s":[186.377,107.352,0],"to":[1.311,0,0],"ti":[-1.115,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.182},"t":67,"s":[190.006,107.352,0],"to":[1.115,0,0],"ti":[-0.932,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.184},"t":68,"s":[193.067,107.352,0],"to":[0.932,0,0],"ti":[-0.76,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":69,"s":[195.595,107.352,0],"to":[0.76,0,0],"ti":[-0.602,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.191},"t":70,"s":[197.629,107.352,0],"to":[0.602,0,0],"ti":[-0.455,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.197},"t":71,"s":[199.205,107.352,0],"to":[0.455,0,0],"ti":[-0.321,0,0]},{"i":{"x":0.833,"y":0.871},"o":{"x":0.167,"y":0.208},"t":72,"s":[200.359,107.352,0],"to":[0.321,0,0],"ti":[-0.199,0,0]},{"i":{"x":0.833,"y":0.894},"o":{"x":0.167,"y":0.235},"t":73,"s":[201.129,107.352,0],"to":[0.199,0,0],"ti":[-0.089,0,0]},{"i":{"x":0.833,"y":0.798},"o":{"x":0.167,"y":0.392},"t":74,"s":[201.55,107.352,0],"to":[0.089,0,0],"ti":[0.009,0,0]},{"i":{"x":0.833,"y":0.712},"o":{"x":0.167,"y":0.142},"t":75,"s":[201.662,107.352,0],"to":[-0.009,0,0],"ti":[0.094,0,0]},{"i":{"x":0.833,"y":0.792},"o":{"x":0.167,"y":0.117},"t":76,"s":[201.499,107.352,0],"to":[-0.094,0,0],"ti":[0.167,0,0]},{"i":{"x":0.833,"y":0.811},"o":{"x":0.167,"y":0.139},"t":77,"s":[201.098,107.352,0],"to":[-0.167,0,0],"ti":[0.227,0,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.149},"t":78,"s":[200.498,107.352,0],"to":[-0.227,0,0],"ti":[0.276,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.155},"t":79,"s":[199.733,107.352,0],"to":[-0.276,0,0],"ti":[0.312,0,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.159},"t":80,"s":[198.842,107.352,0],"to":[-0.312,0,0],"ti":[0.336,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":81,"s":[197.861,107.352,0],"to":[-0.336,0,0],"ti":[0.347,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.165},"t":82,"s":[196.827,107.352,0],"to":[-0.347,0,0],"ti":[0.347,0,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.168},"t":83,"s":[195.777,107.352,0],"to":[-0.347,0,0],"ti":[0.334,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.172},"t":84,"s":[194.747,107.352,0],"to":[-0.334,0,0],"ti":[0.308,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.176},"t":85,"s":[193.775,107.352,0],"to":[-0.308,0,0],"ti":[0.271,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.181},"t":86,"s":[192.897,107.352,0],"to":[-0.271,0,0],"ti":[0.221,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.191},"t":87,"s":[192.15,107.352,0],"to":[-0.221,0,0],"ti":[0.159,0,0]},{"i":{"x":0.833,"y":0.47},"o":{"x":0.167,"y":0.212},"t":88,"s":[191.571,107.352,0],"to":[-0.159,0,0],"ti":[0.085,0,0]},{"i":{"x":0.833,"y":0.333},"o":{"x":0.167,"y":0.099},"t":89,"s":[191.196,107.352,0],"to":[-0.085,0,0],"ti":[2.369,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.095},"t":90,"s":[191.063,107.352,0],"to":[-2.369,0,0],"ti":[4.504,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":91,"s":[176.985,107.352,0],"to":[-4.504,0,0],"ti":[4.135,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":92,"s":[164.038,107.352,0],"to":[-4.135,0,0],"ti":[3.78,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":93,"s":[152.177,107.352,0],"to":[-3.78,0,0],"ti":[3.439,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":94,"s":[141.359,107.352,0],"to":[-3.439,0,0],"ti":[3.113,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":95,"s":[131.541,107.352,0],"to":[-3.113,0,0],"ti":[2.802,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":96,"s":[122.679,107.352,0],"to":[-2.802,0,0],"ti":[2.505,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":97,"s":[114.729,107.352,0],"to":[-2.505,0,0],"ti":[2.223,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":98,"s":[107.647,107.352,0],"to":[-2.223,0,0],"ti":[1.956,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":99,"s":[101.389,107.352,0],"to":[-1.956,0,0],"ti":[1.703,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":100,"s":[95.912,107.352,0],"to":[-1.703,0,0],"ti":[1.464,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":101,"s":[91.173,107.352,0],"to":[-1.464,0,0],"ti":[1.24,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":102,"s":[87.127,107.352,0],"to":[-1.24,0,0],"ti":[1.031,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":103,"s":[83.73,107.352,0],"to":[-1.031,0,0],"ti":[0.836,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":104,"s":[80.94,107.352,0],"to":[-0.836,0,0],"ti":[0.656,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.192},"t":105,"s":[78.712,107.352,0],"to":[-0.656,0,0],"ti":[0.491,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.199},"t":106,"s":[77.002,107.352,0],"to":[-0.491,0,0],"ti":[0.34,0,0]},{"i":{"x":0.833,"y":0.873},"o":{"x":0.167,"y":0.211},"t":107,"s":[75.767,107.352,0],"to":[-0.34,0,0],"ti":[0.203,0,0]},{"i":{"x":0.833,"y":0.898},"o":{"x":0.167,"y":0.244},"t":108,"s":[74.963,107.352,0],"to":[-0.203,0,0],"ti":[0.081,0,0]},{"i":{"x":0.833,"y":0.717},"o":{"x":0.167,"y":0.449},"t":109,"s":[74.547,107.352,0],"to":[-0.081,0,0],"ti":[-0.026,0,0]},{"i":{"x":0.833,"y":0.739},"o":{"x":0.167,"y":0.118},"t":110,"s":[74.474,107.352,0],"to":[0.026,0,0],"ti":[-0.118,0,0]},{"i":{"x":0.833,"y":0.797},"o":{"x":0.167,"y":0.123},"t":111,"s":[74.702,107.352,0],"to":[0.118,0,0],"ti":[-0.197,0,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.141},"t":112,"s":[75.185,107.352,0],"to":[0.197,0,0],"ti":[-0.26,0,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.15},"t":113,"s":[75.881,107.352,0],"to":[0.26,0,0],"ti":[-0.309,0,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.156},"t":114,"s":[76.746,107.352,0],"to":[0.309,0,0],"ti":[-0.344,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.16},"t":115,"s":[77.736,107.352,0],"to":[0.344,0,0],"ti":[-0.363,0,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.164},"t":116,"s":[78.808,107.352,0],"to":[0.363,0,0],"ti":[-0.369,0,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.167},"t":117,"s":[79.917,107.352,0],"to":[0.369,0,0],"ti":[-0.359,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.171},"t":118,"s":[81.02,107.352,0],"to":[0.359,0,0],"ti":[-0.336,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.175},"t":119,"s":[82.073,107.352,0],"to":[0.336,0,0],"ti":[-0.297,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.181},"t":120,"s":[83.033,107.352,0],"to":[0.297,0,0],"ti":[-0.244,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.19},"t":121,"s":[83.855,107.352,0],"to":[0.244,0,0],"ti":[-0.176,0,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.212},"t":122,"s":[84.497,107.352,0],"to":[0.176,0,0],"ti":[-0.094,0,0]},{"i":{"x":0.833,"y":0.917},"o":{"x":0.167,"y":0.317},"t":123,"s":[84.914,107.352,0],"to":[0.094,0,0],"ti":[-0.025,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":142,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":155,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":157,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":164,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":170,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":172,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":174,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":175,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":176,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":177,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":178,"s":[85.063,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[85.063,107.352,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"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]},"t":20,"s":[100,100,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":21,"f":"SegoeUIHistoric","t":"I","j":2,"tr":0,"lh":25.2,"ls":0,"fc":[0.086,0.086,0.086]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":5,"nm":"d","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.898]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.456]},"t":1,"s":[81.741]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[1.522]},"t":2,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":11,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":16,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":18,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":22,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":23,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":28,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":29,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":31,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":32,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":33,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":35,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":36,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":37,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":39,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":42,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":43,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":44,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":47,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":49,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":52,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":53,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":57,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":58,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":64,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":112,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":113,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":114,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":115,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":116,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":122,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":126,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":128,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":129,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":137,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":139,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":141,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":143,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":147,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":149,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":150,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":151,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":154,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":158,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":162,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":163,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":164,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"t":179,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":90,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.167},"t":0,"s":[220.063,107.352,0],"to":[-1.444,0,0],"ti":[2.691,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":1,"s":[211.396,107.352,0],"to":[-2.691,0,0],"ti":[2.31,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":2,"s":[203.914,107.352,0],"to":[-2.31,0,0],"ti":[1.955,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":3,"s":[197.537,107.352,0],"to":[-1.955,0,0],"ti":[1.627,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":4,"s":[192.184,107.352,0],"to":[-1.627,0,0],"ti":[1.325,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":5,"s":[187.775,107.352,0],"to":[-1.325,0,0],"ti":[1.051,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":6,"s":[184.231,107.352,0],"to":[-1.051,0,0],"ti":[0.802,0,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.195},"t":7,"s":[181.472,107.352,0],"to":[-0.802,0,0],"ti":[0.581,0,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.203},"t":8,"s":[179.416,107.352,0],"to":[-0.581,0,0],"ti":[0.386,0,0]},{"i":{"x":0.833,"y":0.877},"o":{"x":0.167,"y":0.218},"t":9,"s":[177.985,107.352,0],"to":[-0.386,0,0],"ti":[0.218,0,0]},{"i":{"x":0.833,"y":0.899},"o":{"x":0.167,"y":0.258},"t":10,"s":[177.099,107.352,0],"to":[-0.218,0,0],"ti":[0.077,0,0]},{"i":{"x":0.833,"y":0.666},"o":{"x":0.167,"y":0.481},"t":11,"s":[176.677,107.352,0],"to":[-0.077,0,0],"ti":[-0.038,0,0]},{"i":{"x":0.833,"y":0.763},"o":{"x":0.167,"y":0.111},"t":12,"s":[176.639,107.352,0],"to":[0.038,0,0],"ti":[-0.126,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.129},"t":13,"s":[176.905,107.352,0],"to":[0.126,0,0],"ti":[-0.187,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.148},"t":14,"s":[177.395,107.352,0],"to":[0.187,0,0],"ti":[-0.222,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.159},"t":15,"s":[178.03,107.352,0],"to":[0.222,0,0],"ti":[-0.23,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.169},"t":16,"s":[178.728,107.352,0],"to":[0.23,0,0],"ti":[-0.212,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.18},"t":17,"s":[179.411,107.352,0],"to":[0.212,0,0],"ti":[-0.166,0,0]},{"i":{"x":0.833,"y":0.449},"o":{"x":0.167,"y":0.202},"t":18,"s":[179.998,107.352,0],"to":[0.166,0,0],"ti":[-0.094,0,0]},{"i":{"x":0.833,"y":0.377},"o":{"x":0.167,"y":0.098},"t":19,"s":[180.408,107.352,0],"to":[0.094,0,0],"ti":[2.461,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.096},"t":20,"s":[180.563,107.352,0],"to":[-2.461,0,0],"ti":[4.761,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":21,"s":[165.643,107.352,0],"to":[-4.761,0,0],"ti":[4.345,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":22,"s":[151.996,107.352,0],"to":[-4.345,0,0],"ti":[3.947,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":23,"s":[139.57,107.352,0],"to":[-3.947,0,0],"ti":[3.567,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":24,"s":[128.313,107.352,0],"to":[-3.567,0,0],"ti":[3.203,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":25,"s":[118.171,107.352,0],"to":[-3.203,0,0],"ti":[2.858,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":26,"s":[109.093,107.352,0],"to":[-2.858,0,0],"ti":[2.529,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":27,"s":[101.026,107.352,0],"to":[-2.529,0,0],"ti":[2.218,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":28,"s":[93.918,107.352,0],"to":[-2.218,0,0],"ti":[1.925,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":29,"s":[87.715,107.352,0],"to":[-1.925,0,0],"ti":[1.649,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":30,"s":[82.367,107.352,0],"to":[-1.649,0,0],"ti":[1.391,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.183},"t":31,"s":[77.819,107.352,0],"to":[-1.391,0,0],"ti":[1.15,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.185},"t":32,"s":[74.021,107.352,0],"to":[-1.15,0,0],"ti":[0.927,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":33,"s":[70.919,107.352,0],"to":[-0.927,0,0],"ti":[0.721,0,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.193},"t":34,"s":[68.461,107.352,0],"to":[-0.721,0,0],"ti":[0.532,0,0]},{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.201},"t":35,"s":[66.594,107.352,0],"to":[-0.532,0,0],"ti":[0.361,0,0]},{"i":{"x":0.833,"y":0.876},"o":{"x":0.167,"y":0.215},"t":36,"s":[65.267,107.352,0],"to":[-0.361,0,0],"ti":[0.208,0,0]},{"i":{"x":0.833,"y":0.898},"o":{"x":0.167,"y":0.256},"t":37,"s":[64.426,107.352,0],"to":[-0.208,0,0],"ti":[0.072,0,0]},{"i":{"x":0.833,"y":0.635},"o":{"x":0.167,"y":0.459},"t":38,"s":[64.02,107.352,0],"to":[-0.072,0,0],"ti":[-0.047,0,0]},{"i":{"x":0.833,"y":0.758},"o":{"x":0.167,"y":0.108},"t":39,"s":[63.995,107.352,0],"to":[0.047,0,0],"ti":[-0.148,0,0]},{"i":{"x":0.833,"y":0.801},"o":{"x":0.167,"y":0.127},"t":40,"s":[64.3,107.352,0],"to":[0.148,0,0],"ti":[-0.231,0,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.143},"t":41,"s":[64.882,107.352,0],"to":[0.231,0,0],"ti":[-0.297,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.152},"t":42,"s":[65.688,107.352,0],"to":[0.297,0,0],"ti":[-0.346,0,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.158},"t":43,"s":[66.667,107.352,0],"to":[0.346,0,0],"ti":[-0.377,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":44,"s":[67.764,107.352,0],"to":[0.377,0,0],"ti":[-0.391,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.166},"t":45,"s":[68.93,107.352,0],"to":[0.391,0,0],"ti":[-0.387,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.169},"t":46,"s":[70.11,107.352,0],"to":[0.387,0,0],"ti":[-0.366,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.174},"t":47,"s":[71.252,107.352,0],"to":[0.366,0,0],"ti":[-0.327,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.18},"t":48,"s":[72.304,107.352,0],"to":[0.327,0,0],"ti":[-0.271,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.189},"t":49,"s":[73.214,107.352,0],"to":[0.271,0,0],"ti":[-0.197,0,0]},{"i":{"x":0.833,"y":0.599},"o":{"x":0.167,"y":0.211},"t":50,"s":[73.928,107.352,0],"to":[0.197,0,0],"ti":[-0.106,0,0]},{"i":{"x":0.833,"y":0.324},"o":{"x":0.167,"y":0.105},"t":51,"s":[74.396,107.352,0],"to":[0.106,0,0],"ti":[-2.136,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.095},"t":52,"s":[74.563,107.352,0],"to":[2.136,0,0],"ti":[-4.065,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":53,"s":[87.213,107.352,0],"to":[4.065,0,0],"ti":[-3.768,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":54,"s":[98.954,107.352,0],"to":[3.768,0,0],"ti":[-3.48,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":55,"s":[109.818,107.352,0],"to":[3.48,0,0],"ti":[-3.203,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":56,"s":[119.836,107.352,0],"to":[3.203,0,0],"ti":[-2.937,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":57,"s":[129.039,107.352,0],"to":[2.937,0,0],"ti":[-2.681,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":58,"s":[137.458,107.352,0],"to":[2.681,0,0],"ti":[-2.436,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":59,"s":[145.126,107.352,0],"to":[2.436,0,0],"ti":[-2.201,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":60,"s":[152.072,107.352,0],"to":[2.201,0,0],"ti":[-1.976,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":61,"s":[158.329,107.352,0],"to":[1.976,0,0],"ti":[-1.762,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":62,"s":[163.927,107.352,0],"to":[1.762,0,0],"ti":[-1.558,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":63,"s":[168.899,107.352,0],"to":[1.558,0,0],"ti":[-1.365,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":64,"s":[173.275,107.352,0],"to":[1.365,0,0],"ti":[-1.182,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":65,"s":[177.086,107.352,0],"to":[1.182,0,0],"ti":[-1.009,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":66,"s":[180.365,107.352,0],"to":[1.009,0,0],"ti":[-0.847,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.184},"t":67,"s":[183.142,107.352,0],"to":[0.847,0,0],"ti":[-0.696,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.186},"t":68,"s":[185.448,107.352,0],"to":[0.696,0,0],"ti":[-0.555,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":69,"s":[187.316,107.352,0],"to":[0.555,0,0],"ti":[-0.424,0,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.196},"t":70,"s":[188.776,107.352,0],"to":[0.424,0,0],"ti":[-0.304,0,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.206},"t":71,"s":[189.859,107.352,0],"to":[0.304,0,0],"ti":[-0.194,0,0]},{"i":{"x":0.833,"y":0.889},"o":{"x":0.167,"y":0.228},"t":72,"s":[190.597,107.352,0],"to":[0.194,0,0],"ti":[-0.094,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.333},"t":73,"s":[191.021,107.352,0],"to":[0.094,0,0],"ti":[-0.005,0,0]},{"i":{"x":0.833,"y":0.668},"o":{"x":0.167,"y":0.191},"t":74,"s":[191.163,107.352,0],"to":[0.005,0,0],"ti":[0.073,0,0]},{"i":{"x":0.833,"y":0.786},"o":{"x":0.167,"y":0.111},"t":75,"s":[191.054,107.352,0],"to":[-0.073,0,0],"ti":[0.141,0,0]},{"i":{"x":0.833,"y":0.808},"o":{"x":0.167,"y":0.136},"t":76,"s":[190.725,107.352,0],"to":[-0.141,0,0],"ti":[0.199,0,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.147},"t":77,"s":[190.207,107.352,0],"to":[-0.199,0,0],"ti":[0.246,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.154},"t":78,"s":[189.532,107.352,0],"to":[-0.246,0,0],"ti":[0.283,0,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.158},"t":79,"s":[188.731,107.352,0],"to":[-0.283,0,0],"ti":[0.309,0,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.161},"t":80,"s":[187.835,107.352,0],"to":[-0.309,0,0],"ti":[0.325,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.164},"t":81,"s":[186.876,107.352,0],"to":[-0.325,0,0],"ti":[0.33,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":82,"s":[185.885,107.352,0],"to":[-0.33,0,0],"ti":[0.325,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.169},"t":83,"s":[184.893,107.352,0],"to":[-0.325,0,0],"ti":[0.31,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.172},"t":84,"s":[183.932,107.352,0],"to":[-0.31,0,0],"ti":[0.284,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.176},"t":85,"s":[183.033,107.352,0],"to":[-0.284,0,0],"ti":[0.248,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.182},"t":86,"s":[182.227,107.352,0],"to":[-0.248,0,0],"ti":[0.201,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.191},"t":87,"s":[181.546,107.352,0],"to":[-0.201,0,0],"ti":[0.144,0,0]},{"i":{"x":0.833,"y":0.389},"o":{"x":0.167,"y":0.213},"t":88,"s":[181.021,107.352,0],"to":[-0.144,0,0],"ti":[0.076,0,0]},{"i":{"x":0.833,"y":0.336},"o":{"x":0.167,"y":0.096},"t":89,"s":[180.683,107.352,0],"to":[-0.076,0,0],"ti":[2.507,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.095},"t":90,"s":[180.563,107.352,0],"to":[-2.507,0,0],"ti":[4.761,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":91,"s":[165.643,107.352,0],"to":[-4.761,0,0],"ti":[4.345,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":92,"s":[151.996,107.352,0],"to":[-4.345,0,0],"ti":[3.947,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":93,"s":[139.57,107.352,0],"to":[-3.947,0,0],"ti":[3.567,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":94,"s":[128.313,107.352,0],"to":[-3.567,0,0],"ti":[3.203,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":95,"s":[118.171,107.352,0],"to":[-3.203,0,0],"ti":[2.858,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":96,"s":[109.093,107.352,0],"to":[-2.858,0,0],"ti":[2.529,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":97,"s":[101.026,107.352,0],"to":[-2.529,0,0],"ti":[2.218,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":98,"s":[93.918,107.352,0],"to":[-2.218,0,0],"ti":[1.925,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":99,"s":[87.715,107.352,0],"to":[-1.925,0,0],"ti":[1.649,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":100,"s":[82.367,107.352,0],"to":[-1.649,0,0],"ti":[1.391,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.183},"t":101,"s":[77.819,107.352,0],"to":[-1.391,0,0],"ti":[1.15,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.185},"t":102,"s":[74.021,107.352,0],"to":[-1.15,0,0],"ti":[0.927,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":103,"s":[70.919,107.352,0],"to":[-0.927,0,0],"ti":[0.721,0,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.193},"t":104,"s":[68.461,107.352,0],"to":[-0.721,0,0],"ti":[0.532,0,0]},{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.201},"t":105,"s":[66.594,107.352,0],"to":[-0.532,0,0],"ti":[0.361,0,0]},{"i":{"x":0.833,"y":0.876},"o":{"x":0.167,"y":0.215},"t":106,"s":[65.267,107.352,0],"to":[-0.361,0,0],"ti":[0.208,0,0]},{"i":{"x":0.833,"y":0.898},"o":{"x":0.167,"y":0.256},"t":107,"s":[64.426,107.352,0],"to":[-0.208,0,0],"ti":[0.072,0,0]},{"i":{"x":0.833,"y":0.635},"o":{"x":0.167,"y":0.459},"t":108,"s":[64.02,107.352,0],"to":[-0.072,0,0],"ti":[-0.047,0,0]},{"i":{"x":0.833,"y":0.758},"o":{"x":0.167,"y":0.108},"t":109,"s":[63.995,107.352,0],"to":[0.047,0,0],"ti":[-0.148,0,0]},{"i":{"x":0.833,"y":0.801},"o":{"x":0.167,"y":0.127},"t":110,"s":[64.3,107.352,0],"to":[0.148,0,0],"ti":[-0.231,0,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.143},"t":111,"s":[64.882,107.352,0],"to":[0.231,0,0],"ti":[-0.297,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.152},"t":112,"s":[65.688,107.352,0],"to":[0.297,0,0],"ti":[-0.346,0,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.158},"t":113,"s":[66.667,107.352,0],"to":[0.346,0,0],"ti":[-0.377,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.162},"t":114,"s":[67.764,107.352,0],"to":[0.377,0,0],"ti":[-0.391,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.166},"t":115,"s":[68.93,107.352,0],"to":[0.391,0,0],"ti":[-0.387,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.169},"t":116,"s":[70.11,107.352,0],"to":[0.387,0,0],"ti":[-0.366,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.174},"t":117,"s":[71.252,107.352,0],"to":[0.366,0,0],"ti":[-0.327,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.18},"t":118,"s":[72.304,107.352,0],"to":[0.327,0,0],"ti":[-0.271,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.189},"t":119,"s":[73.214,107.352,0],"to":[0.271,0,0],"ti":[-0.197,0,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.211},"t":120,"s":[73.928,107.352,0],"to":[0.197,0,0],"ti":[-0.106,0,0]},{"i":{"x":0.833,"y":0.917},"o":{"x":0.167,"y":0.316},"t":121,"s":[74.396,107.352,0],"to":[0.106,0,0],"ti":[-0.028,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":142,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":155,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":157,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":164,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":170,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":172,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":174,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":175,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":176,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":177,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":178,"s":[74.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[74.563,107.352,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"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]},"t":20,"s":[100,100,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":21,"f":"SegoeUIHistoric","t":"D","j":2,"tr":0,"lh":25.2,"ls":0,"fc":[0.086,0.086,0.086]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":5,"nm":"a","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.898]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.456]},"t":1,"s":[81.741]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[1.522]},"t":2,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":11,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":16,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":18,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":22,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":23,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":28,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":29,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":31,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":32,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":33,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":35,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":36,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":37,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":39,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":42,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":43,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":44,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":47,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":49,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":52,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":53,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":57,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":58,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":64,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":112,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":113,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":114,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":115,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":116,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":122,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":126,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":128,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":129,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":137,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":139,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":141,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":143,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":147,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":149,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":150,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":151,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":154,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":158,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":162,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":163,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":164,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"t":179,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":90,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.167},"t":0,"s":[217.813,107.352,0],"to":[-1.883,0,0],"ti":[3.509,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":1,"s":[206.513,107.352,0],"to":[-3.509,0,0],"ti":[3.012,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":2,"s":[196.758,107.352,0],"to":[-3.012,0,0],"ti":[2.549,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":3,"s":[188.443,107.352,0],"to":[-2.549,0,0],"ti":[2.121,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":4,"s":[181.464,107.352,0],"to":[-2.121,0,0],"ti":[1.728,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":5,"s":[175.716,107.352,0],"to":[-1.728,0,0],"ti":[1.37,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":6,"s":[171.096,107.352,0],"to":[-1.37,0,0],"ti":[1.046,0,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.195},"t":7,"s":[167.498,107.352,0],"to":[-1.046,0,0],"ti":[0.758,0,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.203},"t":8,"s":[164.818,107.352,0],"to":[-0.758,0,0],"ti":[0.504,0,0]},{"i":{"x":0.833,"y":0.877},"o":{"x":0.167,"y":0.218},"t":9,"s":[162.952,107.352,0],"to":[-0.504,0,0],"ti":[0.284,0,0]},{"i":{"x":0.833,"y":0.899},"o":{"x":0.167,"y":0.258},"t":10,"s":[161.797,107.352,0],"to":[-0.284,0,0],"ti":[0.1,0,0]},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.48},"t":11,"s":[161.246,107.352,0],"to":[-0.1,0,0],"ti":[-0.05,0,0]},{"i":{"x":0.833,"y":0.763},"o":{"x":0.167,"y":0.111},"t":12,"s":[161.196,107.352,0],"to":[0.05,0,0],"ti":[-0.164,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.129},"t":13,"s":[161.543,107.352,0],"to":[0.164,0,0],"ti":[-0.244,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.148},"t":14,"s":[162.183,107.352,0],"to":[0.244,0,0],"ti":[-0.29,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.159},"t":15,"s":[163.01,107.352,0],"to":[0.29,0,0],"ti":[-0.3,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.169},"t":16,"s":[163.921,107.352,0],"to":[0.3,0,0],"ti":[-0.276,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.18},"t":17,"s":[164.811,107.352,0],"to":[0.276,0,0],"ti":[-0.217,0,0]},{"i":{"x":0.833,"y":0.532},"o":{"x":0.167,"y":0.202},"t":18,"s":[165.576,107.352,0],"to":[0.217,0,0],"ti":[-0.123,0,0]},{"i":{"x":0.833,"y":0.382},"o":{"x":0.167,"y":0.101},"t":19,"s":[166.111,107.352,0],"to":[0.123,0,0],"ti":[2.611,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.096},"t":20,"s":[166.313,107.352,0],"to":[-2.611,0,0],"ti":[5.049,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":21,"s":[150.444,107.352,0],"to":[-5.049,0,0],"ti":[4.578,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":22,"s":[136.02,107.352,0],"to":[-4.578,0,0],"ti":[4.128,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":23,"s":[122.977,107.352,0],"to":[-4.128,0,0],"ti":[3.7,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":24,"s":[111.252,107.352,0],"to":[-3.7,0,0],"ti":[3.292,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":25,"s":[100.78,107.352,0],"to":[-3.292,0,0],"ti":[2.906,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":26,"s":[91.498,107.352,0],"to":[-2.906,0,0],"ti":[2.541,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":27,"s":[83.343,107.352,0],"to":[-2.541,0,0],"ti":[2.198,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":28,"s":[76.25,107.352,0],"to":[-2.198,0,0],"ti":[1.875,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":29,"s":[70.157,107.352,0],"to":[-1.875,0,0],"ti":[1.574,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.184},"t":30,"s":[64.999,107.352,0],"to":[-1.574,0,0],"ti":[1.294,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.186},"t":31,"s":[60.714,107.352,0],"to":[-1.294,0,0],"ti":[1.035,0,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.189},"t":32,"s":[57.236,107.352,0],"to":[-1.035,0,0],"ti":[0.797,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.194},"t":33,"s":[54.503,107.352,0],"to":[-0.797,0,0],"ti":[0.581,0,0]},{"i":{"x":0.833,"y":0.866},"o":{"x":0.167,"y":0.203},"t":34,"s":[52.451,107.352,0],"to":[-0.581,0,0],"ti":[0.386,0,0]},{"i":{"x":0.833,"y":0.88},"o":{"x":0.167,"y":0.219},"t":35,"s":[51.017,107.352,0],"to":[-0.386,0,0],"ti":[0.212,0,0]},{"i":{"x":0.833,"y":0.895},"o":{"x":0.167,"y":0.271},"t":36,"s":[50.136,107.352,0],"to":[-0.212,0,0],"ti":[0.059,0,0]},{"i":{"x":0.833,"y":0.594},"o":{"x":0.167,"y":0.399},"t":37,"s":[49.746,107.352,0],"to":[-0.059,0,0],"ti":[-0.072,0,0]},{"i":{"x":0.833,"y":0.771},"o":{"x":0.167,"y":0.105},"t":38,"s":[49.782,107.352,0],"to":[0.072,0,0],"ti":[-0.183,0,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.131},"t":39,"s":[50.18,107.352,0],"to":[0.183,0,0],"ti":[-0.272,0,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.146},"t":40,"s":[50.878,107.352,0],"to":[0.272,0,0],"ti":[-0.34,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.154},"t":41,"s":[51.812,107.352,0],"to":[0.34,0,0],"ti":[-0.387,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.159},"t":42,"s":[52.917,107.352,0],"to":[0.387,0,0],"ti":[-0.412,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.164},"t":43,"s":[54.131,107.352,0],"to":[0.412,0,0],"ti":[-0.416,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.168},"t":44,"s":[55.389,107.352,0],"to":[0.416,0,0],"ti":[-0.399,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.173},"t":45,"s":[56.629,107.352,0],"to":[0.399,0,0],"ti":[-0.361,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.179},"t":46,"s":[57.785,107.352,0],"to":[0.361,0,0],"ti":[-0.302,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.189},"t":47,"s":[58.796,107.352,0],"to":[0.302,0,0],"ti":[-0.221,0,0]},{"i":{"x":0.833,"y":0.651},"o":{"x":0.167,"y":0.21},"t":48,"s":[59.596,107.352,0],"to":[0.221,0,0],"ti":[-0.119,0,0]},{"i":{"x":0.833,"y":0.319},"o":{"x":0.167,"y":0.109},"t":49,"s":[60.123,107.352,0],"to":[0.119,0,0],"ti":[-2.038,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.095},"t":50,"s":[60.313,107.352,0],"to":[2.038,0,0],"ti":[-3.876,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":51,"s":[72.352,107.352,0],"to":[3.876,0,0],"ti":[-3.607,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":52,"s":[83.57,107.352,0],"to":[3.607,0,0],"ti":[-3.346,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":53,"s":[93.993,107.352,0],"to":[3.346,0,0],"ti":[-3.095,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":54,"s":[103.649,107.352,0],"to":[3.095,0,0],"ti":[-2.852,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":55,"s":[112.563,107.352,0],"to":[2.852,0,0],"ti":[-2.619,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":56,"s":[120.763,107.352,0],"to":[2.619,0,0],"ti":[-2.394,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":57,"s":[128.276,107.352,0],"to":[2.394,0,0],"ti":[-2.178,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":58,"s":[135.128,107.352,0],"to":[2.178,0,0],"ti":[-1.972,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":59,"s":[141.347,107.352,0],"to":[1.972,0,0],"ti":[-1.774,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":60,"s":[146.958,107.352,0],"to":[1.774,0,0],"ti":[-1.585,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":61,"s":[151.99,107.352,0],"to":[1.585,0,0],"ti":[-1.405,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":62,"s":[156.469,107.352,0],"to":[1.405,0,0],"ti":[-1.234,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":63,"s":[160.421,107.352,0],"to":[1.234,0,0],"ti":[-1.072,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":64,"s":[163.875,107.352,0],"to":[1.072,0,0],"ti":[-0.919,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":65,"s":[166.855,107.352,0],"to":[0.919,0,0],"ti":[-0.775,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.183},"t":66,"s":[169.39,107.352,0],"to":[0.775,0,0],"ti":[-0.64,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.186},"t":67,"s":[171.506,107.352,0],"to":[0.64,0,0],"ti":[-0.514,0,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.189},"t":68,"s":[173.23,107.352,0],"to":[0.514,0,0],"ti":[-0.397,0,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.194},"t":69,"s":[174.588,107.352,0],"to":[0.397,0,0],"ti":[-0.288,0,0]},{"i":{"x":0.833,"y":0.867},"o":{"x":0.167,"y":0.203},"t":70,"s":[175.609,107.352,0],"to":[0.288,0,0],"ti":[-0.189,0,0]},{"i":{"x":0.833,"y":0.884},"o":{"x":0.167,"y":0.223},"t":71,"s":[176.318,107.352,0],"to":[0.189,0,0],"ti":[-0.098,0,0]},{"i":{"x":0.833,"y":0.879},"o":{"x":0.167,"y":0.296},"t":72,"s":[176.742,107.352,0],"to":[0.098,0,0],"ti":[-0.017,0,0]},{"i":{"x":0.833,"y":0.617},"o":{"x":0.167,"y":0.269},"t":73,"s":[176.909,107.352,0],"to":[0.017,0,0],"ti":[0.055,0,0]},{"i":{"x":0.833,"y":0.778},"o":{"x":0.167,"y":0.107},"t":74,"s":[176.844,107.352,0],"to":[-0.055,0,0],"ti":[0.119,0,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.134},"t":75,"s":[176.576,107.352,0],"to":[-0.119,0,0],"ti":[0.174,0,0]},{"i":{"x":0.833,"y":0.816},"o":{"x":0.167,"y":0.146},"t":76,"s":[176.13,107.352,0],"to":[-0.174,0,0],"ti":[0.219,0,0]},{"i":{"x":0.833,"y":0.822},"o":{"x":0.167,"y":0.152},"t":77,"s":[175.534,107.352,0],"to":[-0.219,0,0],"ti":[0.256,0,0]},{"i":{"x":0.833,"y":0.826},"o":{"x":0.167,"y":0.157},"t":78,"s":[174.814,107.352,0],"to":[-0.256,0,0],"ti":[0.284,0,0]},{"i":{"x":0.833,"y":0.829},"o":{"x":0.167,"y":0.16},"t":79,"s":[173.998,107.352,0],"to":[-0.284,0,0],"ti":[0.303,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.163},"t":80,"s":[173.111,107.352,0],"to":[-0.303,0,0],"ti":[0.312,0,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.165},"t":81,"s":[172.182,107.352,0],"to":[-0.312,0,0],"ti":[0.313,0,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.168},"t":82,"s":[171.237,107.352,0],"to":[-0.313,0,0],"ti":[0.305,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.17},"t":83,"s":[170.302,107.352,0],"to":[-0.305,0,0],"ti":[0.288,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.173},"t":84,"s":[169.405,107.352,0],"to":[-0.288,0,0],"ti":[0.262,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.177},"t":85,"s":[168.572,107.352,0],"to":[-0.262,0,0],"ti":[0.228,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.182},"t":86,"s":[167.83,107.352,0],"to":[-0.228,0,0],"ti":[0.184,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.192},"t":87,"s":[167.207,107.352,0],"to":[-0.184,0,0],"ti":[0.131,0,0]},{"i":{"x":0.833,"y":0.296},"o":{"x":0.167,"y":0.213},"t":88,"s":[166.728,107.352,0],"to":[-0.131,0,0],"ti":[0.069,0,0]},{"i":{"x":0.833,"y":0.339},"o":{"x":0.167,"y":0.095},"t":89,"s":[166.421,107.352,0],"to":[-0.069,0,0],"ti":[2.663,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.095},"t":90,"s":[166.313,107.352,0],"to":[-2.663,0,0],"ti":[5.049,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":91,"s":[150.444,107.352,0],"to":[-5.049,0,0],"ti":[4.578,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":92,"s":[136.02,107.352,0],"to":[-4.578,0,0],"ti":[4.128,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":93,"s":[122.977,107.352,0],"to":[-4.128,0,0],"ti":[3.7,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":94,"s":[111.252,107.352,0],"to":[-3.7,0,0],"ti":[3.292,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":95,"s":[100.78,107.352,0],"to":[-3.292,0,0],"ti":[2.906,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":96,"s":[91.498,107.352,0],"to":[-2.906,0,0],"ti":[2.541,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":97,"s":[83.343,107.352,0],"to":[-2.541,0,0],"ti":[2.198,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":98,"s":[76.25,107.352,0],"to":[-2.198,0,0],"ti":[1.875,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.182},"t":99,"s":[70.157,107.352,0],"to":[-1.875,0,0],"ti":[1.574,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.184},"t":100,"s":[64.999,107.352,0],"to":[-1.574,0,0],"ti":[1.294,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.186},"t":101,"s":[60.714,107.352,0],"to":[-1.294,0,0],"ti":[1.035,0,0]},{"i":{"x":0.833,"y":0.854},"o":{"x":0.167,"y":0.189},"t":102,"s":[57.236,107.352,0],"to":[-1.035,0,0],"ti":[0.797,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.194},"t":103,"s":[54.503,107.352,0],"to":[-0.797,0,0],"ti":[0.581,0,0]},{"i":{"x":0.833,"y":0.866},"o":{"x":0.167,"y":0.203},"t":104,"s":[52.451,107.352,0],"to":[-0.581,0,0],"ti":[0.386,0,0]},{"i":{"x":0.833,"y":0.88},"o":{"x":0.167,"y":0.219},"t":105,"s":[51.017,107.352,0],"to":[-0.386,0,0],"ti":[0.212,0,0]},{"i":{"x":0.833,"y":0.895},"o":{"x":0.167,"y":0.271},"t":106,"s":[50.136,107.352,0],"to":[-0.212,0,0],"ti":[0.059,0,0]},{"i":{"x":0.833,"y":0.594},"o":{"x":0.167,"y":0.399},"t":107,"s":[49.746,107.352,0],"to":[-0.059,0,0],"ti":[-0.072,0,0]},{"i":{"x":0.833,"y":0.771},"o":{"x":0.167,"y":0.105},"t":108,"s":[49.782,107.352,0],"to":[0.072,0,0],"ti":[-0.183,0,0]},{"i":{"x":0.833,"y":0.805},"o":{"x":0.167,"y":0.131},"t":109,"s":[50.18,107.352,0],"to":[0.183,0,0],"ti":[-0.272,0,0]},{"i":{"x":0.833,"y":0.818},"o":{"x":0.167,"y":0.146},"t":110,"s":[50.878,107.352,0],"to":[0.272,0,0],"ti":[-0.34,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.154},"t":111,"s":[51.812,107.352,0],"to":[0.34,0,0],"ti":[-0.387,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.159},"t":112,"s":[52.917,107.352,0],"to":[0.387,0,0],"ti":[-0.412,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.164},"t":113,"s":[54.131,107.352,0],"to":[0.412,0,0],"ti":[-0.416,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.168},"t":114,"s":[55.389,107.352,0],"to":[0.416,0,0],"ti":[-0.399,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.173},"t":115,"s":[56.629,107.352,0],"to":[0.399,0,0],"ti":[-0.361,0,0]},{"i":{"x":0.833,"y":0.851},"o":{"x":0.167,"y":0.179},"t":116,"s":[57.785,107.352,0],"to":[0.361,0,0],"ti":[-0.302,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.189},"t":117,"s":[58.796,107.352,0],"to":[0.302,0,0],"ti":[-0.221,0,0]},{"i":{"x":0.833,"y":0.887},"o":{"x":0.167,"y":0.21},"t":118,"s":[59.596,107.352,0],"to":[0.221,0,0],"ti":[-0.119,0,0]},{"i":{"x":0.833,"y":0.917},"o":{"x":0.167,"y":0.315},"t":119,"s":[60.123,107.352,0],"to":[0.119,0,0],"ti":[-0.032,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":121,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":142,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":155,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":157,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":164,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":170,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":172,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":174,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":175,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":176,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":177,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":178,"s":[60.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[60.313,107.352,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"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]},"t":20,"s":[100,100,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":21,"f":"SegoeUIHistoric","t":"A","j":2,"tr":0,"lh":25.2,"ls":0,"fc":[0.086,0.086,0.086]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":5,"nm":"o","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.898]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.456]},"t":1,"s":[81.741]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[1.522]},"t":2,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":11,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":16,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":18,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":22,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":23,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":28,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":29,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":31,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":32,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":33,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":35,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":36,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":37,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":39,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":42,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":43,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":44,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":47,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":49,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":52,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":53,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":57,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":58,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":64,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":112,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":113,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":114,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":115,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":116,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":122,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":126,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":128,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":129,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":137,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":139,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":141,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":143,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":147,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":149,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":150,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":151,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":154,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":158,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":162,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":163,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":164,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"t":179,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":90,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.167},"t":0,"s":[218.063,107.352,0],"to":[-2.432,0,0],"ti":[4.531,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":1,"s":[203.472,107.352,0],"to":[-4.531,0,0],"ti":[3.889,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":2,"s":[190.876,107.352,0],"to":[-3.889,0,0],"ti":[3.291,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":3,"s":[180.139,107.352,0],"to":[-3.291,0,0],"ti":[2.739,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":4,"s":[171.127,107.352,0],"to":[-2.739,0,0],"ti":[2.231,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":5,"s":[163.705,107.352,0],"to":[-2.231,0,0],"ti":[1.769,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":6,"s":[157.739,107.352,0],"to":[-1.769,0,0],"ti":[1.351,0,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.195},"t":7,"s":[153.093,107.352,0],"to":[-1.351,0,0],"ti":[0.978,0,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.203},"t":8,"s":[149.633,107.352,0],"to":[-0.978,0,0],"ti":[0.65,0,0]},{"i":{"x":0.833,"y":0.877},"o":{"x":0.167,"y":0.218},"t":9,"s":[147.224,107.352,0],"to":[-0.65,0,0],"ti":[0.367,0,0]},{"i":{"x":0.833,"y":0.899},"o":{"x":0.167,"y":0.258},"t":10,"s":[145.731,107.352,0],"to":[-0.367,0,0],"ti":[0.129,0,0]},{"i":{"x":0.833,"y":0.665},"o":{"x":0.167,"y":0.482},"t":11,"s":[145.02,107.352,0],"to":[-0.129,0,0],"ti":[-0.064,0,0]},{"i":{"x":0.833,"y":0.763},"o":{"x":0.167,"y":0.111},"t":12,"s":[144.956,107.352,0],"to":[0.064,0,0],"ti":[-0.212,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.129},"t":13,"s":[145.404,107.352,0],"to":[0.212,0,0],"ti":[-0.316,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.148},"t":14,"s":[146.23,107.352,0],"to":[0.316,0,0],"ti":[-0.374,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.159},"t":15,"s":[147.298,107.352,0],"to":[0.374,0,0],"ti":[-0.388,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.169},"t":16,"s":[148.474,107.352,0],"to":[0.388,0,0],"ti":[-0.356,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.18},"t":17,"s":[149.623,107.352,0],"to":[0.356,0,0],"ti":[-0.28,0,0]},{"i":{"x":0.833,"y":0.595},"o":{"x":0.167,"y":0.202},"t":18,"s":[150.611,107.352,0],"to":[0.28,0,0],"ti":[-0.159,0,0]},{"i":{"x":0.833,"y":0.388},"o":{"x":0.167,"y":0.105},"t":19,"s":[151.303,107.352,0],"to":[0.159,0,0],"ti":[2.781,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.096},"t":20,"s":[151.563,107.352,0],"to":[-2.781,0,0],"ti":[5.373,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":21,"s":[134.617,107.352,0],"to":[-5.373,0,0],"ti":[4.835,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":22,"s":[119.324,107.352,0],"to":[-4.835,0,0],"ti":[4.323,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":23,"s":[105.606,107.352,0],"to":[-4.323,0,0],"ti":[3.837,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":24,"s":[93.384,107.352,0],"to":[-3.837,0,0],"ti":[3.378,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":25,"s":[82.581,107.352,0],"to":[-3.378,0,0],"ti":[2.944,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":26,"s":[73.119,107.352,0],"to":[-2.944,0,0],"ti":[2.536,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":27,"s":[64.918,107.352,0],"to":[-2.536,0,0],"ti":[2.155,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.182},"t":28,"s":[57.9,107.352,0],"to":[-2.155,0,0],"ti":[1.8,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.184},"t":29,"s":[51.988,107.352,0],"to":[-1.8,0,0],"ti":[1.47,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":30,"s":[47.103,107.352,0],"to":[-1.47,0,0],"ti":[1.167,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":31,"s":[43.166,107.352,0],"to":[-1.167,0,0],"ti":[0.89,0,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.196},"t":32,"s":[40.1,107.352,0],"to":[-0.89,0,0],"ti":[0.639,0,0]},{"i":{"x":0.833,"y":0.867},"o":{"x":0.167,"y":0.205},"t":33,"s":[37.827,107.352,0],"to":[-0.639,0,0],"ti":[0.414,0,0]},{"i":{"x":0.833,"y":0.884},"o":{"x":0.167,"y":0.224},"t":34,"s":[36.267,107.352,0],"to":[-0.414,0,0],"ti":[0.215,0,0]},{"i":{"x":0.833,"y":0.884},"o":{"x":0.167,"y":0.293},"t":35,"s":[35.343,107.352,0],"to":[-0.215,0,0],"ti":[0.042,0,0]},{"i":{"x":0.833,"y":0.615},"o":{"x":0.167,"y":0.299},"t":36,"s":[34.976,107.352,0],"to":[-0.042,0,0],"ti":[-0.104,0,0]},{"i":{"x":0.833,"y":0.781},"o":{"x":0.167,"y":0.106},"t":37,"s":[35.089,107.352,0],"to":[0.104,0,0],"ti":[-0.225,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.135},"t":38,"s":[35.602,107.352,0],"to":[0.225,0,0],"ti":[-0.319,0,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.148},"t":39,"s":[36.438,107.352,0],"to":[0.319,0,0],"ti":[-0.388,0,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.156},"t":40,"s":[37.518,107.352,0],"to":[0.388,0,0],"ti":[-0.43,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.161},"t":41,"s":[38.764,107.352,0],"to":[0.43,0,0],"ti":[-0.446,0,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.166},"t":42,"s":[40.099,107.352,0],"to":[0.446,0,0],"ti":[-0.436,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.171},"t":43,"s":[41.442,107.352,0],"to":[0.436,0,0],"ti":[-0.4,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.178},"t":44,"s":[42.717,107.352,0],"to":[0.4,0,0],"ti":[-0.338,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.187},"t":45,"s":[43.845,107.352,0],"to":[0.338,0,0],"ti":[-0.25,0,0]},{"i":{"x":0.833,"y":0.696},"o":{"x":0.167,"y":0.209},"t":46,"s":[44.747,107.352,0],"to":[0.25,0,0],"ti":[-0.136,0,0]},{"i":{"x":0.833,"y":0.313},"o":{"x":0.167,"y":0.115},"t":47,"s":[45.346,107.352,0],"to":[0.136,0,0],"ti":[-1.95,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.095},"t":48,"s":[45.563,107.352,0],"to":[1.95,0,0],"ti":[-3.704,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":49,"s":[57.048,107.352,0],"to":[3.704,0,0],"ti":[-3.459,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":50,"s":[67.787,107.352,0],"to":[3.459,0,0],"ti":[-3.222,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":51,"s":[77.802,107.352,0],"to":[3.222,0,0],"ti":[-2.992,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":52,"s":[87.118,107.352,0],"to":[2.992,0,0],"ti":[-2.771,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":53,"s":[95.756,107.352,0],"to":[2.771,0,0],"ti":[-2.557,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":54,"s":[103.741,107.352,0],"to":[2.557,0,0],"ti":[-2.35,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":55,"s":[111.096,107.352,0],"to":[2.35,0,0],"ti":[-2.152,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":56,"s":[117.844,107.352,0],"to":[2.152,0,0],"ti":[-1.961,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":57,"s":[124.007,107.352,0],"to":[1.961,0,0],"ti":[-1.778,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":58,"s":[129.61,107.352,0],"to":[1.778,0,0],"ti":[-1.603,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":59,"s":[134.675,107.352,0],"to":[1.603,0,0],"ti":[-1.435,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":60,"s":[139.226,107.352,0],"to":[1.435,0,0],"ti":[-1.275,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":61,"s":[143.285,107.352,0],"to":[1.275,0,0],"ti":[-1.123,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.178},"t":62,"s":[146.877,107.352,0],"to":[1.123,0,0],"ti":[-0.979,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":63,"s":[150.023,107.352,0],"to":[0.979,0,0],"ti":[-0.842,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":64,"s":[152.748,107.352,0],"to":[0.842,0,0],"ti":[-0.713,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":65,"s":[155.074,107.352,0],"to":[0.713,0,0],"ti":[-0.592,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":66,"s":[157.025,107.352,0],"to":[0.592,0,0],"ti":[-0.478,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.188},"t":67,"s":[158.624,107.352,0],"to":[0.478,0,0],"ti":[-0.372,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.193},"t":68,"s":[159.895,107.352,0],"to":[0.372,0,0],"ti":[-0.274,0,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.201},"t":69,"s":[160.859,107.352,0],"to":[0.274,0,0],"ti":[-0.184,0,0]},{"i":{"x":0.833,"y":0.88},"o":{"x":0.167,"y":0.218},"t":70,"s":[161.541,107.352,0],"to":[0.184,0,0],"ti":[-0.101,0,0]},{"i":{"x":0.833,"y":0.892},"o":{"x":0.167,"y":0.272},"t":71,"s":[161.963,107.352,0],"to":[0.101,0,0],"ti":[-0.027,0,0]},{"i":{"x":0.833,"y":0.587},"o":{"x":0.167,"y":0.367},"t":72,"s":[162.15,107.352,0],"to":[0.027,0,0],"ti":[0.04,0,0]},{"i":{"x":0.833,"y":0.769},"o":{"x":0.167,"y":0.104},"t":73,"s":[162.123,107.352,0],"to":[-0.04,0,0],"ti":[0.1,0,0]},{"i":{"x":0.833,"y":0.802},"o":{"x":0.167,"y":0.13},"t":74,"s":[161.907,107.352,0],"to":[-0.1,0,0],"ti":[0.152,0,0]},{"i":{"x":0.833,"y":0.814},"o":{"x":0.167,"y":0.144},"t":75,"s":[161.524,107.352,0],"to":[-0.152,0,0],"ti":[0.195,0,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.151},"t":76,"s":[160.998,107.352,0],"to":[-0.195,0,0],"ti":[0.232,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.156},"t":77,"s":[160.351,107.352,0],"to":[-0.232,0,0],"ti":[0.26,0,0]},{"i":{"x":0.833,"y":0.828},"o":{"x":0.167,"y":0.159},"t":78,"s":[159.608,107.352,0],"to":[-0.26,0,0],"ti":[0.281,0,0]},{"i":{"x":0.833,"y":0.831},"o":{"x":0.167,"y":0.162},"t":79,"s":[158.79,107.352,0],"to":[-0.281,0,0],"ti":[0.294,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.164},"t":80,"s":[157.923,107.352,0],"to":[-0.294,0,0],"ti":[0.299,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.166},"t":81,"s":[157.027,107.352,0],"to":[-0.299,0,0],"ti":[0.297,0,0]},{"i":{"x":0.833,"y":0.837},"o":{"x":0.167,"y":0.168},"t":82,"s":[156.128,107.352,0],"to":[-0.297,0,0],"ti":[0.286,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.171},"t":83,"s":[155.247,107.352,0],"to":[-0.286,0,0],"ti":[0.269,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.174},"t":84,"s":[154.409,107.352,0],"to":[-0.269,0,0],"ti":[0.243,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.177},"t":85,"s":[153.636,107.352,0],"to":[-0.243,0,0],"ti":[0.21,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.183},"t":86,"s":[152.952,107.352,0],"to":[-0.21,0,0],"ti":[0.168,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.192},"t":87,"s":[152.379,107.352,0],"to":[-0.168,0,0],"ti":[0.12,0,0]},{"i":{"x":0.833,"y":0.186},"o":{"x":0.167,"y":0.214},"t":88,"s":[151.941,107.352,0],"to":[-0.12,0,0],"ti":[0.063,0,0]},{"i":{"x":0.833,"y":0.341},"o":{"x":0.167,"y":0.093},"t":89,"s":[151.661,107.352,0],"to":[-0.063,0,0],"ti":[2.841,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.095},"t":90,"s":[151.563,107.352,0],"to":[-2.841,0,0],"ti":[5.373,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":91,"s":[134.617,107.352,0],"to":[-5.373,0,0],"ti":[4.835,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":92,"s":[119.324,107.352,0],"to":[-4.835,0,0],"ti":[4.323,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":93,"s":[105.606,107.352,0],"to":[-4.323,0,0],"ti":[3.837,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":94,"s":[93.384,107.352,0],"to":[-3.837,0,0],"ti":[3.378,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":95,"s":[82.581,107.352,0],"to":[-3.378,0,0],"ti":[2.944,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":96,"s":[73.119,107.352,0],"to":[-2.944,0,0],"ti":[2.536,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":97,"s":[64.918,107.352,0],"to":[-2.536,0,0],"ti":[2.155,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.182},"t":98,"s":[57.9,107.352,0],"to":[-2.155,0,0],"ti":[1.8,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.184},"t":99,"s":[51.988,107.352,0],"to":[-1.8,0,0],"ti":[1.47,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":100,"s":[47.103,107.352,0],"to":[-1.47,0,0],"ti":[1.167,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":101,"s":[43.166,107.352,0],"to":[-1.167,0,0],"ti":[0.89,0,0]},{"i":{"x":0.833,"y":0.86},"o":{"x":0.167,"y":0.196},"t":102,"s":[40.1,107.352,0],"to":[-0.89,0,0],"ti":[0.639,0,0]},{"i":{"x":0.833,"y":0.867},"o":{"x":0.167,"y":0.205},"t":103,"s":[37.827,107.352,0],"to":[-0.639,0,0],"ti":[0.414,0,0]},{"i":{"x":0.833,"y":0.884},"o":{"x":0.167,"y":0.224},"t":104,"s":[36.267,107.352,0],"to":[-0.414,0,0],"ti":[0.215,0,0]},{"i":{"x":0.833,"y":0.884},"o":{"x":0.167,"y":0.293},"t":105,"s":[35.343,107.352,0],"to":[-0.215,0,0],"ti":[0.042,0,0]},{"i":{"x":0.833,"y":0.615},"o":{"x":0.167,"y":0.299},"t":106,"s":[34.976,107.352,0],"to":[-0.042,0,0],"ti":[-0.104,0,0]},{"i":{"x":0.833,"y":0.781},"o":{"x":0.167,"y":0.106},"t":107,"s":[35.089,107.352,0],"to":[0.104,0,0],"ti":[-0.225,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.135},"t":108,"s":[35.602,107.352,0],"to":[0.225,0,0],"ti":[-0.319,0,0]},{"i":{"x":0.833,"y":0.821},"o":{"x":0.167,"y":0.148},"t":109,"s":[36.438,107.352,0],"to":[0.319,0,0],"ti":[-0.388,0,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.156},"t":110,"s":[37.518,107.352,0],"to":[0.388,0,0],"ti":[-0.43,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.161},"t":111,"s":[38.764,107.352,0],"to":[0.43,0,0],"ti":[-0.446,0,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.166},"t":112,"s":[40.099,107.352,0],"to":[0.446,0,0],"ti":[-0.436,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.171},"t":113,"s":[41.442,107.352,0],"to":[0.436,0,0],"ti":[-0.4,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.178},"t":114,"s":[42.717,107.352,0],"to":[0.4,0,0],"ti":[-0.338,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.187},"t":115,"s":[43.845,107.352,0],"to":[0.338,0,0],"ti":[-0.25,0,0]},{"i":{"x":0.833,"y":0.886},"o":{"x":0.167,"y":0.209},"t":116,"s":[44.747,107.352,0],"to":[0.25,0,0],"ti":[-0.136,0,0]},{"i":{"x":0.833,"y":0.917},"o":{"x":0.167,"y":0.313},"t":117,"s":[45.346,107.352,0],"to":[0.136,0,0],"ti":[-0.036,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":119,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":121,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":142,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":155,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":157,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":164,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":170,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":172,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":174,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":175,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":176,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":177,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":178,"s":[45.563,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[45.563,107.352,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"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]},"t":20,"s":[100,100,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":21,"f":"SegoeUIHistoric","t":"O","j":2,"tr":0,"lh":25.2,"ls":0,"fc":[0.086,0.086,0.086]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":180,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":5,"nm":"L","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.898]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.917]},"o":{"x":[0.167],"y":[0.456]},"t":1,"s":[81.741]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[1.522]},"t":2,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":3,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":4,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":6,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":7,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":8,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":9,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":10,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":11,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":12,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":13,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":14,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":15,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":16,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":17,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":18,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":20,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":21,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":22,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":23,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":24,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":25,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":28,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":29,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":30,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":31,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":32,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":33,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":35,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":36,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":37,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":38,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":39,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":40,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":42,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":43,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":44,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":45,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":46,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":47,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":49,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":50,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":51,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":52,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":53,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":54,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":57,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":58,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":59,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":60,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":61,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":62,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":64,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":65,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":66,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":67,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":68,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":69,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":70,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":71,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":72,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":73,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":74,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":75,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":76,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":78,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":79,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":80,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":81,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":82,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":83,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":84,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":85,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":86,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":87,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":88,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":89,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":90,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":91,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":92,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":93,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":94,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":95,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":96,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":97,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":98,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":99,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":100,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":101,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":102,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":103,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":104,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":105,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":106,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":107,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":108,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":109,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":110,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":111,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":112,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":113,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":114,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":115,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":116,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":117,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":118,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":119,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":120,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":121,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":122,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":123,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":124,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":125,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":126,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":128,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":129,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":130,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":131,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":132,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":133,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":134,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":135,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":137,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":138,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":139,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":140,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":141,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":142,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":143,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":144,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":145,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":146,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":147,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":148,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":149,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":150,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":151,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":152,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":153,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":154,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":155,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":156,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":157,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":158,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":159,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":160,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":161,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":162,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":163,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":164,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":165,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":166,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":167,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":168,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":169,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":170,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":171,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":172,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":173,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":174,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":175,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":176,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":178,"s":[100]},{"t":179,"s":[100]}],"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"t":90,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.167},"t":0,"s":[215.813,107.352,0],"to":[-2.834,0,0],"ti":[5.281,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":1,"s":[198.809,107.352,0],"to":[-5.281,0,0],"ti":[4.532,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":2,"s":[184.129,107.352,0],"to":[-4.532,0,0],"ti":[3.836,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":3,"s":[171.616,107.352,0],"to":[-3.836,0,0],"ti":[3.192,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":4,"s":[161.113,107.352,0],"to":[-3.192,0,0],"ti":[2.601,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.187},"t":5,"s":[152.464,107.352,0],"to":[-2.601,0,0],"ti":[2.061,0,0]},{"i":{"x":0.833,"y":0.855},"o":{"x":0.167,"y":0.19},"t":6,"s":[145.51,107.352,0],"to":[-2.061,0,0],"ti":[1.574,0,0]},{"i":{"x":0.833,"y":0.859},"o":{"x":0.167,"y":0.195},"t":7,"s":[140.096,107.352,0],"to":[-1.574,0,0],"ti":[1.14,0,0]},{"i":{"x":0.833,"y":0.865},"o":{"x":0.167,"y":0.203},"t":8,"s":[136.063,107.352,0],"to":[-1.14,0,0],"ti":[0.758,0,0]},{"i":{"x":0.833,"y":0.877},"o":{"x":0.167,"y":0.218},"t":9,"s":[133.256,107.352,0],"to":[-0.758,0,0],"ti":[0.428,0,0]},{"i":{"x":0.833,"y":0.899},"o":{"x":0.167,"y":0.258},"t":10,"s":[131.516,107.352,0],"to":[-0.428,0,0],"ti":[0.151,0,0]},{"i":{"x":0.833,"y":0.667},"o":{"x":0.167,"y":0.48},"t":11,"s":[130.688,107.352,0],"to":[-0.151,0,0],"ti":[-0.075,0,0]},{"i":{"x":0.833,"y":0.763},"o":{"x":0.167,"y":0.111},"t":12,"s":[130.613,107.352,0],"to":[0.075,0,0],"ti":[-0.247,0,0]},{"i":{"x":0.833,"y":0.809},"o":{"x":0.167,"y":0.129},"t":13,"s":[131.135,107.352,0],"to":[0.247,0,0],"ti":[-0.368,0,0]},{"i":{"x":0.833,"y":0.825},"o":{"x":0.167,"y":0.148},"t":14,"s":[132.098,107.352,0],"to":[0.368,0,0],"ti":[-0.436,0,0]},{"i":{"x":0.833,"y":0.835},"o":{"x":0.167,"y":0.159},"t":15,"s":[133.342,107.352,0],"to":[0.436,0,0],"ti":[-0.452,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.169},"t":16,"s":[134.713,107.352,0],"to":[0.452,0,0],"ti":[-0.415,0,0]},{"i":{"x":0.833,"y":0.858},"o":{"x":0.167,"y":0.18},"t":17,"s":[136.052,107.352,0],"to":[0.415,0,0],"ti":[-0.326,0,0]},{"i":{"x":0.833,"y":0.619},"o":{"x":0.167,"y":0.202},"t":18,"s":[137.204,107.352,0],"to":[0.326,0,0],"ti":[-0.185,0,0]},{"i":{"x":0.833,"y":0.39},"o":{"x":0.167,"y":0.107},"t":19,"s":[138.009,107.352,0],"to":[0.185,0,0],"ti":[2.979,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.097},"t":20,"s":[138.313,107.352,0],"to":[-2.979,0,0],"ti":[5.742,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":21,"s":[120.133,107.352,0],"to":[-5.742,0,0],"ti":[5.121,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":22,"s":[103.863,107.352,0],"to":[-5.121,0,0],"ti":[4.533,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":23,"s":[89.406,107.352,0],"to":[-4.533,0,0],"ti":[3.978,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":24,"s":[76.663,107.352,0],"to":[-3.978,0,0],"ti":[3.455,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":25,"s":[65.538,107.352,0],"to":[-3.455,0,0],"ti":[2.965,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":26,"s":[55.931,107.352,0],"to":[-2.965,0,0],"ti":[2.508,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":27,"s":[47.747,107.352,0],"to":[-2.508,0,0],"ti":[2.083,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":28,"s":[40.886,107.352,0],"to":[-2.083,0,0],"ti":[1.69,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.188},"t":29,"s":[35.251,107.352,0],"to":[-1.69,0,0],"ti":[1.33,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.191},"t":30,"s":[30.745,107.352,0],"to":[-1.33,0,0],"ti":[1.003,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.197},"t":31,"s":[27.269,107.352,0],"to":[-1.003,0,0],"ti":[0.709,0,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.207},"t":32,"s":[24.725,107.352,0],"to":[-0.709,0,0],"ti":[0.447,0,0]},{"i":{"x":0.833,"y":0.888},"o":{"x":0.167,"y":0.23},"t":33,"s":[23.017,107.352,0],"to":[-0.447,0,0],"ti":[0.217,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.327},"t":34,"s":[22.046,107.352,0],"to":[-0.217,0,0],"ti":[0.02,0,0]},{"i":{"x":0.833,"y":0.664},"o":{"x":0.167,"y":0.211},"t":35,"s":[21.714,107.352,0],"to":[-0.02,0,0],"ti":[-0.144,0,0]},{"i":{"x":0.833,"y":0.789},"o":{"x":0.167,"y":0.111},"t":36,"s":[21.924,107.352,0],"to":[0.144,0,0],"ti":[-0.276,0,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.138},"t":37,"s":[22.579,107.352,0],"to":[0.276,0,0],"ti":[-0.375,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.15},"t":38,"s":[23.579,107.352,0],"to":[0.375,0,0],"ti":[-0.441,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.158},"t":39,"s":[24.828,107.352,0],"to":[0.441,0,0],"ti":[-0.475,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.164},"t":40,"s":[26.227,107.352,0],"to":[0.475,0,0],"ti":[-0.477,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.169},"t":41,"s":[27.679,107.352,0],"to":[0.477,0,0],"ti":[-0.445,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.176},"t":42,"s":[29.087,107.352,0],"to":[0.445,0,0],"ti":[-0.382,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.186},"t":43,"s":[30.352,107.352,0],"to":[0.382,0,0],"ti":[-0.285,0,0]},{"i":{"x":0.833,"y":0.735},"o":{"x":0.167,"y":0.208},"t":44,"s":[31.376,107.352,0],"to":[0.285,0,0],"ti":[-0.156,0,0]},{"i":{"x":0.833,"y":0.305},"o":{"x":0.167,"y":0.122},"t":45,"s":[32.062,107.352,0],"to":[0.156,0,0],"ti":[-1.872,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.095},"t":46,"s":[32.313,107.352,0],"to":[1.872,0,0],"ti":[-3.546,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":47,"s":[43.292,107.352,0],"to":[3.546,0,0],"ti":[-3.323,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.172},"t":48,"s":[53.591,107.352,0],"to":[3.323,0,0],"ti":[-3.106,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":49,"s":[63.228,107.352,0],"to":[3.106,0,0],"ti":[-2.896,0,0]},{"i":{"x":0.833,"y":0.839},"o":{"x":0.167,"y":0.173},"t":50,"s":[72.225,107.352,0],"to":[2.896,0,0],"ti":[-2.692,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":51,"s":[80.601,107.352,0],"to":[2.692,0,0],"ti":[-2.495,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.173},"t":52,"s":[88.377,107.352,0],"to":[2.495,0,0],"ti":[-2.305,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":53,"s":[95.573,107.352,0],"to":[2.305,0,0],"ti":[-2.122,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.174},"t":54,"s":[102.209,107.352,0],"to":[2.122,0,0],"ti":[-1.945,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.174},"t":55,"s":[108.305,107.352,0],"to":[1.945,0,0],"ti":[-1.776,0,0]},{"i":{"x":0.833,"y":0.841},"o":{"x":0.167,"y":0.175},"t":56,"s":[113.881,107.352,0],"to":[1.776,0,0],"ti":[-1.612,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.175},"t":57,"s":[118.958,107.352,0],"to":[1.612,0,0],"ti":[-1.456,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.176},"t":58,"s":[123.556,107.352,0],"to":[1.456,0,0],"ti":[-1.306,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":59,"s":[127.695,107.352,0],"to":[1.306,0,0],"ti":[-1.163,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":60,"s":[131.394,107.352,0],"to":[1.163,0,0],"ti":[-1.027,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":61,"s":[134.675,107.352,0],"to":[1.027,0,0],"ti":[-0.898,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":62,"s":[137.557,107.352,0],"to":[0.898,0,0],"ti":[-0.775,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.181},"t":63,"s":[140.061,107.352,0],"to":[0.775,0,0],"ti":[-0.659,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.182},"t":64,"s":[142.206,107.352,0],"to":[0.659,0,0],"ti":[-0.549,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.184},"t":65,"s":[144.014,107.352,0],"to":[0.549,0,0],"ti":[-0.447,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.187},"t":66,"s":[145.503,107.352,0],"to":[0.447,0,0],"ti":[-0.351,0,0]},{"i":{"x":0.833,"y":0.857},"o":{"x":0.167,"y":0.192},"t":67,"s":[146.695,107.352,0],"to":[0.351,0,0],"ti":[-0.262,0,0]},{"i":{"x":0.833,"y":0.863},"o":{"x":0.167,"y":0.199},"t":68,"s":[147.609,107.352,0],"to":[0.262,0,0],"ti":[-0.179,0,0]},{"i":{"x":0.833,"y":0.876},"o":{"x":0.167,"y":0.214},"t":69,"s":[148.266,107.352,0],"to":[0.179,0,0],"ti":[-0.104,0,0]},{"i":{"x":0.833,"y":0.897},"o":{"x":0.167,"y":0.256},"t":70,"s":[148.685,107.352,0],"to":[0.104,0,0],"ti":[-0.035,0,0]},{"i":{"x":0.833,"y":0.616},"o":{"x":0.167,"y":0.439},"t":71,"s":[148.887,107.352,0],"to":[0.035,0,0],"ti":[0.028,0,0]},{"i":{"x":0.833,"y":0.757},"o":{"x":0.167,"y":0.106},"t":72,"s":[148.893,107.352,0],"to":[-0.028,0,0],"ti":[0.083,0,0]},{"i":{"x":0.833,"y":0.799},"o":{"x":0.167,"y":0.127},"t":73,"s":[148.721,107.352,0],"to":[-0.083,0,0],"ti":[0.132,0,0]},{"i":{"x":0.833,"y":0.812},"o":{"x":0.167,"y":0.142},"t":74,"s":[148.393,107.352,0],"to":[-0.132,0,0],"ti":[0.174,0,0]},{"i":{"x":0.833,"y":0.82},"o":{"x":0.167,"y":0.15},"t":75,"s":[147.929,107.352,0],"to":[-0.174,0,0],"ti":[0.21,0,0]},{"i":{"x":0.833,"y":0.824},"o":{"x":0.167,"y":0.155},"t":76,"s":[147.349,107.352,0],"to":[-0.21,0,0],"ti":[0.238,0,0]},{"i":{"x":0.833,"y":0.827},"o":{"x":0.167,"y":0.158},"t":77,"s":[146.672,107.352,0],"to":[-0.238,0,0],"ti":[0.26,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.161},"t":78,"s":[145.92,107.352,0],"to":[-0.26,0,0],"ti":[0.275,0,0]},{"i":{"x":0.833,"y":0.832},"o":{"x":0.167,"y":0.163},"t":79,"s":[145.111,107.352,0],"to":[-0.275,0,0],"ti":[0.284,0,0]},{"i":{"x":0.833,"y":0.834},"o":{"x":0.167,"y":0.165},"t":80,"s":[144.268,107.352,0],"to":[-0.284,0,0],"ti":[0.286,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.167},"t":81,"s":[143.409,107.352,0],"to":[-0.286,0,0],"ti":[0.281,0,0]},{"i":{"x":0.833,"y":0.838},"o":{"x":0.167,"y":0.169},"t":82,"s":[142.554,107.352,0],"to":[-0.281,0,0],"ti":[0.269,0,0]},{"i":{"x":0.833,"y":0.84},"o":{"x":0.167,"y":0.171},"t":83,"s":[141.725,107.352,0],"to":[-0.269,0,0],"ti":[0.251,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.174},"t":84,"s":[140.941,107.352,0],"to":[-0.251,0,0],"ti":[0.225,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.178},"t":85,"s":[140.222,107.352,0],"to":[-0.225,0,0],"ti":[0.194,0,0]},{"i":{"x":0.833,"y":0.853},"o":{"x":0.167,"y":0.183},"t":86,"s":[139.588,107.352,0],"to":[-0.194,0,0],"ti":[0.155,0,0]},{"i":{"x":0.833,"y":0.864},"o":{"x":0.167,"y":0.193},"t":87,"s":[139.061,107.352,0],"to":[-0.155,0,0],"ti":[0.11,0,0]},{"i":{"x":0.833,"y":0.057},"o":{"x":0.167,"y":0.214},"t":88,"s":[138.659,107.352,0],"to":[-0.11,0,0],"ti":[0.058,0,0]},{"i":{"x":0.833,"y":0.343},"o":{"x":0.167,"y":0.091},"t":89,"s":[138.403,107.352,0],"to":[-0.058,0,0],"ti":[3.045,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.095},"t":90,"s":[138.313,107.352,0],"to":[-3.045,0,0],"ti":[5.742,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.176},"t":91,"s":[120.133,107.352,0],"to":[-5.742,0,0],"ti":[5.121,0,0]},{"i":{"x":0.833,"y":0.843},"o":{"x":0.167,"y":0.177},"t":92,"s":[103.863,107.352,0],"to":[-5.121,0,0],"ti":[4.533,0,0]},{"i":{"x":0.833,"y":0.844},"o":{"x":0.167,"y":0.178},"t":93,"s":[89.406,107.352,0],"to":[-4.533,0,0],"ti":[3.978,0,0]},{"i":{"x":0.833,"y":0.845},"o":{"x":0.167,"y":0.179},"t":94,"s":[76.663,107.352,0],"to":[-3.978,0,0],"ti":[3.455,0,0]},{"i":{"x":0.833,"y":0.846},"o":{"x":0.167,"y":0.18},"t":95,"s":[65.538,107.352,0],"to":[-3.455,0,0],"ti":[2.965,0,0]},{"i":{"x":0.833,"y":0.847},"o":{"x":0.167,"y":0.181},"t":96,"s":[55.931,107.352,0],"to":[-2.965,0,0],"ti":[2.508,0,0]},{"i":{"x":0.833,"y":0.848},"o":{"x":0.167,"y":0.183},"t":97,"s":[47.747,107.352,0],"to":[-2.508,0,0],"ti":[2.083,0,0]},{"i":{"x":0.833,"y":0.85},"o":{"x":0.167,"y":0.185},"t":98,"s":[40.886,107.352,0],"to":[-2.083,0,0],"ti":[1.69,0,0]},{"i":{"x":0.833,"y":0.852},"o":{"x":0.167,"y":0.188},"t":99,"s":[35.251,107.352,0],"to":[-1.69,0,0],"ti":[1.33,0,0]},{"i":{"x":0.833,"y":0.856},"o":{"x":0.167,"y":0.191},"t":100,"s":[30.745,107.352,0],"to":[-1.33,0,0],"ti":[1.003,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.197},"t":101,"s":[27.269,107.352,0],"to":[-1.003,0,0],"ti":[0.709,0,0]},{"i":{"x":0.833,"y":0.869},"o":{"x":0.167,"y":0.207},"t":102,"s":[24.725,107.352,0],"to":[-0.709,0,0],"ti":[0.447,0,0]},{"i":{"x":0.833,"y":0.888},"o":{"x":0.167,"y":0.23},"t":103,"s":[23.017,107.352,0],"to":[-0.447,0,0],"ti":[0.217,0,0]},{"i":{"x":0.833,"y":0.862},"o":{"x":0.167,"y":0.327},"t":104,"s":[22.046,107.352,0],"to":[-0.217,0,0],"ti":[0.02,0,0]},{"i":{"x":0.833,"y":0.664},"o":{"x":0.167,"y":0.211},"t":105,"s":[21.714,107.352,0],"to":[-0.02,0,0],"ti":[-0.144,0,0]},{"i":{"x":0.833,"y":0.789},"o":{"x":0.167,"y":0.111},"t":106,"s":[21.924,107.352,0],"to":[0.144,0,0],"ti":[-0.276,0,0]},{"i":{"x":0.833,"y":0.813},"o":{"x":0.167,"y":0.138},"t":107,"s":[22.579,107.352,0],"to":[0.276,0,0],"ti":[-0.375,0,0]},{"i":{"x":0.833,"y":0.823},"o":{"x":0.167,"y":0.15},"t":108,"s":[23.579,107.352,0],"to":[0.375,0,0],"ti":[-0.441,0,0]},{"i":{"x":0.833,"y":0.83},"o":{"x":0.167,"y":0.158},"t":109,"s":[24.828,107.352,0],"to":[0.441,0,0],"ti":[-0.475,0,0]},{"i":{"x":0.833,"y":0.836},"o":{"x":0.167,"y":0.164},"t":110,"s":[26.227,107.352,0],"to":[0.475,0,0],"ti":[-0.477,0,0]},{"i":{"x":0.833,"y":0.842},"o":{"x":0.167,"y":0.169},"t":111,"s":[27.679,107.352,0],"to":[0.477,0,0],"ti":[-0.445,0,0]},{"i":{"x":0.833,"y":0.849},"o":{"x":0.167,"y":0.176},"t":112,"s":[29.087,107.352,0],"to":[0.445,0,0],"ti":[-0.382,0,0]},{"i":{"x":0.833,"y":0.861},"o":{"x":0.167,"y":0.186},"t":113,"s":[30.352,107.352,0],"to":[0.382,0,0],"ti":[-0.285,0,0]},{"i":{"x":0.833,"y":0.886},"o":{"x":0.167,"y":0.208},"t":114,"s":[31.376,107.352,0],"to":[0.285,0,0],"ti":[-0.156,0,0]},{"i":{"x":0.833,"y":0.917},"o":{"x":0.167,"y":0.312},"t":115,"s":[32.062,107.352,0],"to":[0.156,0,0],"ti":[-0.042,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":116,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":119,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":121,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":134,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":135,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":136,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":137,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":138,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":139,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":140,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":141,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":142,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":143,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":144,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":145,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":146,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":147,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":148,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":149,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":150,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":151,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":152,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":153,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":154,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":155,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":156,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":157,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":158,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":159,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":160,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":161,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":162,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":163,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":164,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":165,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":166,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":167,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":168,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":169,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":170,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":171,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":172,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":173,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":174,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":175,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":176,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":177,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":178,"s":[32.313,107.352,0],"to":[0,0,0],"ti":[0,0,0]},{"t":179,"s":[32.313,107.352,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"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]},"t":20,"s":[100,100,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"t":{"d":{"k":[{"s":{"s":21,"f":"SegoeUIHistoric","t":"L","j":2,"tr":0,"lh":25.2,"ls":0,"fc":[0.086,0.086,0.086]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0],"ix":2}},"a":[]},"ip":0,"op":180,"st":0,"bm":0}],"markers":[],"chars":[{"ch":"L","size":21,"style":"Regular","w":47.07,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[45.508,-7.422],[17.383,-7.422],[17.383,-70.02],[9.18,-70.02],[9.18,0],[45.508,0]],"c":true},"ix":2},"nm":"L","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"L","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Segoe UI Historic"},{"ch":"O","size":21,"style":"Regular","w":75.39,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.055,6.641],[0,11.426],[5.908,6.511],[9.668,0],[6.087,-6.705],[0,-11.263],[-5.974,-6.543],[-9.929,0]],"o":[[6.055,-6.641],[0,-10.514],[-5.908,-6.51],[-10.482,0],[-6.087,6.706],[0,10.482],[5.973,6.543],[10.156,0]],"v":[[61.719,-8.789],[70.801,-35.889],[61.938,-61.426],[38.574,-71.191],[13.721,-61.133],[4.59,-34.18],[13.55,-8.643],[37.402,1.172]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-4.297,-5.045],[0,-9.245],[4.427,-5.013],[7.682,0],[4.475,5.257],[0,8.627],[-4.59,5.306],[-7.357,0]],"o":[[4.297,5.046],[0,9.017],[-4.427,5.013],[-7.195,0],[-4.476,-5.257],[0,-8.626],[4.59,-5.305],[7.552,0]],"v":[[55.762,-56.201],[62.207,-34.766],[55.566,-13.721],[37.402,-6.201],[19.897,-14.087],[13.184,-34.912],[20.068,-55.811],[37.988,-63.77]],"c":true},"ix":2},"nm":"O","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"O","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Segoe UI Historic"},{"ch":"A","size":21,"style":"Regular","w":64.5,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[36.426,-70.02],[27.93,-70.02],[1.074,0],[10.205,0],[17.188,-19.629],[46.875,-19.629],[54.297,0],[63.379,0]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.326,1.986],[0,0],[-0.359,-0.977],[0,0]],"o":[[0,0],[0.423,-1.139],[0,0],[0.358,2.148],[0,0],[0,0]],"v":[[19.922,-27.002],[30.811,-56.836],[31.934,-61.523],[32.129,-61.523],[33.203,-56.836],[44.189,-27.002]],"c":true},"ix":2},"nm":"A","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"A","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Segoe UI Historic"},{"ch":"D","size":21,"style":"Regular","w":70.12,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-6.853,6.56],[0,10.808],[24.674,0],[0,0],[0,0]],"o":[[11.491,0],[6.852,-6.559],[0,-22.754],[0,0],[0,0],[0,0]],"v":[[27.734,0],[55.249,-9.839],[65.527,-35.889],[28.516,-70.02],[9.18,-70.02],[9.18,0]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,-17.936],[5.11,-4.915],[9.18,0],[0,0],[0,0]],"o":[[19.075,0],[0,9.017],[-5.111,4.916],[0,0],[0,0],[0,0]],"v":[[28.32,-62.598],[56.934,-35.693],[49.268,-14.795],[27.832,-7.422],[17.383,-7.422],[17.383,-62.598]],"c":true},"ix":2},"nm":"D","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"D","np":5,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Segoe UI Historic"},{"ch":"I","size":21,"style":"Regular","w":26.61,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[17.383,-70.02],[9.18,-70.02],[9.18,0],[17.383,0]],"c":true},"ix":2},"nm":"I","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"I","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Segoe UI Historic"},{"ch":"N","size":21,"style":"Regular","w":74.8,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.326,-2.018],[0,0],[1.465,2.279],[0,0],[0,0],[0,0],[0,0],[0,0],[0.26,1.498],[0,0],[-0.912,-1.399],[0,0],[0,0]],"o":[[0,0],[0,0],[0,4.851],[0,0],[-0.423,-0.846],[0,0],[0,0],[0,0],[0,0],[0,0],[0,-4.915],[0,0],[0.586,1.53],[0,0],[0,0],[0,0]],"v":[[65.625,-70.02],[57.422,-70.02],[57.422,-20.703],[57.91,-10.4],[57.715,-10.4],[54.883,-15.088],[19.824,-70.02],[9.18,-70.02],[9.18,0],[17.383,0],[17.383,-50.586],[16.992,-60.205],[17.285,-60.205],[19.531,-55.811],[55.566,0],[65.625,0]],"c":true},"ix":2},"nm":"N","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"N","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Segoe UI Historic"},{"ch":"G","size":21,"style":"Regular","w":68.6,"data":{"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[5.469,0],[4.655,5.062],[0,8.855],[-5.013,5.404],[-7.845,0],[-5.664,-3.58],[0,0],[7.617,0],[6.852,-6.95],[0,-10.84],[-6.169,-6.445],[-9.994,0],[-7.031,3.972]],"o":[[0,0],[0,0],[0,0],[0,0],[-4.004,2.181],[-7.976,0],[-4.655,-5.061],[0,-8.594],[5.013,-5.403],[7.747,0],[0,0],[-5.176,-2.473],[-10.515,0],[-6.853,6.95],[0,10.612],[6.168,6.445],[8.594,0],[0,0]],"v":[[61.523,-36.523],[37.988,-36.523],[37.988,-29.102],[53.32,-29.102],[53.32,-9.473],[39.111,-6.201],[20.166,-13.794],[13.184,-34.668],[20.703,-55.664],[39.99,-63.77],[60.107,-58.398],[60.107,-67.48],[40.918,-71.191],[14.868,-60.767],[4.59,-34.082],[13.843,-8.496],[38.086,1.172],[61.523,-4.785]],"c":true},"ix":2},"nm":"G","mn":"ADBE Vector Shape - Group","hd":false}],"nm":"G","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}]},"fFamily":"Segoe UI Historic"}]}
\ No newline at end of file
diff --git a/app/src/main/assets/lottie/loading_alt.json b/app/src/main/assets/lottie/loading_alt.json
new file mode 100644
index 0000000..3ec2b79
--- /dev/null
+++ b/app/src/main/assets/lottie/loading_alt.json
@@ -0,0 +1 @@
+{"v":"5.7.11","fr":60,"ip":0,"op":81,"w":1920,"h":1080,"nm":"Loading Dots","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Dot4","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":25,"s":[25]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":39,"s":[100]},{"t":55,"s":[25]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":25,"s":[1142,540,0],"to":[0,-6.667,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":39,"s":[1142,500,0],"to":[0,0,0],"ti":[0,-6.667,0]},{"t":55,"s":[1142,540,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-284,92,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":25,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":39,"s":[75,75,100]},{"t":55,"s":[50,50,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[120,120],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.0671741336,0.713725490196,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-284,92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":360,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Dot3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":17,"s":[25]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":31,"s":[100]},{"t":47,"s":[25]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":17,"s":[1022,540,0],"to":[0,-6.667,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":31,"s":[1022,500,0],"to":[0,0,0],"ti":[0,-6.667,0]},{"t":47,"s":[1022,540,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-284,92,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":17,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":31,"s":[75,75,100]},{"t":47,"s":[50,50,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[120,120],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.0671741336,0.713725490196,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-284,92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":360,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Dot2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":9,"s":[25]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":23,"s":[100]},{"t":39,"s":[25]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":9,"s":[902,540,0],"to":[0,-6.667,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":23,"s":[902,500,0],"to":[0,0,0],"ti":[0,0,0]},{"t":39,"s":[902,540,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-284,92,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":9,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":23,"s":[75,75,100]},{"t":39,"s":[50,50,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[120,120],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.0671741336,0.713725490196,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-284,92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":360,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Dot1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[25]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":14,"s":[100]},{"t":30,"s":[25]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[782,540,0],"to":[0,-6.667,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":14,"s":[782,500,0],"to":[0,0,0],"ti":[0,-6.667,0]},{"t":30,"s":[782,540,0]}],"ix":2,"l":2},"a":{"a":0,"k":[-284,92,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[50,50,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":14,"s":[75,75,100]},{"t":30,"s":[50,50,100]}],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[120,120],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.0671741336,0.713725490196,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-284,92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":360,"st":0,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/app/src/main/java/com/amz/genie/activities/AddCustomActionActivity.kt b/app/src/main/java/com/amz/genie/activities/AddCustomActionActivity.kt
new file mode 100644
index 0000000..e6a1146
--- /dev/null
+++ b/app/src/main/java/com/amz/genie/activities/AddCustomActionActivity.kt
@@ -0,0 +1,645 @@
+package com.amz.genie.activities
+
+import android.Manifest
+import android.content.Intent
+import android.content.pm.PackageManager
+import android.net.Uri
+import android.os.Bundle
+import android.view.View
+import android.widget.ArrayAdapter
+import android.widget.AutoCompleteTextView
+import android.widget.ImageButton
+import android.widget.TextView
+import androidx.activity.OnBackPressedCallback
+import androidx.activity.result.contract.ActivityResultContracts
+import androidx.core.content.ContextCompat
+import androidx.core.content.FileProvider
+import androidx.recyclerview.widget.GridLayoutManager
+import androidx.recyclerview.widget.LinearLayoutManager
+import androidx.recyclerview.widget.RecyclerView
+import com.amz.genie.R
+import com.amz.genie.adapters.AttachmentAdapter
+import com.amz.genie.adapters.RecipientAdapter
+import com.amz.genie.adapters.RecipientPickerAdapter
+import com.amz.genie.helpers.Preferences
+import com.amz.genie.helpers.Utils.forceLogoutAndGoLogin
+import com.amz.genie.helpers.Utils.isNetworkAvailable
+import com.amz.genie.helpers.Utils.uriToMultipartPart
+import com.amz.genie.models.AttachmentItem
+import com.amz.genie.models.Message
+import com.amz.genie.models.Pegawai
+import com.amz.genie.models.Pengguna
+import com.amz.genie.models.PostAksi
+import com.amz.genie.models.Tentang
+import com.amz.genie.models.TipeKomunikasi
+import com.amz.genie.services.APIMain
+import com.google.android.material.button.MaterialButton
+import com.google.android.material.dialog.MaterialAlertDialogBuilder
+import com.google.android.material.snackbar.Snackbar
+import com.google.android.material.textfield.TextInputEditText
+import com.google.gson.Gson
+import com.google.gson.GsonBuilder
+import com.google.gson.JsonParser
+import okhttp3.MediaType.Companion.toMediaType
+import okhttp3.MultipartBody
+import okhttp3.RequestBody
+import okhttp3.RequestBody.Companion.toRequestBody
+import retrofit2.Call
+import retrofit2.Callback
+import retrofit2.Response
+import java.io.File
+
+class AddCustomActionActivity : BaseActivity() {
+
+ private lateinit var ibBack: ImageButton
+ private lateinit var actvTipeKomunikasi: AutoCompleteTextView
+ private lateinit var actvTentang: AutoCompleteTextView
+
+ private lateinit var rvRecipient: RecyclerView
+ private lateinit var tvEmpty: TextView
+ private lateinit var tietDescription: TextInputEditText
+ private lateinit var btAttachment: MaterialButton
+ private lateinit var btSend: MaterialButton
+ private lateinit var llAttachmentsContainer: View
+ private lateinit var rvAttachments: RecyclerView
+ private lateinit var tvAddRecipient: TextView
+ private lateinit var attachmentAdapter: AttachmentAdapter
+
+ private lateinit var recipientAdapter: RecipientAdapter
+ private val recipientOptions = mutableListOf()
+ private val selectedRecipients = mutableListOf()
+ private var idTipeKomunikasi = ""
+ private var idTentang = ""
+ private var cameraOutputUri: Uri? = null
+ private val attachments = mutableListOf()
+ private val takePictureLauncher =
+ registerForActivityResult(ActivityResultContracts.TakePicture()) { success ->
+ if (success) {
+ cameraOutputUri?.let { addAttachment(it) }
+ }
+ }
+
+ private val pickFileLauncher =
+ registerForActivityResult(ActivityResultContracts.OpenDocument()) { uri ->
+ if (uri != null) {
+ contentResolver.takePersistableUriPermission(uri, Intent.FLAG_GRANT_READ_URI_PERMISSION)
+ addAttachment(uri)
+ }
+ }
+
+ private val requestCameraPermissionLauncher =
+ registerForActivityResult(ActivityResultContracts.RequestPermission()) { granted ->
+ if (granted) {
+ openCamera()
+ } else {
+ showSnack("Izin kamera ditolak")
+ }
+ }
+
+ private fun openCameraWithPermission() {
+ val granted = ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA) ==
+ PackageManager.PERMISSION_GRANTED
+
+ if (granted) {
+ openCamera()
+ } else {
+ requestCameraPermissionLauncher.launch(Manifest.permission.CAMERA)
+ }
+ }
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_add_custom_action)
+
+ initUI(savedInstanceState)
+ renderAttachments()
+ setupDropdowns()
+ }
+
+ private fun initUI(savedInstanceState: Bundle?) {
+ ibBack = findViewById(R.id.ib_back_add_custom_action)
+ actvTipeKomunikasi = findViewById(R.id.actv_tipe_komunikasi_add_custom_action)
+ actvTentang = findViewById(R.id.actv_tentang_add_custom_action)
+ rvRecipient = findViewById(R.id.rv_recipient_add_custom_action)
+ tvEmpty = findViewById(R.id.tv_empty_add_custom_action)
+ btAttachment = findViewById(R.id.btn_attachment_add_custom_action)
+ btSend = findViewById(R.id.btn_send_add_custom_action)
+ llAttachmentsContainer = findViewById(R.id.ll_attachments_container_add_custom_action)
+ rvAttachments = findViewById(R.id.rv_attachments_add_custom_action)
+ tvAddRecipient = findViewById(R.id.tv_lbl_recipient_add_custom_action)
+ tietDescription = findViewById(R.id.et_description_add_custom_action)
+
+ recipientAdapter = RecipientAdapter { pegawai ->
+ val idx = selectedRecipients.indexOfFirst { it.kode == pegawai.kode }
+ if (idx != -1) {
+ selectedRecipients.removeAt(idx)
+ renderRecipients()
+ showSnack("Penerima dihapus")
+ }
+ }
+ rvRecipient.layoutManager = LinearLayoutManager(this)
+ rvRecipient.adapter = recipientAdapter
+
+ attachmentAdapter = AttachmentAdapter { item ->
+ attachments.remove(item)
+ renderAttachments()
+ }
+
+ rvAttachments.layoutManager = GridLayoutManager(this, 2)
+ rvAttachments.adapter = attachmentAdapter
+
+ setupActions()
+ }
+
+ private fun renderRecipients() {
+ val hasData = selectedRecipients.isNotEmpty()
+ rvRecipient.visibility = if (hasData) View.VISIBLE else View.GONE
+ tvEmpty.visibility = if (hasData) View.GONE else View.VISIBLE
+
+ recipientAdapter.submitList(selectedRecipients.toList())
+ }
+
+ private fun setupDropdowns() {
+ val communicationTypeList = ArrayList()
+ APIMain.require().selectionServices.communicationTypes(
+ Preferences.getAccessToken(this))
+ .enqueue(object: Callback> {
+ override fun onResponse(
+ call: Call>,
+ response: Response>
+ ) {
+ if (response.isSuccessful) {
+ val body = response.body().orEmpty()
+ communicationTypeList.clear()
+ body.forEach { communicationTypeList.add(it.tipe_komunikasi) }
+
+ val adapterTipe = ArrayAdapter(this@AddCustomActionActivity,
+ android.R.layout.simple_list_item_1,
+ communicationTypeList)
+ actvTipeKomunikasi.setAdapter(adapterTipe)
+
+ return
+ }
+
+ val raw = runCatching { response.errorBody()?.string().orEmpty() }.getOrDefault("")
+ val expired = raw.contains("Signature has expired", true) || raw.contains("token_expired", true)
+
+ val message = when {
+ (response.code() == 401 || response.code() == 500) && expired -> {
+ forceLogoutAndGoLogin(this@AddCustomActionActivity)
+ "Session expired. Please login again."
+ }
+ response.code() == 400 -> runCatching {
+ JsonParser.parseString(raw).asJsonObject["message"].asString
+ }.getOrDefault("Bad request")
+ else -> "${response.code()}, ${response.message()}"
+ }
+
+ showSnack(message)
+ }
+
+ override fun onFailure(
+ call: Call>,
+ t: Throwable
+ ) {
+ showSnack(t.message ?: "Terjadi kesalahan")
+ }
+
+ })
+ }
+
+ private fun setupActions() {
+ onBackPressedDispatcher.addCallback(this, object : OnBackPressedCallback(true) {
+ override fun handleOnBackPressed() {
+ handleBackPress(0)
+ }
+ })
+
+ ibBack.setOnClickListener { handleBackPress(0) }
+
+ actvTipeKomunikasi.setOnItemClickListener { parent, _, position, _ ->
+ val selected = parent.getItemAtPosition(position).toString()
+ idTipeKomunikasi = when (selected) {
+ "Bertanya" -> "A"
+ "Informasi" -> "I"
+ "Laporan" -> "L"
+ "Approval" -> "P"
+ "Pengajuan" -> "R"
+ "Penugasan" -> "T"
+ else -> ""
+ }
+
+ val tentangList = ArrayList()
+ APIMain.require().selectionServices.tentangs(
+ Preferences.getAccessToken(this), idTipeKomunikasi)
+ .enqueue(object: Callback> {
+ override fun onResponse(
+ call: Call>,
+ response: Response>
+ ) {
+ if (response.isSuccessful) {
+ val body = response.body().orEmpty()
+ body.forEach { tentangList.add(it.tentang) }
+
+ val adapterTentang = ArrayAdapter(this@AddCustomActionActivity,
+ android.R.layout.simple_list_item_1,tentangList)
+ actvTentang.setAdapter(adapterTentang)
+
+ return
+ }
+
+ val raw = runCatching { response.errorBody()?.string().orEmpty() }.getOrDefault("")
+ val expired = raw.contains("Signature has expired", true) || raw.contains("token_expired", true)
+
+ val message = when {
+ (response.code() == 401 || response.code() == 500) && expired -> {
+ forceLogoutAndGoLogin(this@AddCustomActionActivity)
+ "Session expired. Please login again."
+ }
+ response.code() == 400 -> runCatching {
+ JsonParser.parseString(raw).asJsonObject["message"].asString
+ }.getOrDefault("Bad request")
+ else -> "${response.code()}, ${response.message()}"
+ }
+
+ showSnack(message)
+ }
+
+ override fun onFailure(
+ call: Call>,
+ t: Throwable
+ ) {
+ showSnack(t.message.toString())
+ }
+
+ })
+ }
+
+ actvTipeKomunikasi.setOnClickListener { actvTipeKomunikasi.showDropDown() }
+
+ actvTentang.setOnClickListener { actvTentang.showDropDown() }
+
+ actvTentang.setOnItemClickListener { parent, _, position, _ ->
+ selectedRecipients.clear()
+ renderRecipients()
+
+ val selectedTentang = parent.getItemAtPosition(position).toString()
+ idTentang = when (selectedTentang) {
+ "Aturan" -> "A"
+ "Barang" -> "B"
+ "Kegiatan" -> "G"
+ "Jadwal" -> "J"
+ "Keadaan" -> "K"
+ "Layanan" -> "L"
+ "Orang" -> "O"
+ "Sistem" -> "S"
+ "Transaksi" -> "T"
+ "Uang" -> "U"
+ else -> ""
+ }
+
+ APIMain.require().selectionServices.recipients(
+ Preferences.getAccessToken(this), idTipeKomunikasi, idTentang)
+ .enqueue(object: Callback> {
+ override fun onResponse(
+ call: Call>,
+ response: Response>
+ ) {
+ if (response.isSuccessful) {
+ val body = response.body().orEmpty()
+ val userData = Gson().fromJson(Preferences.getUserData(this@AddCustomActionActivity),
+ Pengguna::class.java)
+
+ val filtered = body.filter { p ->
+ p.kode.trim() != userData.pegawai?.kode
+ }
+
+ recipientOptions.clear()
+ recipientOptions.addAll(filtered)
+
+ selectedRecipients.clear()
+ selectedRecipients.addAll(filtered)
+ renderRecipients()
+
+ return
+ }
+
+ val raw = runCatching { response.errorBody()?.string().orEmpty() }.getOrDefault("")
+ val expired = raw.contains("Signature has expired", true) || raw.contains("token_expired", true)
+
+ val message = when {
+ (response.code() == 401 || response.code() == 500) && expired -> {
+ forceLogoutAndGoLogin(this@AddCustomActionActivity)
+ "Session expired. Please login again."
+ }
+ response.code() == 400 -> runCatching {
+ JsonParser.parseString(raw).asJsonObject["message"].asString
+ }.getOrDefault("Bad request")
+ else -> "${response.code()}, ${response.message()}"
+ }
+
+ showSnack(message)
+ }
+
+ override fun onFailure(
+ call: Call>,
+ t: Throwable
+ ) {
+ showSnack(t.message.toString())
+ }
+
+ })
+ }
+
+ btAttachment.setOnClickListener {
+ showAttachmentPickerDialog()
+ }
+
+ tvAddRecipient.setOnClickListener {
+ if (isNetworkAvailable(this)) {
+ showProgressDialog(true)
+ APIMain.require().selectionServices.allRecipient(
+ Preferences.getAccessToken(this))
+ .enqueue(object: Callback> {
+ override fun onResponse(
+ call: Call>,
+ response: Response>
+ ) {
+ showProgressDialog(false)
+
+ if (response.isSuccessful) {
+ val body = response.body().orEmpty()
+ val userData = Gson().fromJson(Preferences.getUserData(this@AddCustomActionActivity),
+ Pengguna::class.java)
+
+ val filtered = body.filter { p ->
+ p.kode.trim() != userData.pegawai?.kode
+ }
+ showRecipientPickerDialog(ArrayList(filtered))
+
+ return
+ }
+
+ val raw = runCatching { response.errorBody()?.string().orEmpty() }.getOrDefault("")
+ val expired = raw.contains("Signature has expired", true) || raw.contains("token_expired", true)
+
+ val message = when {
+ (response.code() == 401 || response.code() == 500) && expired -> {
+ forceLogoutAndGoLogin(this@AddCustomActionActivity)
+ "Session expired. Please login again."
+ }
+ response.code() == 400 -> runCatching {
+ JsonParser.parseString(raw).asJsonObject["message"].asString
+ }.getOrDefault("Bad request")
+ else -> "${response.code()}, ${response.message()}"
+ }
+
+ showSnack(message)
+ }
+
+ override fun onFailure(
+ call: Call>,
+ t: Throwable
+ ) {
+ showProgressDialog(false)
+ showSnack(t.message.toString())
+ }
+
+ })
+
+ } else {
+ showProgressDialog(false)
+
+ Snackbar.make(findViewById(android.R.id.content),
+ ContextCompat.getString(this@AddCustomActionActivity,
+ R.string.no_internet_message),
+ Snackbar.LENGTH_LONG
+ ).show()
+ }
+ }
+
+ btSend.setOnClickListener {
+ showProgressDialog(true)
+ val semuaKodePegawai: List = selectedRecipients.map { it.kode }
+
+ val newAksi = PostAksi(
+ null, semuaKodePegawai, idTentang, idTipeKomunikasi,
+ tietDescription.text.toString(), null
+ )
+
+ val gson = GsonBuilder()
+ .serializeNulls()
+ .create()
+
+ val jsonData = gson.toJson(newAksi)
+ val dataBody: RequestBody =
+ jsonData.toRequestBody("application/json; charset=utf-8".toMediaType())
+
+ val filesParts: List =
+ attachments.map { a ->
+ this.uriToMultipartPart(
+ partName = "files",
+ uri = a.uri,
+ filenameOverride = a.name
+ )
+ }
+ val filesPartsOrNull = filesParts.takeIf { it.isNotEmpty() }
+ APIMain.require().actionServices.add(
+ token = Preferences.getAccessToken(this@AddCustomActionActivity),
+ data = dataBody,
+ files = filesPartsOrNull
+ ).enqueue(object : Callback {
+ override fun onResponse(call: Call, response: Response) {
+ if (response.isSuccessful) {
+ showProgressDialog(false)
+ showSnack("Berhasil kirim aksi")
+ finish()
+ return
+ }
+
+ showProgressDialog(false)
+
+ val raw = runCatching { response.errorBody()?.string().orEmpty() }.getOrDefault("")
+ val expired = raw.contains("Signature has expired", true) || raw.contains("token_expired", true)
+
+ val message = when {
+ (response.code() == 401 || response.code() == 500) && expired -> {
+ forceLogoutAndGoLogin(this@AddCustomActionActivity)
+ "Session expired. Please login again."
+ }
+ response.code() == 400 -> runCatching {
+ JsonParser.parseString(raw).asJsonObject["message"].asString
+ }.getOrDefault("Bad request")
+ else -> "${response.code()}, ${response.message()}"
+ }
+
+ showSnack(message)
+ }
+
+ override fun onFailure(call: Call, t: Throwable) {
+ showProgressDialog(false)
+ showSnack(t.message ?: "Gagal kirim")
+ }
+ })
+ }
+
+ }
+
+ private fun showSnack(message: String) {
+ Snackbar.make(findViewById(android.R.id.content), message, Snackbar.LENGTH_LONG).show()
+ }
+
+ private fun showRecipientPickerDialog(allRecipient: ArrayList) {
+ val userData = Gson().fromJson(Preferences.getUserData(this@AddCustomActionActivity),
+ Pengguna::class.java)
+
+ // ✅ buang pengirim dulu
+ val cleaned = allRecipient.filter { it.kode.trim() != userData.pegawai?.kode }
+
+ if (cleaned.isEmpty()) {
+ showSnack("Daftar penerima kosong")
+ return
+ }
+
+ // Base list: hanya yang belum ada di selectedRecipients
+ val baseList = cleaned.filter { ar ->
+ selectedRecipients.none { it.kode == ar.kode }
+ }
+
+ if (baseList.isEmpty()) {
+ showSnack("Semua penerima sudah dipilih")
+ return
+ }
+
+ val v = layoutInflater.inflate(R.layout.dialog_recipient_picker, null)
+ val rv = v.findViewById(R.id.rv_recipient_picker)
+ val sv = v.findViewById(R.id.sv_recipient)
+
+ val dialog = MaterialAlertDialogBuilder(this)
+ .setTitle("Pilih Penerima")
+ .setView(v)
+ .setNegativeButton("Tutup", null)
+ .create()
+
+ val pickerAdapter = RecipientPickerAdapter { picked ->
+ val exists = selectedRecipients.any { it.kode == picked.kode }
+ if (exists) {
+ showSnack("Penerima sudah dipilih")
+ return@RecipientPickerAdapter
+ }
+
+ selectedRecipients.add(picked)
+ renderRecipients()
+ dialog.dismiss()
+ }
+
+ rv.layoutManager = LinearLayoutManager(this)
+ rv.adapter = pickerAdapter
+ rv.setHasFixedSize(true)
+
+ // tampil awal
+ pickerAdapter.submitList(baseList)
+
+ // SEARCH
+ fun applyFilter(query: String?) {
+ val q = query.orEmpty().trim()
+ if (q.isEmpty()) {
+ pickerAdapter.submitList(baseList)
+ return
+ }
+
+ val filtered = baseList.filter { p ->
+ val nama = p.nama
+ val kode = p.kode
+ nama.contains(q, ignoreCase = true) || kode.contains(q, ignoreCase = true)
+ }
+
+ pickerAdapter.submitList(filtered)
+ }
+
+ sv.setOnQueryTextListener(object : androidx.appcompat.widget.SearchView.OnQueryTextListener {
+ override fun onQueryTextSubmit(query: String?): Boolean {
+ applyFilter(query)
+ return true
+ }
+
+ override fun onQueryTextChange(newText: String?): Boolean {
+ applyFilter(newText)
+ return true
+ }
+ })
+
+ dialog.show()
+ sv.requestFocus()
+ }
+
+ private fun showAttachmentPickerDialog() {
+ val items = arrayOf("Kamera", "File Manager")
+
+ MaterialAlertDialogBuilder(this)
+ .setTitle("Pilih Attachment")
+ .setItems(items) { _, which ->
+ when (which) {
+ 0 -> openCameraWithPermission()
+ 1 -> openFileManager()
+ }
+ }
+ .setNegativeButton("Batal", null)
+ .show()
+ }
+
+ private fun openCamera() {
+ val imageFile = File.createTempFile(
+ "ATTACH_",
+ ".jpg",
+ cacheDir
+ )
+
+ val uri = FileProvider.getUriForFile(
+ this,
+ "${packageName}.fileprovider",
+ imageFile
+ )
+
+ cameraOutputUri = uri
+ takePictureLauncher.launch(uri)
+ }
+
+ private fun openFileManager() {
+ pickFileLauncher.launch(arrayOf("image/*", "application/pdf"))
+ }
+
+ private fun addAttachment(uri: Uri) {
+ if (attachments.any { it.uri == uri }) {
+ showSnack("Lampiran sudah ditambahkan")
+ return
+ }
+ val mime = contentResolver.getType(uri).orEmpty()
+ val name = queryDisplayName(uri) ?: "Attachment"
+ attachments.add(AttachmentItem(uri, name, mime))
+ renderAttachments()
+ }
+
+ private fun renderAttachments() {
+ val hasData = attachments.isNotEmpty()
+ llAttachmentsContainer.visibility = if (hasData) View.VISIBLE else View.GONE
+
+ attachmentAdapter.submitList(attachments.toList())
+ rvAttachments.visibility = if (hasData) View.VISIBLE else View.GONE
+
+ val count = attachments.size
+ btAttachment.text = if (count > 0) "Lampiran ($count)" else getString(R.string.lbl_lampiran)
+ }
+
+ private fun queryDisplayName(uri: Uri): String? {
+ val projection = arrayOf(android.provider.OpenableColumns.DISPLAY_NAME)
+ return runCatching {
+ contentResolver.query(uri, projection, null, null, null)?.use { cursor ->
+ val nameIndex = cursor.getColumnIndex(android.provider.OpenableColumns.DISPLAY_NAME)
+ if (nameIndex == -1) return@use null
+ cursor.moveToFirst()
+ cursor.getString(nameIndex)
+ }
+ }.getOrNull()
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/amz/genie/activities/AddTemplateActionActivity.kt b/app/src/main/java/com/amz/genie/activities/AddTemplateActionActivity.kt
new file mode 100644
index 0000000..4a8120e
--- /dev/null
+++ b/app/src/main/java/com/amz/genie/activities/AddTemplateActionActivity.kt
@@ -0,0 +1,989 @@
+package com.amz.genie.activities
+
+import android.app.DatePickerDialog
+import android.app.TimePickerDialog
+import android.os.Bundle
+import android.provider.OpenableColumns
+import android.text.InputType
+import android.view.Gravity
+import android.view.LayoutInflater
+import android.view.View
+import android.widget.Button
+import android.widget.ImageButton
+import android.widget.LinearLayout
+import android.widget.TextView
+import androidx.activity.OnBackPressedCallback
+import androidx.activity.result.contract.ActivityResultContracts
+import androidx.core.content.ContextCompat
+import androidx.recyclerview.widget.LinearLayoutManager
+import androidx.recyclerview.widget.RecyclerView
+import com.amz.genie.R
+import com.amz.genie.adapters.RecipientAdapter
+import com.amz.genie.adapters.RecipientPickerAdapter
+import com.amz.genie.helpers.Preferences
+import com.amz.genie.helpers.SimpleTextWatcher
+import com.amz.genie.helpers.Utils.forceLogoutAndGoLogin
+import com.amz.genie.helpers.Utils.isNetworkAvailable
+import com.amz.genie.models.AddActionItem
+import com.amz.genie.models.FormAttachment
+import com.amz.genie.models.KomunikasiDetail
+import com.amz.genie.models.Message
+import com.amz.genie.models.Pegawai
+import com.amz.genie.models.Pengguna
+import com.amz.genie.services.APIMain
+import com.google.android.material.dialog.MaterialAlertDialogBuilder
+import com.google.android.material.snackbar.Snackbar
+import com.google.android.material.textfield.TextInputEditText
+import com.google.android.material.textfield.TextInputLayout
+import com.google.gson.Gson
+import com.google.gson.JsonParser
+import okhttp3.MediaType.Companion.toMediaType
+import okhttp3.MultipartBody
+import okhttp3.RequestBody
+import okhttp3.RequestBody.Companion.asRequestBody
+import okhttp3.RequestBody.Companion.toRequestBody
+import retrofit2.Call
+import retrofit2.Callback
+import retrofit2.Response
+import java.io.File
+import java.text.SimpleDateFormat
+import java.util.Calendar
+import java.util.Locale
+import kotlin.collections.emptyList
+
+class AddTemplateActionActivity : BaseActivity() {
+
+ private lateinit var ibBack: ImageButton
+ private lateinit var tvKomunikasi: TextView
+ private lateinit var rvRecipient: RecyclerView
+ private lateinit var tvEmpty: TextView
+ private lateinit var tvAddRecipient: TextView
+ private lateinit var recipientAdapter: RecipientAdapter
+ private lateinit var actionItem: AddActionItem
+ private lateinit var btSend: Button
+
+ private val recipientOptions = mutableListOf()
+ private val selectedRecipients = mutableListOf()
+
+ // value form dinamis: Int / Double / String / MutableList / MutableList
+ private val formValues = linkedMapOf()
+
+ // untuk validasi & setError field angka/pecahan/text/tanggal/waktu/jam/string
+ private val fieldTilByKode = linkedMapOf()
+ private val fieldEtByKode = linkedMapOf()
+
+ // untuk list (error wajib list)
+ private val listInputEtByKode = linkedMapOf()
+
+ // untuk lampiran (tampilan list nama file + error text)
+ private val lampiranTvFilesByKode = linkedMapOf()
+ private val lampiranTvErrorByKode = linkedMapOf()
+
+ private val sdfDate = SimpleDateFormat("yyyy-MM-dd", Locale.getDefault())
+ private val sdfDateTime = SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault())
+ private val sdfTime = SimpleDateFormat("HH:mm:ss", Locale.getDefault())
+
+ private var currentLampiranKode: Int? = null
+
+ private val pickLampiranLauncher =
+ registerForActivityResult(ActivityResultContracts.OpenMultipleDocuments()) { uris ->
+ val kode = currentLampiranKode ?: return@registerForActivityResult
+ currentLampiranKode = null
+
+ val list = (formValues[kode] as? MutableList) ?: mutableListOf()
+
+ for (u in uris) {
+ val meta = readUriMeta(u) ?: continue
+ if (list.any { it.uri == u }) continue // avoid duplicate
+ list.add(meta)
+ }
+
+ formValues[kode] = list
+
+ // refresh UI
+ refreshLampiranUI(kode)
+ }
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_add_template_action)
+ initUI()
+ }
+
+ private fun initUI() {
+ ibBack = findViewById(R.id.ib_back_add_template_action)
+ tvKomunikasi = findViewById(R.id.tv_komunikasi_add_template_action)
+ rvRecipient = findViewById(R.id.rv_recipient_add_template_action)
+ tvEmpty = findViewById(R.id.tv_empty_add_template_action)
+ tvAddRecipient = findViewById(R.id.tv_lbl_recipient_add_template_action)
+ btSend = findViewById(R.id.bt_send_add_template_action)
+
+ val intentDataJson = intent.getStringExtra("data") ?: return
+ actionItem = Gson().fromJson(intentDataJson, AddActionItem::class.java)
+
+ tvKomunikasi.text = actionItem.title.orEmpty()
+
+ recipientAdapter = RecipientAdapter { pegawai ->
+ val idx = selectedRecipients.indexOfFirst { it.kode == pegawai.kode }
+ if (idx != -1) {
+ selectedRecipients.removeAt(idx)
+ renderRecipients()
+ showSnack("Penerima dihapus")
+ }
+ }
+
+ rvRecipient.layoutManager = LinearLayoutManager(this)
+ rvRecipient.adapter = recipientAdapter
+
+ val details = actionItem.komunikasi_detail.orEmpty()
+ if (details.isNotEmpty()) {
+ renderDynamicForm(details)
+ } else {
+ findViewById(R.id.ll_add_template_action).removeAllViews()
+ }
+
+ initData()
+ setupActions()
+ }
+
+ // =========================
+ // Dynamic Form Renderer
+ // =========================
+ private fun renderDynamicForm(details: List) {
+ val container = findViewById(R.id.ll_add_template_action)
+
+ container.removeAllViews()
+ formValues.clear()
+ fieldTilByKode.clear()
+ fieldEtByKode.clear()
+ listInputEtByKode.clear()
+ lampiranTvFilesByKode.clear()
+ lampiranTvErrorByKode.clear()
+
+ val fields = details
+ .filter { it.is_aktif == 1 }
+ .sortedBy { it.urutan ?: Int.MAX_VALUE }
+
+ val inflater = LayoutInflater.from(this)
+
+ for (d in fields) {
+ val kode = d.kode ?: continue
+ val label = d.isian?.trim().orEmpty().ifBlank { "Field" }
+ val wajib = d.is_wajib == 1
+ val jenisId = d.id_jenis_isian ?: 6 // fallback string
+
+ when (jenisId) {
+
+ // 4 = angka
+ 4 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_input, container, false)
+ val til = v.findViewById(R.id.til)
+ val et = v.findViewById(R.id.et)
+
+ til.hint = if (wajib) "$label *" else label
+ et.inputType = InputType.TYPE_CLASS_NUMBER
+
+ fieldTilByKode[kode] = til
+ fieldEtByKode[kode] = et
+
+ et.setText("0")
+ formValues[kode] = 0
+
+ et.addTextChangedListener(SimpleTextWatcher { text ->
+ til.error = null
+ val value = text.trim()
+ formValues[kode] = value.toIntOrNull() ?: 0
+ })
+
+ container.addView(v)
+ }
+
+ // 5 = pecahan
+ 5 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_input, container, false)
+ val til = v.findViewById(R.id.til)
+ val et = v.findViewById(R.id.et)
+
+ til.hint = if (wajib) "$label *" else label
+ et.inputType = InputType.TYPE_CLASS_NUMBER or InputType.TYPE_NUMBER_FLAG_DECIMAL
+
+ fieldTilByKode[kode] = til
+ fieldEtByKode[kode] = et
+
+ et.setText("0.00")
+ formValues[kode] = 0.00
+
+ et.addTextChangedListener(SimpleTextWatcher { text ->
+ til.error = null
+ val value = text.trim().replace(",", ".")
+ formValues[kode] = value.toDoubleOrNull() ?: 0.00
+ })
+
+ container.addView(v)
+ }
+
+ // 2 = tanggal (yyyy-MM-dd)
+ 2 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_input, container, false)
+ val til = v.findViewById(R.id.til)
+ val et = v.findViewById(R.id.et)
+
+ til.hint = if (wajib) "$label *" else label
+ fieldTilByKode[kode] = til
+ fieldEtByKode[kode] = et
+
+ setupDateField(kode, et, til)
+ container.addView(v)
+ }
+
+ // 1 = waktu (yyyy-MM-dd HH:mm:ss)
+ 1 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_input, container, false)
+ val til = v.findViewById(R.id.til)
+ val et = v.findViewById(R.id.et)
+
+ til.hint = if (wajib) "$label *" else label
+ fieldTilByKode[kode] = til
+ fieldEtByKode[kode] = et
+
+ setupDateTimeField(kode, et, til)
+ container.addView(v)
+ }
+
+ // 3 = jam (HH:mm:ss)
+ 3 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_input, container, false)
+ val til = v.findViewById(R.id.til)
+ val et = v.findViewById(R.id.et)
+
+ til.hint = if (wajib) "$label *" else label
+ fieldTilByKode[kode] = til
+ fieldEtByKode[kode] = et
+
+ setupTimeField(kode, et, til)
+ container.addView(v)
+ }
+
+ // 10 = list
+ 10 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_list, container, false)
+ val tvLabel = v.findViewById(R.id.tv_label)
+ val etItem = v.findViewById(R.id.et_item)
+ val btnAdd = v.findViewById(R.id.btn_add)
+ val tvItems = v.findViewById(R.id.tv_items)
+
+ tvLabel.text = if (wajib) "$label *" else label
+
+ val items = mutableListOf()
+ formValues[kode] = items
+ listInputEtByKode[kode] = etItem
+
+ fun refreshItems() {
+ tvItems.text =
+ if (items.isEmpty()) "Belum ada item"
+ else items.joinToString(", ")
+ }
+
+ btnAdd.setOnClickListener {
+ etItem.error = null
+ val t = etItem.text?.toString().orEmpty().trim()
+ if (t.isEmpty()) {
+ etItem.error = "Item tidak boleh kosong"
+ return@setOnClickListener
+ }
+ if (items.any { it.equals(t, true) }) {
+ showSnack("Item sudah ada")
+ return@setOnClickListener
+ }
+
+ items.add(t)
+ etItem.setText("")
+ refreshItems()
+ }
+
+ refreshItems()
+ container.addView(v)
+ }
+
+ // 11 = lampiran (multi)
+ 11 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_attachment, container, false)
+ val tvLabel = v.findViewById(R.id.tv_label)
+ val btnPick = v.findViewById(R.id.btn_pick)
+ val btnClear = v.findViewById(R.id.btn_clear)
+ val tvFiles = v.findViewById(R.id.tv_files)
+ val tvError = v.findViewById(R.id.tv_error)
+
+ tvLabel.text = if (wajib) "$label *" else label
+
+ val list = mutableListOf()
+ formValues[kode] = list
+
+ lampiranTvFilesByKode[kode] = tvFiles
+ lampiranTvErrorByKode[kode] = tvError
+
+ btnPick.setOnClickListener {
+ tvError.visibility = View.GONE
+ currentLampiranKode = kode
+ pickLampiranLauncher.launch(arrayOf("*/*"))
+ }
+
+ btnClear.setOnClickListener {
+ list.clear()
+ formValues[kode] = list
+ refreshLampiranUI(kode)
+ }
+
+ refreshLampiranUI(kode)
+ container.addView(v)
+ }
+
+ // 0 = teks (multiline)
+ 0 -> {
+ val v = inflater.inflate(R.layout.item_dynamic_input, container, false)
+ val til = v.findViewById(R.id.til)
+ val et = v.findViewById(R.id.et)
+
+ til.hint = if (wajib) "$label *" else label
+
+ et.inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_FLAG_MULTI_LINE
+ et.minLines = 3
+ et.maxLines = 8
+ et.setSingleLine(false)
+ et.setHorizontallyScrolling(false)
+ et.gravity = Gravity.TOP
+
+ fieldTilByKode[kode] = til
+ fieldEtByKode[kode] = et
+
+ et.addTextChangedListener(SimpleTextWatcher { text ->
+ til.error = null
+ formValues[kode] = text
+ })
+
+ container.addView(v)
+ }
+
+ // 6 = string (single line) + fallback default
+ else -> {
+ val v = inflater.inflate(R.layout.item_dynamic_input, container, false)
+ val til = v.findViewById(R.id.til)
+ val et = v.findViewById(R.id.et)
+
+ til.hint = if (wajib) "$label *" else label
+ et.inputType = InputType.TYPE_CLASS_TEXT
+
+ fieldTilByKode[kode] = til
+ fieldEtByKode[kode] = et
+
+ et.addTextChangedListener(SimpleTextWatcher { text ->
+ til.error = null
+ formValues[kode] = text
+ })
+
+ container.addView(v)
+ }
+ }
+ }
+ }
+
+ private fun refreshLampiranUI(kode: Int) {
+ val tvFiles = lampiranTvFilesByKode[kode] ?: return
+ val list = (formValues[kode] as? List).orEmpty()
+
+ tvFiles.text = if (list.isEmpty()) {
+ "Belum ada file"
+ } else {
+ list.joinToString("\n") { "• ${it.fileName}" }
+ }
+ }
+
+ private fun setupDateField(kode: Int, et: TextInputEditText, til: TextInputLayout) {
+ et.isFocusable = false
+ et.isFocusableInTouchMode = false
+ et.isClickable = true
+
+ val today = sdfDate.format(Calendar.getInstance().time)
+ if (et.text.isNullOrBlank()) et.setText(today)
+ formValues[kode] = et.text?.toString().orEmpty()
+
+ fun openPicker() {
+ val cal = Calendar.getInstance()
+
+ val currentText = et.text?.toString().orEmpty().trim()
+ if (currentText.isNotEmpty()) {
+ runCatching {
+ sdfDate.isLenient = false
+ cal.time = sdfDate.parse(currentText)!!
+ }
+ }
+
+ DatePickerDialog(
+ this,
+ { _, y, m, d ->
+ val picked = String.format(Locale.getDefault(), "%04d-%02d-%02d", y, m + 1, d)
+ til.error = null
+ et.setText(picked)
+ formValues[kode] = picked
+ },
+ cal.get(Calendar.YEAR),
+ cal.get(Calendar.MONTH),
+ cal.get(Calendar.DAY_OF_MONTH)
+ ).show()
+ }
+
+ et.setOnClickListener { openPicker() }
+ et.setOnFocusChangeListener { _, hasFocus -> if (hasFocus) openPicker() }
+ }
+
+ private fun setupTimeField(kode: Int, et: TextInputEditText, til: TextInputLayout) {
+ et.isFocusable = false
+ et.isFocusableInTouchMode = false
+ et.isClickable = true
+
+ val now = Calendar.getInstance()
+ val def = String.format(
+ Locale.getDefault(),
+ "%02d:%02d:%02d",
+ now.get(Calendar.HOUR_OF_DAY),
+ now.get(Calendar.MINUTE),
+ 0
+ )
+ if (et.text.isNullOrBlank()) et.setText(def)
+ formValues[kode] = et.text?.toString().orEmpty()
+
+ fun openPicker() {
+ val cal = Calendar.getInstance()
+ val current = et.text?.toString().orEmpty().trim()
+ if (current.isNotEmpty()) {
+ val parts = current.split(":")
+ if (parts.size >= 2) {
+ cal.set(Calendar.HOUR_OF_DAY, parts[0].toIntOrNull() ?: cal.get(Calendar.HOUR_OF_DAY))
+ cal.set(Calendar.MINUTE, parts[1].toIntOrNull() ?: cal.get(Calendar.MINUTE))
+ cal.set(Calendar.SECOND, parts.getOrNull(2)?.toIntOrNull() ?: 0)
+ }
+ }
+
+ TimePickerDialog(
+ this,
+ { _, h, m ->
+ val picked = String.format(Locale.getDefault(), "%02d:%02d:%02d", h, m, 0)
+ til.error = null
+ et.setText(picked)
+ formValues[kode] = picked
+ },
+ cal.get(Calendar.HOUR_OF_DAY),
+ cal.get(Calendar.MINUTE),
+ true
+ ).show()
+ }
+
+ et.setOnClickListener { openPicker() }
+ et.setOnFocusChangeListener { _, hasFocus -> if (hasFocus) openPicker() }
+ }
+
+ private fun setupDateTimeField(kode: Int, et: TextInputEditText, til: TextInputLayout) {
+ et.isFocusable = false
+ et.isFocusableInTouchMode = false
+ et.isClickable = true
+
+ val nowStr = sdfDateTime.format(Calendar.getInstance().time)
+ if (et.text.isNullOrBlank()) et.setText(nowStr)
+ formValues[kode] = et.text?.toString().orEmpty()
+
+ fun openDateThenTime() {
+ val cal = Calendar.getInstance()
+
+ val currentText = et.text?.toString().orEmpty().trim()
+ if (currentText.isNotEmpty()) {
+ runCatching {
+ sdfDateTime.isLenient = false
+ cal.time = sdfDateTime.parse(currentText)!!
+ }
+ }
+
+ DatePickerDialog(
+ this,
+ { _, y, m, d ->
+ TimePickerDialog(
+ this,
+ { _, hh, mm ->
+ cal.set(Calendar.YEAR, y)
+ cal.set(Calendar.MONTH, m)
+ cal.set(Calendar.DAY_OF_MONTH, d)
+ cal.set(Calendar.HOUR_OF_DAY, hh)
+ cal.set(Calendar.MINUTE, mm)
+ cal.set(Calendar.SECOND, 0)
+
+ val picked = sdfDateTime.format(cal.time)
+ til.error = null
+ et.setText(picked)
+ formValues[kode] = picked
+ },
+ cal.get(Calendar.HOUR_OF_DAY),
+ cal.get(Calendar.MINUTE),
+ true
+ ).show()
+ },
+ cal.get(Calendar.YEAR),
+ cal.get(Calendar.MONTH),
+ cal.get(Calendar.DAY_OF_MONTH)
+ ).show()
+ }
+
+ et.setOnClickListener { openDateThenTime() }
+ et.setOnFocusChangeListener { _, hasFocus -> if (hasFocus) openDateThenTime() }
+ }
+
+ // =========================
+ // Validasi Form Dinamis (PAKAI ID JENIS)
+ // =========================
+ private fun validateDynamicForm(details: List): Boolean {
+ val fields = details
+ .filter { it.is_aktif == 1 }
+ .sortedBy { it.urutan ?: Int.MAX_VALUE }
+
+ // clear error
+ fieldTilByKode.values.forEach { it.error = null }
+ listInputEtByKode.values.forEach { it.error = null }
+ lampiranTvErrorByKode.values.forEach {
+ it.text = ""
+ it.visibility = View.GONE
+ }
+
+ for (d in fields) {
+ if (d.is_wajib != 1) continue
+
+ val kode = d.kode ?: continue
+ val label = d.isian?.trim().orEmpty().ifBlank { "Field" }
+ val jenisId = d.id_jenis_isian ?: continue
+ val value = formValues[kode]
+
+ val valid = when (jenisId) {
+ 4 -> value is Int // angka (default 0 valid)
+ 5 -> value is Double // pecahan (default 0.00 valid)
+ 2 -> (value as? String)?.isNotBlank() == true // tanggal
+ 1 -> { // waktu yyyy-MM-dd HH:mm:ss
+ val s = (value as? String).orEmpty().trim()
+ s.isNotBlank() && runCatching {
+ sdfDateTime.isLenient = false
+ sdfDateTime.parse(s) != null
+ }.getOrDefault(false)
+ }
+ 3 -> { // jam HH:mm:ss
+ val s = (value as? String).orEmpty().trim()
+ s.isNotBlank() && Regex("""^\d{2}:\d{2}:\d{2}$""").matches(s)
+ }
+ 10 -> (value as? List<*>)?.isNotEmpty() == true // list
+ 11 -> (value as? List<*>)?.isNotEmpty() == true // lampiran
+ 0, 6 -> (value as? String)?.isNotBlank() == true // teks/string
+ else -> (value as? String)?.isNotBlank() == true
+ }
+
+ if (!valid) {
+ when (jenisId) {
+ 10 -> listInputEtByKode[kode]?.error = "Wajib diisi"
+ 11 -> {
+ lampiranTvErrorByKode[kode]?.apply {
+ text = "Wajib lampirkan minimal 1 file"
+ visibility = View.VISIBLE
+ }
+ }
+ else -> fieldTilByKode[kode]?.error = "Wajib diisi"
+ }
+ showSnack("Field wajib belum diisi: $label")
+ return false
+ }
+ }
+
+ return true
+ }
+
+ // =========================
+ // Build komunikasiDetail payload (sesuai ID)
+ // =========================
+ private fun buildKomunikasiDetailPayload(details: List): List